/* ===== TROPIFLY — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --blue:       #5b84b8;
  --blue-dark:  #3a5f8a;
  --blue-light: #8aabcf;
  --blue-pale:  #e8f0f8;
  --dark:       #0b1622;
  --dark2:      #12243a;
  --text:       #1a2a3a;
  --muted:      #6b8090;
  --white:      #ffffff;
  --bg:         #f4f7fb;
  --card:       #ffffff;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(58,95,138,.12);
  --shadow-lg:  0 12px 48px rgba(58,95,138,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== NAVBAR — BUG DROPDOWN CORRIGÉ ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91,132,184,.14);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 28px; height: 70px; gap: 8px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 16px; }
.nav-logo img { height: 56px; width: auto; }

/* Lien VIP navbar */
.nav-vip-link {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--blue-dark) !important;
  background: var(--blue-pale);
  border: 1.5px solid rgba(91,132,184,.3);
  transition: all .18s; white-space: nowrap;
}
.nav-vip-link:hover { background: var(--blue); color: white !important; border-color: var(--blue); }

/* Nav links */
.nav-links { display: flex; list-style: none; gap: 2px; flex: 1; }
.nav-links > li { position: relative; }

/* ---- DROPDOWN FIX : pont invisible entre trigger et menu ---- */
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a { background: var(--blue-pale); color: var(--blue-dark); }

.chevron { font-size: 9px; transition: transform .2s; display: inline-block; }
.nav-links > li:hover .chevron { transform: rotate(180deg); }

/* Pont invisible de 12px entre le lien et le dropdown */
.nav-links > li > a::after {
  content: ''; position: absolute;
  bottom: -12px; left: 0; right: 0; height: 12px;
}

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: white;
  border: 1px solid rgba(91,132,184,.18);
  border-radius: 16px;
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 9100;
}
/* Pont côté dropdown aussi */
.dropdown::before {
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-links > li:hover .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}

.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: var(--text);
  transition: background .15s;
}
.dropdown a:hover { background: var(--blue-pale); color: var(--blue-dark); }
.dropdown a .dico { font-size: 16px; flex-shrink: 0; }

/* CTA nav */
.btn-nav {
  background: var(--blue); color: white;
  padding: 9px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: background .2s, transform .2s;
  margin-left: auto; flex-shrink: 0; white-space: nowrap;
}
.btn-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Burger */
.burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 4px; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 10px 20px 16px;
  border-top: 1px solid rgba(91,132,184,.12);
  background: white;
}
.mobile-menu a { padding: 11px 0; font-size: 15px; border-bottom: 1px solid rgba(91,132,184,.1); display: flex; align-items: center; gap: 10px; }
.mobile-menu.open { display: flex; }

/* ===== BOUTONS ===== */
.btn-primary {
  display: inline-block; background: var(--blue); color: white;
  padding: 13px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(91,132,184,.35); }

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.4);
  color: white; padding: 13px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: background .2s, transform .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; background: none;
  border: 1.5px solid rgba(91,132,184,.35); color: var(--text);
  padding: 11px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #07111f 0%, #0f2a48 55%, #071a30 100%);
  padding-top: 70px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.hero-orb.o1 { width: 700px; height: 700px; top: -200px; right: -150px; background: rgba(91,132,184,.18); }
.hero-orb.o2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: rgba(91,132,184,.12); }
.hero-orb.o3 { width: 250px; height: 250px; top: 40%; left: 38%; background: rgba(138,171,207,.08); }

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,132,184,.2); border: 1px solid rgba(91,132,184,.35);
  color: var(--blue-light); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1.08; color: white; margin-bottom: 10px;
}
.hero-title em { color: var(--blue-light); font-style: italic; display: block; }
.hero-tagline {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 480px; margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-parrot {
  width: 100%; max-width: 520px;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(91,132,184,.25));
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* ===== SEARCH BAR ===== */
.search-section {
  padding: 0 28px;
  margin-top: -54px;
  position: relative; z-index: 100;
}
.search-card {
  max-width: 1100px; margin: 0 auto;
  background: white; border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: visible;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid rgba(91,132,184,.12);
  padding: 0 4px;
}
.stab {
  flex: 1; padding: 16px 10px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: all .18s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.stab.active { color: var(--blue); border-bottom-color: var(--blue); }
.stab:hover { color: var(--blue-dark); }

.search-form {
  display: flex; align-items: flex-end; gap: 10px;
  padding: 18px 20px; flex-wrap: wrap;
}
.search-form.hidden { display: none; }
.sf { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 110px; }
.sf label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.sf input, .sf select {
  border: 1.5px solid rgba(91,132,184,.22); border-radius: 10px;
  padding: 10px 13px; font-size: 14px; font-family: inherit; color: var(--text);
  background: var(--bg); outline: none; transition: border .18s;
}
.sf input:focus, .sf select:focus { border-color: var(--blue); background: white; }
.sf-swap { font-size: 18px; color: var(--blue); padding-bottom: 10px; flex-shrink: 0; user-select: none; }
.btn-search {
  background: var(--blue); color: white;
  padding: 11px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  white-space: nowrap; transition: all .2s; flex-shrink: 0;
  font-family: inherit;
}
.btn-search:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ===== SECTIONS ===== */
.section { padding: 90px 28px; }
.container { max-width: 1280px; margin: 0 auto; }
.sec-tag {
  display: inline-block; background: var(--blue-pale); color: var(--blue-dark);
  padding: 5px 15px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-tag.light { background: rgba(91,132,184,.2); color: var(--blue-light); }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 12px; color: var(--dark); }
.sec-head p { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.sec-head.light h2, .sec-head.light p { color: white; }

/* ===== DESTINATIONS ===== */
.dest-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 16px; }
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card.big { grid-row: 1; }
.dest-img { position: relative; }
.dest-img.h-big { height: 300px; }
.dest-img.h-sm  { height: 210px; }
.di-d1 { background: linear-gradient(160deg,#1a5c4a,#2d8a6e 60%,#1a4a5c); }
.di-d2 { background: linear-gradient(160deg,#2a4a6a,#3a6a8a); }
.di-d3 { background: linear-gradient(160deg,#6a4a1a,#c9a84c); }
.di-d4 { background: linear-gradient(160deg,#3a2a6a,#7a4a9a); }
.dest-img::after { content:'✈'; font-size:56px; opacity:.12; position:absolute; right:16px; bottom:14px; }
.dest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  padding: 32px 18px 18px; color: white;
}
.dest-overlay h3 { font-size: 19px; margin-bottom: 4px; }
.dest-overlay p { font-size: 12px; opacity: .75; margin-bottom: 8px; }
.dest-price {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  padding: 3px 11px; border-radius: 20px; font-size: 12px; font-weight: 600;
}

/* ===== DARK SECTION ===== */
.dark-section { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.svc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(91,132,184,.18);
  border-radius: var(--radius); padding: 28px 22px; transition: all .25s;
}
.svc-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.svc-icon { font-size: 34px; margin-bottom: 14px; }
.svc-card h3 { color: white; font-size: 16px; margin-bottom: 10px; }
.svc-card p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: 36px; margin-bottom: 18px; line-height: 1.2; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.about-stats { display: flex; gap: 36px; margin-top: 32px; }
.astat-n { font-family: 'Playfair Display',serif; font-size: 44px; color: var(--blue); font-weight: 700; display: block; }
.astat-l { font-size: 13px; color: var(--muted); }
.about-img-wrap { display: flex; justify-content: center; }
.about-img-circle {
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-pale), rgba(91,132,184,.08));
  border: 2px solid rgba(91,132,184,.18);
  display: flex; align-items: center; justify-content: center;
  animation: float 9s ease-in-out infinite;
}
.about-img-circle img { width: 180px; opacity: .92; }

/* ===== FLOTTE ===== */
.bg-soft { background: #edf1f7; }
.flotte-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.flotte-card {
  background: white; border-radius: var(--radius); padding: 30px 22px;
  border: 1.5px solid rgba(91,132,184,.14); transition: all .25s; text-align: center;
}
.flotte-card:hover, .flotte-card.featured { border-color: var(--blue); box-shadow: 0 8px 36px rgba(91,132,184,.18); }
.flotte-card.featured { background: var(--blue); color: white; }
.flotte-plane { font-size: 44px; margin-bottom: 14px; }
.flotte-card h3 { font-size: 21px; margin-bottom: 8px; }
.flotte-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.flotte-card.featured p { color: rgba(255,255,255,.72); }
.ftags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.ftags span { padding: 4px 12px; border-radius: 20px; font-size: 11px; background: var(--blue-pale); color: var(--blue-dark); }
.flotte-card.featured .ftags span { background: rgba(255,255,255,.2); color: white; }

/* ===== PLATINIUM ===== */
.plat-section {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 80px 28px;
}
.plat-section .plat-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25;
}
.plat-content { position: relative; z-index: 2; text-align: center; }
.plat-content h2 { color: white; font-size: clamp(28px,4vw,52px); margin-bottom: 14px; }
.plat-content p { color: rgba(255,255,255,.65); font-size: 16px; max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-grid h2 { font-size: 34px; margin-bottom: 26px; }
.cinfo-list { display: flex; flex-direction: column; gap: 20px; }
.cinfo { display: flex; gap: 14px; align-items: flex-start; }
.cinfo .ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cinfo strong { display: block; font-size: 14px; margin-bottom: 3px; }
.cinfo span { font-size: 14px; color: var(--muted); line-height: 1.5; }
.cform-wrap h3 { font-size: 20px; margin-bottom: 18px; }
.cform { display: flex; flex-direction: column; gap: 12px; }
.cform input, .cform textarea {
  border: 1.5px solid rgba(91,132,184,.22); border-radius: 12px;
  padding: 12px 16px; font-size: 14px; font-family: inherit; color: var(--text);
  background: var(--bg); outline: none; transition: border .18s;
}
.cform input:focus, .cform textarea:focus { border-color: var(--blue); background: white; }
.cform textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 32px 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 22px; filter: brightness(0) invert(1); opacity: .7; }
.footer-links { display: flex; gap: 20px; flex: 1; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 14px; transition: color .18s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-copy { font-size: 12px; margin-left: auto; }

/* ===== PAGE INTÉRIEURE ===== */
.page-hero {
  background: linear-gradient(145deg, #07111f 0%, #0f2a48 100%);
  padding: 130px 28px 60px; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(91,132,184,.15), transparent 60%);
  pointer-events:none;
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 54px); margin-bottom: 10px; position:relative; }
.page-hero p { font-size: 16px; opacity: .65; position:relative; }

.page-wrap { max-width: 920px; margin: 0 auto; padding: 50px 28px 80px; }

/* FORM CARDS */
.fcard { background: white; border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; margin-bottom: 22px; }
.fcard-head {
  background: var(--blue); color: white; padding: 18px 26px;
  display: flex; align-items: center; gap: 12px;
}
.fcard-head.green { background: linear-gradient(135deg,#0f3020,#1d6040); }
.fcard-head h2 { font-size: 17px; font-family:'Outfit',sans-serif; font-weight:600; }
.fcard-body { padding: 26px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.frow.one { grid-template-columns: 1fr; }
.frow.three { grid-template-columns: 1fr 1fr 1fr; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.fg input, .fg select, .fg textarea {
  border: 1.5px solid rgba(91,132,184,.22); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--text);
  background: var(--bg); outline: none; transition: all .18s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: white; }
.fcard-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 18px 26px; border-top: 1px solid rgba(91,132,184,.1); }

/* Cargo picker */
.cargo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.cargo-opt {
  border: 1.5px solid rgba(91,132,184,.2); border-radius: 12px;
  padding: 13px 6px; text-align: center; cursor: pointer; transition: all .18s; background: var(--bg);
}
.cargo-opt:hover { border-color: var(--blue); }
.cargo-opt.sel { border-color: var(--blue); background: var(--blue-pale); }
.cargo-opt .ico { font-size: 22px; margin-bottom: 5px; }
.cargo-opt .lbl { font-size: 11px; color: var(--muted); font-weight: 500; }

/* Steps */
.steps { display: flex; align-items: center; margin-bottom: 30px; }
.step-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--muted); }
.step-item span.snum { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(91,132,184,.3); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.step-item.active { color: var(--blue); }
.step-item.active span.snum { border-color: var(--blue); background: var(--blue); color: white; }
.step-item.done span.snum { border-color: var(--blue); background: var(--blue-pale); color: var(--blue); }
.step-line { flex: 1; height: 2px; background: rgba(91,132,184,.18); margin: 0 12px; }

/* Tarif box */
.tarif-box {
  background: var(--blue-pale); border-radius: 12px;
  padding: 16px 20px; margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.tarif-box.green { background: #e3f2e9; }
.tarif-price { font-family: 'Playfair Display',serif; font-size: 34px; font-weight: 700; color: var(--blue-dark); }
.tarif-box.green .tarif-price { color: #1d6040; }
.tarif-perks { display: flex; flex-direction: column; gap: 4px; }
.tarif-perks p { font-size: 13px; color: var(--blue-dark); }
.tarif-box.green .tarif-perks p { color: #1d6040; }

/* Recap */
.recap { background: var(--bg); border: 1px solid rgba(91,132,184,.18); border-radius: 12px; padding: 16px 18px; margin-top: 8px; font-size: 14px; line-height: 1.85; }

/* Warn */
.warn-box {
  background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px; padding: 11px 15px; font-size: 13px; color: #b91c1c;
  display: none; align-items: center; gap: 8px; margin-top: 10px;
}
.warn-box.show { display: flex; }

/* TICKET */
.ticket {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); display: none;
}
.ticket.show { display: block; }
.ticket-top {
  background: linear-gradient(135deg, #07111f, #0f2a48);
  color: white; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
}
.ticket-top .tlogo img { height: 22px; filter: brightness(0) invert(1); opacity:.85; }
.ticket-ref { font-family: monospace; font-size: 20px; font-weight: 700; letter-spacing: .08em; color: var(--blue-light); }
.ticket-route {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 22px 26px;
  border-bottom: 1px dashed rgba(91,132,184,.25);
}
.tcity strong { display: block; font-family:'Playfair Display',serif; font-size: 34px; color: var(--blue-dark); }
.tcity span { font-size: 12px; color: var(--muted); }
.tcity { text-align: center; }
.tplane { font-size: 32px; color: var(--blue); }
.tfields { display: grid; grid-template-columns: repeat(4,1fr); padding: 18px 26px; gap: 16px; }
.tf { display: flex; flex-direction: column; gap: 3px; }
.tfl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.tfv { font-size: 14px; font-weight: 600; }
.ticket-foot {
  border-top: 1px dashed rgba(91,132,184,.25); padding: 14px 26px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
}
.barcode { display: flex; gap: 2px; align-items: flex-end; height: 30px; }
.barcode div { background: var(--dark); width: 2px; border-radius: 1px; }

/* MANIFESTE */
.manifeste { background: linear-gradient(160deg,#08130e,#0d2a1a); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); color: white; }
.man-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; border-bottom: 1px solid rgba(255,255,255,.08); }
.man-head .mlogo img { height: 20px; filter: brightness(0) invert(1); opacity:.8; }
.man-ref { font-family: monospace; font-size: 22px; font-weight: 700; color: #7ec8a0; letter-spacing:.08em; }
.man-route { display: flex; align-items: center; gap: 12px; padding: 18px 26px; background: rgba(255,255,255,.04); flex-wrap: wrap; }
.mrcity .mcode { font-family:'Playfair Display',serif; font-size:32px; font-weight:700; color:#7ec8a0; }
.mrcity .mname { font-size:12px; opacity:.55; }
.mr-arrow { font-size:20px; opacity:.4; }
.mr-sep { width:1px; height:36px; background:rgba(255,255,255,.12); margin:0 6px; }
.mrinfo .mrl { font-size:10px; opacity:.45; letter-spacing:.08em; text-transform:uppercase; margin-bottom:4px; }
.mrinfo .mrv { font-size:13px; font-weight:500; }
.man-body { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; padding: 22px 26px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mbs .mbt { font-size:10px; opacity:.45; letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px; }
.mbs .mbv { font-size:15px; font-weight:500; margin-bottom:4px; }
.mbs .mbc { font-size:12px; opacity:.55; line-height:1.6; }
.man-foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 26px; background: rgba(0,0,0,.2); }

/* SUIVI TABLE */
.board-bar {
  background: var(--dark); border-radius: 14px;
  padding: 14px 22px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.board-info { color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .04em; }
.board-clock { color: var(--blue-light); font-family: monospace; font-size: 20px; font-weight: 700; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.b-ontime  { background:rgba(34,197,94,.1);  color:#15803d; }
.b-delay   { background:rgba(245,158,11,.1); color:#b45309; }
.b-cancel  { background:rgba(239,68,68,.1);  color:#b91c1c; }
.b-board   { background:rgba(91,132,184,.15);color:var(--blue-dark); }
.b-pending { background:rgba(139,92,246,.1); color:#6d28d9; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.fbtn {
  padding: 7px 18px; border-radius: 50px; border: 1.5px solid rgba(91,132,184,.22);
  background: white; font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: inherit; color: var(--muted); transition: all .18s;
}
.fbtn.active, .fbtn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.stable-wrap { overflow-x: auto; border-radius: 16px; box-shadow: var(--shadow); }
.stable { width: 100%; border-collapse: collapse; background: white; }
.stable th { background: var(--dark); color: rgba(255,255,255,.65); padding: 13px 16px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-family: 'Outfit',sans-serif; }
.stable td { padding: 13px 16px; font-size: 13px; border-bottom: 1px solid rgba(91,132,184,.09); }
.stable tr:last-child td { border-bottom: none; }
.stable tr:hover td { background: var(--blue-pale); }
.typebadge { display:inline-block; padding:3px 10px; border-radius:6px; font-size:11px; font-weight:600; }
.tv { background:rgba(91,132,184,.1);  color:var(--blue-dark); }
.tf2{ background:rgba(26,92,58,.1);    color:#155534; }

/* ADMIN */
.admin-bar { background:var(--dark); height:54px; display:flex; align-items:center; padding:0 24px; justify-content:space-between; position:sticky; top:0; z-index:9000; }
.admin-bar .abrand { display:flex; align-items:center; gap:10px; }
.admin-bar .abrand img { height:18px; filter:brightness(0) invert(1); opacity:.65; }
.admin-bar .abrand span { color:rgba(255,255,255,.4); font-size:12px; }
.admin-bar a { color:var(--blue-light); font-size:13px; }
.admin-wrap { max-width:1280px; margin:0 auto; padding:24px 28px 60px; }
.astats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:22px; }
.astat { background:white; border-radius:14px; padding:18px 20px; box-shadow:var(--shadow); }
.astat .asn { font-family:'Playfair Display',serif; font-size:34px; color:var(--blue); font-weight:700; }
.astat .asl { font-size:12px; color:var(--muted); margin-top:4px; }
.atabs { display:flex; gap:6px; margin-bottom:16px; }
.atab { padding:8px 20px; border-radius:50px; border:1.5px solid rgba(91,132,184,.22); background:white; font-size:13px; font-weight:500; cursor:pointer; font-family:inherit; color:var(--muted); transition:all .18s; }
.atab.active { background:var(--blue); color:white; border-color:var(--blue); }
.atable-wrap { background:white; border-radius:16px; overflow:hidden; box-shadow:var(--shadow); }
.atable { width:100%; border-collapse:collapse; }
.atable th { background:var(--dark); color:rgba(255,255,255,.65); padding:13px 15px; text-align:left; font-size:11px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; font-family:'Outfit',sans-serif; }
.atable td { padding:12px 15px; font-size:13px; border-bottom:1px solid rgba(91,132,184,.09); vertical-align:middle; }
.atable tr:last-child td { border-bottom:none; }
.actbtn { padding:5px 11px; border-radius:7px; border:none; cursor:pointer; font-size:11px; font-weight:600; font-family:inherit; transition:all .18s; }
.ab-green { background:rgba(34,197,94,.1); color:#15803d; }
.ab-amber { background:rgba(245,158,11,.1); color:#b45309; }
.ab-red   { background:rgba(239,68,68,.1);  color:#b91c1c; }
.ab-blue  { background:rgba(91,132,184,.1); color:var(--blue-dark); }
.new-form { background:white; border-radius:16px; padding:22px 24px; box-shadow:var(--shadow); margin-bottom:20px; }
.new-form h3 { font-size:15px; margin-bottom:16px; font-family:'Outfit',sans-serif; font-weight:600; }

/* ===== CARTES AVIONS ===== */
.flotte-grid-new {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ac-card {
  background: white; border-radius: 20px;
  border: 1.5px solid rgba(91,132,184,.14);
  overflow: hidden; transition: all .3s;
  box-shadow: var(--shadow);
}
.ac-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(91,132,184,.3); }
.ac-card.featured-ac { border-color: var(--blue); box-shadow: 0 8px 36px rgba(91,132,184,.22); }

/* Visual header */
.ac-visual {
  position: relative; padding: 28px 24px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-height: 140px; justify-content: center;
}
.ac-blue   { background: linear-gradient(135deg, #0f2a48, #1a4a7a); }
.ac-gold   { background: linear-gradient(135deg, #1a2a0a, #2d5218); }
.ac-teal   { background: linear-gradient(135deg, #062030, #0e3d5a); }
.ac-green  { background: linear-gradient(135deg, #0a200e, #133d1e); }

.ac-silhouette { width: 100%; max-width: 220px; opacity: .9; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.ac-reg {
  font-family: monospace; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .12em;
}
.ac-badge-new {
  position: absolute; top: 14px; right: 14px;
  background: var(--blue); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 20px;
}
.ac-badge-cargo {
  position: absolute; top: 14px; right: 14px;
  background: #1d6040; color: white;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 20px;
}

/* Body */
.ac-body { padding: 20px 22px 22px; }
.ac-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.ac-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); }
.ac-code { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: monospace; }
.ac-type-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.ac-type-badge.pax  { background: rgba(91,132,184,.12); color: var(--blue-dark); }
.ac-type-badge.fret { background: rgba(26,92,58,.1);    color: #155534; }

/* Specs bar */
.ac-specs {
  display: flex; gap: 0; margin-bottom: 14px;
  background: var(--bg); border-radius: 12px; overflow: hidden;
}
.ac-spec {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 10px 6px; text-align: center;
  border-right: 1px solid rgba(91,132,184,.12);
}
.ac-spec:last-child { border-right: none; }
.ac-spec-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--blue); }
.ac-spec-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }
.ac-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

/* RESPONSIVE */
@media(max-width:960px) {
  .nav-links, .btn-nav { display:none; }
  .burger { display:block; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .dest-grid { grid-template-columns:1fr 1fr; }
  .dest-card.big { grid-column:span 2; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns:1fr; gap:40px; }
  .flotte-grid { grid-template-columns:1fr; }
  .flotte-grid-new { grid-template-columns:1fr; }
  .astats { grid-template-columns:1fr 1fr; }
  .tfields, .man-body { grid-template-columns:1fr 1fr; }
  .frow.three { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px) {
  .dest-grid { grid-template-columns:1fr; }
  .dest-card.big { grid-column:1; }
  .services-grid { grid-template-columns:1fr; }
  .cargo-grid { grid-template-columns:1fr 1fr; }
  .frow { grid-template-columns:1fr; }
}
@media print {
  .navbar,.footer,.steps,div[class*="btn-row"],div[style*="flex"]:last-child { display:none!important; }
}

/* ===== CARTES AVION DÉGRADÉ ===== */
.ac-grad-label {
  text-align: center; padding: 20px 10px 10px;
}
.ac-model-big {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 700;
  color: rgba(255,255,255,.18);
  letter-spacing: -.02em; line-height: 1;
  user-select: none;
}
.ac-model-sub {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: 4px;
}
.ac-reg-badge {
  text-align: center; padding-bottom: 16px;
  font-family: monospace; font-size: 11px;
  color: rgba(255,255,255,.35); letter-spacing: .1em;
}
.ac-visual {
  min-height: 130px; display: flex;
  flex-direction: column; justify-content: space-between;
  position: relative;
}

/* ===== VIP PREVIEW SECTION ===== */
.vip-preview-section { background: var(--dark); padding: 90px 28px; }
.vip-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.vip-preview-text .sec-tag { background:rgba(91,132,184,.2); color:var(--blue-light); }
.vip-preview-text h2 { color: white; font-size: clamp(26px,3.5vw,40px); margin-bottom: 14px; }
.vip-preview-text p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.vip-preview-list { display: flex; flex-direction: column; gap: 16px; }
.vpl-item { display: flex; align-items: flex-start; gap: 14px; }
.vpl-ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.vpl-item strong { display: block; color: white; font-size: 14px; margin-bottom: 3px; }
.vpl-item p { color: rgba(255,255,255,.5); font-size: 13px; margin: 0; }
.vip-preview-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.vpc {
  border-radius: 16px; padding: 20px 22px;
  border: 1px solid rgba(91,132,184,.2);
  transition: transform .25s, border-color .25s;
}
.vpc:hover { transform: translateX(6px); border-color: rgba(91,132,184,.5); }
.vpc-price {
  margin-top: 12px; font-size: 13px;
  color: rgba(255,255,255,.5);
}
.vpc-price strong { color: var(--blue-light); }

/* ===== PAGE VIP ===== */
.vip-hero {
  background: linear-gradient(145deg, #04080f 0%, #0a1e36 55%, #050d1a 100%);
  padding: 130px 28px 80px; position: relative; overflow: hidden;
}
.vip-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(91,132,184,.12), transparent 60%);
}
.vip-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.vip-hero h1 { font-size: clamp(38px,6vw,80px); color: white; line-height: 1.05; margin-bottom: 16px; }
.vip-hero h1 em { color: var(--blue-light); font-style: italic; }
.vip-hero p { font-size: 17px; color: rgba(255,255,255,.6); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }
.vip-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,132,184,.15); border: 1px solid rgba(91,132,184,.3);
  color: var(--blue-light); padding: 6px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}

/* Hélicoptère cards */
.helico-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.helico-card {
  background: white; border-radius: 20px;
  border: 1.5px solid rgba(91,132,184,.14);
  overflow: hidden; transition: all .3s; box-shadow: var(--shadow);
}
.helico-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.helico-card.featured { border-color: var(--blue); }
.helico-top {
  padding: 28px 22px 20px; text-align: center; position: relative;
}
.helico-icon { font-size: 52px; margin-bottom: 12px; }
.helico-name { font-family: 'Playfair Display',serif; font-size: 24px; font-weight: 700; color: white; }
.helico-sub { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .04em; }
.helico-body { padding: 20px 22px 22px; }
.helico-specs { display: flex; gap: 0; background: var(--bg); border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.hs { flex: 1; text-align: center; padding: 10px 4px; border-right: 1px solid rgba(91,132,184,.12); }
.hs:last-child { border-right: none; }
.hsv { font-size: 17px; font-weight: 600; color: var(--blue); display: block; }
.hsl { font-size: 10px; color: var(--muted); display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }
.helico-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.helico-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-top: 1px solid rgba(91,132,184,.12);
}
.helico-price { font-family: 'Playfair Display',serif; font-size: 22px; font-weight: 700; color: var(--blue-dark); }
.helico-price span { font-size: 12px; color: var(--muted); font-family: 'Outfit',sans-serif; font-weight: 400; }

/* Voiture VIP */
.car-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.car-card {
  background: white; border-radius: 18px;
  border: 1.5px solid rgba(91,132,184,.14);
  padding: 24px 20px; transition: all .3s; box-shadow: var(--shadow);
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.car-icon { font-size: 40px; margin-bottom: 12px; }
.car-name { font-family: 'Playfair Display',serif; font-size: 20px; margin-bottom: 6px; }
.car-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.car-price { font-family: 'Playfair Display',serif; font-size: 20px; color: var(--blue); font-weight: 700; }
.car-price span { font-size: 12px; color: var(--muted); font-family: 'Outfit',sans-serif; font-weight: 400; }

/* Conciergerie */
.conc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.conc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(91,132,184,.2);
  border-radius: 16px; padding: 24px 22px; transition: all .25s;
}
.conc-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.conc-icon { font-size: 30px; margin-bottom: 12px; }
.conc-card h3 { color: white; font-size: 17px; margin-bottom: 8px; }
.conc-card p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; }

/* VIP form */
.vip-form-card {
  background: white; border-radius: 20px; box-shadow: var(--shadow-lg);
  overflow: hidden; max-width: 700px; margin: 0 auto;
}
.vip-form-head {
  background: linear-gradient(135deg,#07111f,#0f2a48);
  color: white; padding: 22px 28px;
  display: flex; align-items: center; gap: 12px;
}
.vip-form-head h2 { font-size: 18px; font-family:'Outfit',sans-serif; font-weight: 600; }
.vip-form-body { padding: 28px; }
.vip-form-foot { padding: 18px 28px; border-top: 1px solid rgba(91,132,184,.1); display: flex; justify-content: flex-end; }

@media(max-width:960px) {
  .vip-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .helico-grid, .car-grid { grid-template-columns: 1fr; }
  .conc-grid { grid-template-columns: 1fr; }
}

/* ===== VOITURES VIP NOUVELLE GRILLE ===== */
.car-grid-new {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.car-card-new {
  background: white; border-radius: 20px;
  border: 1.5px solid rgba(91,132,184,.14);
  overflow: hidden; transition: all .3s; box-shadow: var(--shadow);
}
.car-card-new:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.car-top-bar {
  padding: 18px 20px 14px;
  display: flex; flex-direction: column; gap: 10px; min-height: 110px;
  justify-content: space-between;
}
.car-type-pill {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25); color: white;
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; align-self: flex-start;
}
.car-visual-label { display: flex; justify-content: center; }
.car-body-new { padding: 18px 20px 20px; }

@media(max-width:900px) {
  .car-grid-new { grid-template-columns: 1fr; }
}

/* ===== UBER CAR SELECTOR ===== */
.uber-selector {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 24px; margin-bottom: 32px; align-items: start;
}
.uber-active-card {
  background: white; border-radius: 20px;
  border: 1.5px solid rgba(91,132,184,.18);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.uber-car-display { overflow: hidden; }
.uber-active-info { padding: 20px 22px 22px; }
.uber-active-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px; margin-bottom: 14px;
}
.uber-active-name { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; }
.uber-active-sub  { font-size:13px; color:var(--muted); margin-top:3px; }
.uber-active-price {
  font-family:'Playfair Display',serif; font-size:26px;
  font-weight:700; color:var(--blue-dark); flex-shrink:0;
}
.uber-active-specs {
  display:flex; gap:0; background:var(--bg);
  border-radius:10px; overflow:hidden; margin-bottom:12px;
}
.uber-spec { flex:1; text-align:center; padding:9px 4px; border-right:1px solid rgba(91,132,184,.1); }
.uber-spec:last-child { border-right:none; }
.uber-spec-val { font-size:16px; font-weight:600; color:var(--blue); }
.uber-spec-lbl { font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; margin-top:2px; }
.uber-active-feats { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:16px; }
.uber-feat {
  font-size:11px; padding:4px 11px; border-radius:20px;
  background:var(--blue-pale); color:var(--blue-dark);
  border:0.5px solid rgba(91,132,184,.2);
}

/* Destination display */
.uber-active-dest {
  background:var(--bg); border-radius:12px; padding:12px 14px;
  border:1px solid rgba(91,132,184,.12);
}
.uber-dest-row { display:flex; align-items:center; gap:10px; padding:3px 0; }
.uber-dest-dot {
  width:10px; height:10px; border-radius:50%; flex-shrink:0;
}
.uber-dest-dot.from { background:var(--blue); }
.uber-dest-dot.to   { background:var(--dark); }
.uber-dest-text { font-size:13px; color:var(--text); font-weight:500; }
.uber-dest-line {
  width:1px; height:14px; background:rgba(91,132,184,.25);
  margin-left:4px; margin-top:1px; margin-bottom:1px;
}

/* OPTIONS COLUMN */
.uber-options-col {
  display:flex; flex-direction:column; gap:0;
  background:white; border-radius:20px;
  border:1.5px solid rgba(91,132,184,.15);
  box-shadow:var(--shadow); overflow:hidden;
}
.uber-options-label {
  padding:14px 16px 10px; font-size:12px; font-weight:600;
  color:var(--muted); text-transform:uppercase; letter-spacing:.06em;
  border-bottom:1px solid rgba(91,132,184,.1);
}
.uber-options-list { display:flex; flex-direction:column; }
.uber-opt {
  display:flex; align-items:center; gap:12px; padding:12px 16px;
  cursor:pointer; transition:background .15s;
  border-bottom:1px solid rgba(91,132,184,.08);
}
.uber-opt:last-child { border-bottom:none; }
.uber-opt:hover { background:var(--blue-pale); }
.uber-opt-sel { background:var(--blue-pale); }
.uber-opt-img {
  width:72px; height:44px; border-radius:8px;
  overflow:hidden; flex-shrink:0;
  display:flex; align-items:flex-end; justify-content:center;
}
.uber-opt-info { flex:1; min-width:0; }
.uber-opt-name {
  font-size:13px; font-weight:600; color:var(--text);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.uber-opt-sub  { font-size:12px; color:var(--muted); margin-top:2px; }
.uber-opt-check {
  width:22px; height:22px; border-radius:50%;
  background:var(--blue); color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; flex-shrink:0;
}

/* BOOKING FORM */
.uber-book-form {
  background:white; border-radius:20px;
  border:1.5px solid rgba(91,132,184,.15);
  overflow:hidden; box-shadow:var(--shadow);
}
.ubf-head {
  background:linear-gradient(135deg,#07111f,#0f2a48);
  color:white; padding:18px 24px;
  display:flex; align-items:center; gap:14px;
}
.ubf-title { font-size:16px; font-weight:600; color:white; }
.ubf-price-line { font-size:13px; color:rgba(255,255,255,.55); margin-top:3px; }
.ubf-body { padding:22px 24px; }
.ubf-foot {
  padding:16px 24px; border-top:1px solid rgba(91,132,184,.1);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.ubf-total { font-size:15px; color:var(--muted); }
.ubf-total strong { color:var(--blue-dark); font-size:20px; font-family:'Playfair Display',serif; }

@media(max-width:900px) {
  .uber-selector { grid-template-columns:1fr; }
}

/* ===== MODE CLAIR / SOMBRE ===== */
:root {
  --mode-bg: #f4f7fb;
  --mode-card: #ffffff;
  --mode-text: #1a2a3a;
  --mode-muted: #6b8090;
  --mode-border: rgba(91,132,184,.18);
  --mode-nav-bg: rgba(255,255,255,.95);
  --mode-nav-border: rgba(91,132,184,.14);
  --mode-hero: linear-gradient(145deg,#07111f,#0d2244,#060e1c);
}

[data-theme="light"] {
  --mode-bg: #f0f4f8;
  --mode-card: #ffffff;
  --mode-text: #1a2a3a;
  --mode-muted: #5a7080;
  --mode-border: rgba(91,132,184,.2);
  --mode-nav-bg: rgba(255,255,255,.97);
  --mode-nav-border: rgba(91,132,184,.15);
}

[data-theme="dark"] {
  --mode-bg: #0b1420;
  --mode-card: #0f1e30;
  --mode-text: #e8f0f8;
  --mode-muted: #8aabcf;
  --mode-border: rgba(91,132,184,.2);
  --mode-nav-bg: rgba(11,20,32,.96);
  --mode-nav-border: rgba(91,132,184,.15);
}

/* Apply theme to body */
body { background: var(--mode-bg, var(--bg)); color: var(--mode-text, var(--text)); }

[data-theme="dark"] body { background: #0b1420; }
[data-theme="dark"] .navbar { background: rgba(11,20,32,.96) !important; border-bottom-color: rgba(91,132,184,.15) !important; }
[data-theme="dark"] .nav-links > li > a { color: rgba(255,255,255,.8); }
[data-theme="dark"] .dropdown { background: #0f1e30; border-color: rgba(91,132,184,.2); }
[data-theme="dark"] .dropdown a { color: rgba(255,255,255,.7); }
[data-theme="dark"] .dropdown a:hover { background: rgba(91,132,184,.12); }
[data-theme="dark"] .search-card { background: #0f1e30; border: 1px solid rgba(91,132,184,.15); }
[data-theme="dark"] .sf input, [data-theme="dark"] .sf select { background: #0b1420; border-color: rgba(91,132,184,.25); color: rgba(255,255,255,.8); }
[data-theme="dark"] .stab { color: rgba(255,255,255,.4); }
[data-theme="dark"] .stab.active { color: var(--blue-light); }
[data-theme="dark"] .section { background: #0b1420; }
[data-theme="dark"] .bg-soft { background: #0d1e30; }
[data-theme="dark"] .sec-head h2 { color: #e8f0f8; }
[data-theme="dark"] .sec-head p { color: rgba(255,255,255,.5); }
[data-theme="dark"] .sec-tag { background: rgba(91,132,184,.15); color: var(--blue-light); }
[data-theme="dark"] .ac-card { background: #0f1e30; border-color: rgba(91,132,184,.2); }
[data-theme="dark"] .ac-name { color: #e8f0f8; }
[data-theme="dark"] .ac-desc { color: rgba(255,255,255,.5); }
[data-theme="dark"] .ac-specs { background: rgba(255,255,255,.04); }
[data-theme="dark"] .ftags span { background: rgba(91,132,184,.15); color: var(--blue-light); }
[data-theme="dark"] .about-text h2 { color: #e8f0f8; }
[data-theme="dark"] .about-text p { color: rgba(255,255,255,.5); }
[data-theme="dark"] .cform input, [data-theme="dark"] .cform textarea { background: #0b1420; border-color: rgba(91,132,184,.25); color: rgba(255,255,255,.8); }
[data-theme="dark"] .cinfo strong { color: #e8f0f8; }
[data-theme="dark"] .cinfo span { color: rgba(255,255,255,.45); }
[data-theme="dark"] .contact-grid h2 { color: #e8f0f8; }
[data-theme="dark"] .cform-wrap h3 { color: #e8f0f8; }
[data-theme="dark"] .fcard { background: #0f1e30; }
[data-theme="dark"] .fg input, [data-theme="dark"] .fg select, [data-theme="dark"] .fg textarea { background: #0b1420; border-color: rgba(91,132,184,.25); color: rgba(255,255,255,.8); }
[data-theme="dark"] .fg label { color: rgba(255,255,255,.45); }
[data-theme="dark"] .tarif-box { background: rgba(91,132,184,.1); }
[data-theme="dark"] .recap { background: rgba(255,255,255,.04); border-color: rgba(91,132,184,.15); color: rgba(255,255,255,.7); }

/* TOGGLE BUTTON */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(91,132,184,.1); border: 1px solid rgba(91,132,184,.25);
  cursor: pointer; font-size: 16px; transition: all .2s;
  flex-shrink: 0; margin-left: 8px;
}
.theme-toggle:hover { background: rgba(91,132,184,.2); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ===== PAGES DESTINATIONS ===== */
.dest-page-hero {
  min-height: 55vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden; padding-top: 70px;
}
.dest-page-hero .dph-bg {
  position: absolute; inset: 0;
}
.dest-page-hero .dph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.dest-page-hero .dph-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 0 48px 56px;
}
.dph-tag {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25); color: white;
  padding: 5px 16px; border-radius: 50px;
  font-size: 12px; letter-spacing: .08em; margin-bottom: 14px;
}
.dph-title { font-size: clamp(40px,6vw,72px); color: white; font-weight: 700; margin-bottom: 10px; }
.dph-sub   { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.dph-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.dph-pill  {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: white; padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
}

.dest-info-grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 40px; align-items: start;
  max-width: 1280px; margin: 0 auto; padding: 60px 48px;
}
.dest-desc h2 { font-size: 28px; margin-bottom: 16px; }
.dest-desc p  { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.dest-desc h3 { font-size: 18px; margin: 24px 0 10px; }
.dest-card-book {
  background: white; border-radius: 20px;
  box-shadow: 0 8px 32px rgba(91,132,184,.15);
  overflow: hidden; position: sticky; top: 90px;
}
.dcb-head {
  background: linear-gradient(135deg,#07111f,#0f2a48);
  color: white; padding: 20px 22px;
}
.dcb-price { font-family:'Playfair Display',serif; font-size: 28px; font-weight: 700; }
.dcb-sub   { font-size: 13px; opacity: .6; margin-top: 4px; }
.dcb-body  { padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.dcb-info  { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(91,132,184,.1); font-size: 14px; }
.dcb-info:last-child { border: none; }
.dcb-info span:first-child { color: var(--muted); }
.dcb-info strong { font-weight: 600; }

[data-theme="dark"] .dest-card-book { background: #0f1e30; }
[data-theme="dark"] .dcb-info strong { color: #e8f0f8; }
[data-theme="dark"] .dest-desc h2, [data-theme="dark"] .dest-desc h3 { color: #e8f0f8; }
@media(max-width:900px) {
  .dest-info-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .dest-card-book { position: static; }
  .dph-content { padding: 0 24px 40px; }
}

/* ===== INFO PAGES — STYLE AIR FRANCE ===== */
.info-hero {
  background: linear-gradient(145deg,#07111f,#0d2244,#060e1c);
  padding: 130px 48px 60px; position: relative; overflow: hidden;
}
.info-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 60% 50%, rgba(91,132,184,.1), transparent 60%);
}
.info-hero-inner { max-width:1280px; margin:0 auto; position:relative; z-index:2; }
.info-hero h1 { font-size:clamp(32px,5vw,58px); color:white; margin-bottom:12px; }
.info-hero p  { font-size:16px; color:rgba(255,255,255,.55); max-width:540px; line-height:1.7; }

/* BREADCRUMB */
.breadcrumb {
  max-width:1280px; margin:0 auto;
  padding:14px 48px; display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--muted); flex-wrap:wrap;
}
.breadcrumb a { color:var(--blue); }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { color:var(--muted); }

/* HUB PAGE — grandes cartes catégories */
.info-hub { max-width:1280px; margin:0 auto; padding:40px 48px 80px; }
.info-hub-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px;
}
.info-hub-card {
  background:white; border-radius:16px; overflow:hidden;
  border:1.5px solid rgba(91,132,184,.1); box-shadow:var(--shadow);
  transition:all .25s; text-decoration:none; color:inherit; display:block;
}
.info-hub-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(91,132,184,.3); }
.ihc-img {
  height:180px; position:relative; display:flex; align-items:center; justify-content:center;
}
.ihc-icon { font-size:64px; opacity:.8; }
.ihc-body { padding:20px 22px 22px; }
.ihc-title { font-family:'Playfair Display',serif; font-size:20px; margin-bottom:8px; }
.ihc-desc  { font-size:14px; color:var(--muted); line-height:1.6; }
.ihc-link  { font-size:13px; color:var(--blue); font-weight:600; margin-top:12px; display:block; }

[data-theme="dark"] .info-hub-card { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .ihc-title { color:#e8f0f8; }

/* AVIONS PAGE */
.avion-hero-visual {
  min-height:300px; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.avion-hero-name {
  font-family:'Playfair Display',serif;
  font-size:clamp(80px,14vw,160px);
  color:rgba(255,255,255,.06); font-weight:700;
  position:absolute; left:48px; bottom:-20px; line-height:1; user-select:none;
  letter-spacing:-.02em;
}

/* PLAN CABINE */
.cabin-plan {
  background:white; border-radius:20px; padding:32px;
  box-shadow:var(--shadow); margin:32px 0;
  border:1.5px solid rgba(91,132,184,.1);
}
[data-theme="dark"] .cabin-plan { background:#0f1e30; border-color:rgba(91,132,184,.2); }
.cabin-plan h3 { font-size:18px; margin-bottom:20px; }
.cabin-svg-wrap { overflow-x:auto; }

/* SPECS TABLE */
.specs-table { width:100%; border-collapse:collapse; margin:20px 0; }
.specs-table tr { border-bottom:1px solid rgba(91,132,184,.1); }
.specs-table td { padding:12px 16px; font-size:14px; }
.specs-table td:first-child { color:var(--muted); width:45%; }
.specs-table td:last-child { font-weight:600; }
[data-theme="dark"] .specs-table td { color:rgba(255,255,255,.8); }
[data-theme="dark"] .specs-table td:first-child { color:rgba(255,255,255,.4); }

/* SERVICES GRID */
.services-info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:24px 0; }
.sinfo-card {
  background:var(--bg); border-radius:14px; padding:20px 18px;
  border:1px solid rgba(91,132,184,.12); text-align:center;
}
[data-theme="dark"] .sinfo-card { background:rgba(255,255,255,.04); border-color:rgba(91,132,184,.18); }
.sinfo-icon { font-size:32px; margin-bottom:10px; }
.sinfo-title { font-size:14px; font-weight:600; margin-bottom:6px; }
.sinfo-desc { font-size:13px; color:var(--muted); line-height:1.5; }

/* FLEET LIST */
.fleet-nav { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:40px; }
.fleet-nav-item {
  background:white; border-radius:14px; padding:16px;
  border:1.5px solid rgba(91,132,184,.1); cursor:pointer;
  transition:all .2s; text-align:center; text-decoration:none; color:inherit; display:block;
}
.fleet-nav-item:hover, .fleet-nav-item.active {
  border-color:var(--blue); background:var(--blue-pale);
}
[data-theme="dark"] .fleet-nav-item { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .fleet-nav-item:hover, [data-theme="dark"] .fleet-nav-item.active {
  background:rgba(91,132,184,.15);
}
.fni-model { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:var(--blue); }
.fni-name  { font-size:12px; color:var(--muted); margin-top:4px; }
.fni-type  { font-size:11px; margin-top:6px; }

/* BAGAGES */
.baggage-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:24px 0; }
.bag-card {
  background:white; border-radius:16px; padding:24px 20px; text-align:center;
  border:1.5px solid rgba(91,132,184,.1); box-shadow:var(--shadow); transition:all .25s;
}
.bag-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
[data-theme="dark"] .bag-card { background:#0f1e30; border-color:rgba(91,132,184,.2); }
.bag-icon { font-size:48px; margin-bottom:14px; }
.bag-title { font-family:'Playfair Display',serif; font-size:18px; margin-bottom:8px; }
.bag-class { display:flex; flex-direction:column; gap:6px; margin-top:14px; }
.bag-class-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 12px; background:var(--bg); border-radius:8px;
  font-size:13px;
}
[data-theme="dark"] .bag-class-row { background:rgba(255,255,255,.04); color:rgba(255,255,255,.7); }
.bag-class-row span:last-child { font-weight:600; color:var(--blue); }

/* CABINES */
.cabin-tabs { display:flex; gap:0; border-bottom:2px solid rgba(91,132,184,.12); margin-bottom:32px; }
.cabin-tab {
  padding:14px 28px; font-size:14px; font-weight:500; cursor:pointer;
  border:none; background:none; font-family:inherit; color:var(--muted);
  border-bottom:2px solid transparent; margin-bottom:-2px; transition:all .2s;
}
.cabin-tab.active { color:var(--blue); border-bottom-color:var(--blue); }
.cabin-panel { display:none; }
.cabin-panel.active { display:block; }
.cabin-feature-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:20px 0; }
.cf-item { display:flex; align-items:center; gap:10px; font-size:14px; }
.cf-check { color:var(--blue); font-weight:700; flex-shrink:0; }

/* SIDEBAR sticky */
.info-layout { max-width:1280px; margin:0 auto; padding:0 48px 80px; display:grid; grid-template-columns:1fr 280px; gap:48px; align-items:start; }
.info-sidebar { position:sticky; top:90px; }
.sidebar-nav { background:white; border-radius:16px; border:1.5px solid rgba(91,132,184,.12); overflow:hidden; box-shadow:var(--shadow); }
[data-theme="dark"] .sidebar-nav { background:#0f1e30; border-color:rgba(91,132,184,.2); }
.sidebar-nav-title { padding:14px 18px; font-size:12px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.07em; border-bottom:1px solid rgba(91,132,184,.1); }
.sidebar-nav a {
  display:flex; align-items:center; gap:10px; padding:12px 18px;
  font-size:14px; color:var(--text); border-bottom:1px solid rgba(91,132,184,.08); transition:all .15s;
}
.sidebar-nav a:last-child { border-bottom:none; }
.sidebar-nav a:hover, .sidebar-nav a.active { background:var(--blue-pale); color:var(--blue); }
[data-theme="dark"] .sidebar-nav a { color:rgba(255,255,255,.7); }
[data-theme="dark"] .sidebar-nav a:hover { background:rgba(91,132,184,.1); color:var(--blue-light); }

@media(max-width:900px) {
  .info-hub-grid { grid-template-columns:1fr 1fr; }
  .fleet-nav { grid-template-columns:1fr 1fr; }
  .services-info-grid { grid-template-columns:1fr 1fr; }
  .baggage-grid { grid-template-columns:1fr; }
  .info-layout { grid-template-columns:1fr; padding:0 24px 60px; }
  .info-sidebar { display:none; }
  .cabin-feature-list { grid-template-columns:1fr; }
  .info-hero { padding:130px 24px 48px; }
  .breadcrumb { padding:14px 24px; }
}
