/* ===== 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: 46px; width: auto; }
/* Logo selon thème : bleu en clair, blanc en sombre */
.nav-logo .logo-dark { display: none; }
.nav-logo .logo-light { display: block; }
[data-theme="dark"] .nav-logo .logo-light { display: none; }
[data-theme="dark"] .nav-logo .logo-dark { display: block; }

/* 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.6fr 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: span 2; }
.dest-img { position: relative; }
.dest-img.h-big { height: 436px; }
.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); }
.di-d5 { background: linear-gradient(160deg,#16382a,#2f7a4a 55%,#5a8a3a); }
.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-color: #eef3f9;
  background-image: url(../images/leaf-pattern-light.svg);
  background-size: 360px;
  position: relative; overflow: hidden;
  padding: 72px 28px;
}
.plat-section::before {
  content:''; position:absolute; inset:0; z-index:1;
  background: radial-gradient(ellipse 60% 70% at center, rgba(238,243,249,.6) 0%, rgba(238,243,249,0) 72%);
}
.plat-content { position: relative; z-index: 2; text-align: center; }
.plat-logo { margin-bottom: 14px; }
.plat-logo img { height: 76px; width: auto; }
.plat-logo .logo-white { display: none; }
.plat-eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: #5b84b8; font-weight: 600; margin-bottom: 10px;
}
.plat-content h2 { color: #0b1622; font-size: clamp(28px,4vw,48px); margin-bottom: 14px; }
.plat-content p { color: #3a4a5a; font-size: 17px; max-width: 540px; margin: 0 auto 30px; line-height: 1.7; }
.plat-perks {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 940px; margin: 4px auto 34px;
}
.plat-perk {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(58,95,138,.12);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(58,95,138,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(2px);
}
.plat-perk:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(58,95,138,.16); }
.plat-perk .pp-ico { font-size: 30px; display: block; margin-bottom: 10px; }
.plat-perk h4 { color: #0b1622; font-size: 15px; margin: 0 0 6px; font-weight: 600; }
.plat-perk p { color: #5a6b7a; font-size: 13px; line-height: 1.55; margin: 0; max-width: none; }

/* ── Thème sombre : section sombre, palmes discrètes, texte clair ── */
[data-theme="dark"] .plat-section {
  background-color: #0d1826;
  background-image: url(../images/leaf-pattern-dark.svg);
}
[data-theme="dark"] .plat-section::before {
  background: radial-gradient(ellipse 60% 70% at center, rgba(13,24,38,.5) 0%, rgba(13,24,38,0) 72%);
}
[data-theme="dark"] .plat-logo .logo-color { display: none; }
[data-theme="dark"] .plat-logo .logo-white { display: inline-block; }
[data-theme="dark"] .plat-eyebrow { color: #8aabcf; }
[data-theme="dark"] .plat-content h2 { color: #ffffff; }
[data-theme="dark"] .plat-content p  { color: rgba(255,255,255,.72); }
[data-theme="dark"] .plat-perk { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
[data-theme="dark"] .plat-perk h4 { color: #ffffff; }
[data-theme="dark"] .plat-perk p  { color: rgba(255,255,255,.62); }
@media (max-width: 760px) { .plat-perks { grid-template-columns: 1fr 1fr; } }

/* ===== 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; }
}

/* ===== DARK MODE FIXES COMPLETS ===== */
[data-theme="dark"] body { background:#0b1420; color:#e8f0f8; }

/* Admin */
[data-theme="dark"] .admin-wrap { background:#0b1420; }
[data-theme="dark"] .atabs { background:#07111e; border-color:rgba(91,132,184,.15); }
[data-theme="dark"] .atab { color:rgba(255,255,255,.4); }
[data-theme="dark"] .atab.active { color:var(--blue-light); border-color:var(--blue); }
[data-theme="dark"] .atop { background:#07111e; border-color:rgba(91,132,184,.15); }
[data-theme="dark"] .atable-wrap { background:#0b1420; }
[data-theme="dark"] .atable th { background:#07111e; color:rgba(255,255,255,.5); border-color:rgba(91,132,184,.15); }
[data-theme="dark"] .atable td { border-color:rgba(91,132,184,.08); color:rgba(255,255,255,.8); }
[data-theme="dark"] .atable tr:hover td { background:rgba(91,132,184,.05); }
[data-theme="dark"] .new-flight-form { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .new-flight-form h3 { color:#e8f0f8; }
[data-theme="dark"] .fg label { color:rgba(255,255,255,.5); }
[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:#e8f0f8;
}
[data-theme="dark"] .astats { background:#07111e; border-color:rgba(91,132,184,.15); }
[data-theme="dark"] .astat-box { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .astat-n { color:var(--blue-light); }
[data-theme="dark"] .astat-l { color:rgba(255,255,255,.35); }
[data-theme="dark"] .notif-panel { background:#0f1e30; }

/* Pages réservation */
[data-theme="dark"] .step-form { background:#0f1e30; }
[data-theme="dark"] .dest-card-sel { background:#0b1420; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .dest-card-sel:hover { background:rgba(91,132,184,.1); }
[data-theme="dark"] .dest-card-sel.sel { background:rgba(91,132,184,.15); }
[data-theme="dark"] .dcs-name { color:#e8f0f8; }
[data-theme="dark"] .classe-tab { background:#0b1420; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .classe-tab.sel { background:rgba(91,132,184,.15); }
[data-theme="dark"] .ct-name { color:#e8f0f8; }
[data-theme="dark"] .sf-foot { background:#0f1e30; border-color:rgba(91,132,184,.15); }
[data-theme="dark"] .fgroup label { color:rgba(255,255,255,.5); }
[data-theme="dark"] .fgroup input, [data-theme="dark"] .fgroup select, [data-theme="dark"] .fgroup textarea {
  background:#0b1420; border-color:rgba(91,132,184,.25); color:#e8f0f8;
}
[data-theme="dark"] .confirm-box { background:#0f1e30; }
[data-theme="dark"] .confirm-box h2 { color:#e8f0f8; }

/* Informations pages */
[data-theme="dark"] .info-hub-card { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .ihc-title { color:#e8f0f8; }
[data-theme="dark"] .fleet-nav-item { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .specs-table td { color:rgba(255,255,255,.75); }
[data-theme="dark"] .specs-table td:first-child { color:rgba(255,255,255,.4); }
[data-theme="dark"] .sinfo-card { background:rgba(255,255,255,.04); border-color:rgba(91,132,184,.18); }
[data-theme="dark"] .sinfo-title { color:#e8f0f8; }
[data-theme="dark"] .bag-card { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .bag-title { color:#e8f0f8; }
[data-theme="dark"] .bag-class-row { background:rgba(255,255,255,.04); color:rgba(255,255,255,.7); }
[data-theme="dark"] .cabin-tab { color:rgba(255,255,255,.4); }
[data-theme="dark"] .cabin-tab.active { color:var(--blue-light); }
[data-theme="dark"] .sidebar-nav { background:#0f1e30; border-color:rgba(91,132,184,.2); }
[data-theme="dark"] .sidebar-nav a { color:rgba(255,255,255,.65); border-color:rgba(91,132,184,.1); }
[data-theme="dark"] .sidebar-nav-title { color:rgba(255,255,255,.3); border-color:rgba(91,132,184,.1); }

/* Section about, contact */
[data-theme="dark"] .section:not(.dark-section) { background:#0b1420; }
[data-theme="dark"] .bg-soft { background:#0d1e30; }
[data-theme="dark"] h2, [data-theme="dark"] h3 { color:#e8f0f8; }
[data-theme="dark"] p { color:rgba(255,255,255,.6); }
[data-theme="dark"] .cform-wrap h3 { color:#e8f0f8; }

/* Search bar home */
[data-theme="dark"] .search-card { background:#0f1e30; border:1px solid rgba(91,132,184,.2); }
[data-theme="dark"] .sf input, [data-theme="dark"] .sf select { background:#0b1420; border-color:rgba(91,132,184,.25); color:#e8f0f8; }
[data-theme="dark"] .stab { color:rgba(255,255,255,.4); }
[data-theme="dark"] .stab.active { color:var(--blue-light); }
[data-theme="dark"] .sf-swap { color:var(--blue-light); }

/* Mon billet, boarding pass */
[data-theme="dark"] .search-billet { background:#0f1e30; }
[data-theme="dark"] .sb-input { background:#0b1420; border-color:rgba(91,132,184,.25); color:#e8f0f8; }
[data-theme="dark"] .qr-section { background:#0f1e30; }
[data-theme="dark"] .qr-info h3 { color:#e8f0f8; }
[data-theme="dark"] .checkin-section { background:#0f1e30; }
[data-theme="dark"] .ci-head h3 { color:#e8f0f8; }

/* VIP */
[data-theme="dark"] .uber-active-card { background:#0f1e30; }
[data-theme="dark"] .uber-active-name { color:#e8f0f8; }
[data-theme="dark"] .uber-options-col { background:#0f1e30; }
[data-theme="dark"] .uber-opt { color:#e8f0f8; }
[data-theme="dark"] .uber-opt:hover { background:rgba(91,132,184,.1); }
[data-theme="dark"] .uber-book-form { background:#0f1e30; }
[data-theme="dark"] .ubf-body input, [data-theme="dark"] .ubf-body select, [data-theme="dark"] .ubf-body textarea {
  background:#0b1420; border-color:rgba(91,132,184,.25); color:#e8f0f8;
}
[data-theme="dark"] .ubf-body label { color:rgba(255,255,255,.5); }

/* ===== ADMIN TOUJOURS EN DARK ===== */
.admin-wrap { background: #0b1420 !important; min-height: 100vh; }
.atop { 
  background: #07111e !important; 
  border-bottom: 1px solid rgba(91,132,184,.2) !important;
  color: white !important;
}
.atop a, .atop span { color: rgba(255,255,255,.7) !important; }
.atabs { 
  background: #07111e !important; 
  border-bottom: 1px solid rgba(91,132,184,.15) !important;
  display: flex; gap: 4px; padding: 8px 12px; flex-wrap: wrap;
}
.atab { 
  color: rgba(255,255,255,.5) !important; 
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(91,132,184,.15) !important;
  border-radius: 8px !important;
  padding: 7px 16px !important;
  font-size: 12px !important;
  cursor: pointer; font-family: inherit; font-weight: 500;
  transition: all .2s;
}
.atab:hover { color: rgba(255,255,255,.8) !important; background: rgba(91,132,184,.12) !important; }
.atab.active { 
  color: white !important; 
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}
.astats { 
  display: grid; grid-template-columns: repeat(4,1fr); 
  gap: 12px; padding: 16px 20px;
  background: #07111e !important;
  border-bottom: 1px solid rgba(91,132,184,.1) !important;
}
.astat-box { 
  background: #0f1e30 !important; 
  border: 1px solid rgba(91,132,184,.2) !important;
  border-radius: 14px !important; padding: 16px !important;
  color: white !important;
}
.astat-n { 
  font-family: 'Playfair Display', serif;
  font-size: 32px !important; 
  color: var(--blue-light) !important; 
  display: block; font-weight: 700;
}
.astat-l { 
  font-size: 12px !important; 
  color: rgba(255,255,255,.4) !important;
  margin-top: 4px; display: block; letter-spacing: .04em;
}
.atable-wrap { 
  padding: 16px 20px;
  background: #0b1420 !important;
}
.atable { 
  width: 100%; border-collapse: collapse;
  background: #0b1420 !important;
}
.atable th { 
  background: #07111e !important; 
  color: rgba(255,255,255,.5) !important;
  font-size: 11px; text-transform: uppercase; letter-spacing: .07em;
  padding: 10px 14px; border-bottom: 1px solid rgba(91,132,184,.15) !important;
  font-weight: 600; text-align: left;
}
.atable td { 
  padding: 12px 14px; 
  border-bottom: 1px solid rgba(91,132,184,.08) !important;
  color: rgba(255,255,255,.8) !important;
  font-size: 13px;
  vertical-align: middle;
}
.atable tr:hover td { background: rgba(91,132,184,.05) !important; }
.new-flight-form { 
  background: #0f1e30 !important; 
  border: 1px solid rgba(91,132,184,.2) !important;
  border-radius: 16px; margin: 16px 20px; padding: 20px;
}
.new-flight-form h3 { color: white !important; margin-bottom: 16px; }
.new-flight-form .fg label { color: rgba(255,255,255,.5) !important; }
.new-flight-form .fg input,
.new-flight-form .fg select,
.new-flight-form .fg textarea {
  background: #0b1420 !important;
  border-color: rgba(91,132,184,.25) !important;
  color: white !important;
}
.new-flight-form .fg input::placeholder { color: rgba(255,255,255,.25) !important; }

/* ===== ADMIN STATS FIX ===== */
.astat-box {
  background: #0f1e30 !important;
  border: 1px solid rgba(91,132,184,.2) !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
}
.astat-n {
  font-family: 'Playfair Display', serif !important;
  font-size: 34px !important;
  color: #8aabcf !important;
  display: block !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
}
.astat-l {
  font-size: 12px !important;
  color: rgba(255,255,255,.4) !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  display: block !important;
}

/* ===== TARIFS ADMIN — TOUJOURS DARK ===== */
.tarif-box {
  background: #0f1e30 !important;
  border: 1px solid rgba(91,132,184,.2) !important;
  border-radius: 16px !important;
  padding: 24px !important;
}
.tarif-box h3 {
  color: rgba(255,255,255,.8) !important;
  font-size: 14px !important;
  margin-bottom: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
}
.tarif-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 14px !important;
  border-bottom: 1px solid rgba(91,132,184,.08) !important;
  gap: 12px !important;
}
.tarif-row:last-child { border-bottom: none !important; }
.tarif-row label {
  font-size: 14px !important;
  color: rgba(255,255,255,.7) !important;
  flex: 1 !important;
}
.tarif-row input {
  background: rgba(91,132,184,.12) !important;
  border: 1px solid rgba(91,132,184,.3) !important;
  border-radius: 8px !important;
  padding: 7px 12px !important;
  font-size: 14px !important;
  color: white !important;
  width: 100px !important;
  text-align: right !important;
  font-family: 'Share Tech Mono', monospace !important;
}
.tarif-row input:focus {
  border-color: var(--blue) !important;
  outline: none !important;
  background: rgba(91,132,184,.2) !important;
}
.tarif-row .tarif-prefix {
  font-size: 14px !important;
  color: rgba(255,255,255,.35) !important;
  font-family: 'Share Tech Mono', monospace !important;
}

/* Panel demandes dark */
#panel-demandes { color: rgba(255,255,255,.8); }
#panel-joueurs  { color: rgba(255,255,255,.8); }

/* Prix panel wrapper */
.prix-wrap {
  background: #0b1420;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================================================================ */
/* === SYSTÈME DE THÈME CLEAN (remplace toutes les couches précédentes) === */
/* ================================================================ */

:root {
  --ease-snap: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === DARK MODE (default) === */
[data-theme="dark"] {
  /* Couleurs de fond — du plus profond au plus élevé */
  --bg-deep:        #050a14;
  --bg:             #07111f;
  --bg-elevated:    #0a1830;
  --surface:        #0f1c30;
  --surface-2:      #14253c;
  --surface-hover:  #1a2d47;

  /* Bordures */
  --border-subtle:  rgba(91,132,184,.08);
  --border:         rgba(91,132,184,.15);
  --border-strong:  rgba(91,132,184,.3);

  /* Couleurs accent */
  --blue:           #5b84b8;
  --blue-light:     #93c5fd;
  --blue-soft:      rgba(91,132,184,.08);
  --teal:           #2dd4bf;
  --teal-soft:      rgba(45,212,191,.08);
  --gold:           #fbbf24;

  /* Textes */
  --text:           rgba(255,255,255,.92);
  --text-strong:    #ffffff;
  --muted:          rgba(255,255,255,.6);
  --muted-2:        rgba(255,255,255,.4);
  --faint:          rgba(255,255,255,.25);

  /* Cards */
  --card-bg:        rgba(15,28,48,.7);
  --card-border:    rgba(91,132,184,.18);
  --glass-bg:       rgba(15,28,48,.6);
  --glass-blur:     blur(20px) saturate(180%);

  /* Hero gradient */
  --hero-bg:        linear-gradient(180deg, #05101e 0%, #0a1830 50%, #050a14 100%);

  /* Footer */
  --footer-bg:      linear-gradient(180deg, #050a14, #02050a);
}

/* === LIGHT MODE === */
[data-theme="light"] {
  --bg-deep:        #e8eef5;
  --bg:             #f4f7fb;
  --bg-elevated:    #ffffff;
  --surface:        #ffffff;
  --surface-2:      #f8fafc;
  --surface-hover:  #f0f4f8;

  --border-subtle:  rgba(91,132,184,.10);
  --border:         rgba(91,132,184,.18);
  --border-strong:  rgba(91,132,184,.3);

  --blue:           #4a73a7;
  --blue-light:     #3a5f8a;
  --blue-soft:      rgba(91,132,184,.06);
  --teal:           #0d9488;
  --teal-soft:      rgba(45,212,191,.08);
  --gold:           #ca8a04;

  --text:           #1a2a3a;
  --text-strong:    #07111f;
  --muted:          #5a7080;
  --muted-2:        #8194a8;
  --faint:          #b0bcca;

  --card-bg:        #ffffff;
  --card-border:    rgba(91,132,184,.15);
  --glass-bg:       rgba(255,255,255,.85);
  --glass-blur:     blur(20px) saturate(180%);

  --hero-bg:        linear-gradient(180deg, #ffffff 0%, #f0f4f8 50%, #e8eef5 100%);

  --footer-bg:      linear-gradient(180deg, #f8fafc, #e8eef5);
}

/* === BASE === */
body {
  background: var(--bg);
  color: var(--text);
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
  transition: background-color .3s, color .3s;
}

/* Dark mode adds gradient mesh on body */
[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(91,132,184,.12), transparent),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(45,212,191,.06), transparent),
    var(--bg-deep);
  background-attachment: fixed;
}

/* === HEADINGS === */
h1, h2, h3, h4, h5 {
  color: var(--text-strong);
  letter-spacing: -0.025em;
}
p { color: var(--text); }

/* === NAVBAR === */
.navbar {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border) !important;
  transition: background-color .3s, border-color .3s;
}
.nav-links > li > a {
  color: var(--text) !important;
  transition: all .2s var(--ease-snap);
}
.nav-links > li:hover > a {
  color: var(--text-strong) !important;
  background: var(--blue-soft) !important;
}
.dropdown {
  background: var(--card-bg) !important;
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.15) !important;
}
.dropdown a {
  color: var(--text) !important;
  transition: all .15s;
}
.dropdown a:hover {
  background: var(--blue-soft) !important;
  color: var(--text-strong) !important;
}

/* === HERO — couleur solide propre, pas de gradient parasite === */
.hero, .page-hero {
  background: var(--hero-bg);
  position: relative;
}
.hero h1, .hero-title, .hero-title-clean,
.page-hero h1 {
  background: none !important;
  background-color: transparent !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--text-strong) !important;
}
.hero-title em, .hero-title-clean em {
  color: var(--blue) !important;
  -webkit-text-fill-color: var(--blue) !important;
}
.hero-slogan, .hero-desc, .hero-tagline,
.hero p, .page-hero p {
  color: var(--muted) !important;
  -webkit-text-fill-color: var(--muted) !important;
  background: none !important;
}
.hero-tag, .hero-badge {
  background: var(--blue-soft) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}

/* === CARDS — toutes les variantes === */
.feature-card,
.ac-card,
.service-card,
.helico-card,
.cat-card,
.fcard,
.search-card,
.recap,
.tier-card,
.value-card,
.article-card,
.stat-tile,
.order-card,
.job-card,
.product-card,
.platinium-section .card {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  color: var(--text) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  transition: all .25s var(--ease-soft);
}
[data-theme="dark"] .feature-card,
[data-theme="dark"] .ac-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .helico-card,
[data-theme="dark"] .cat-card,
[data-theme="dark"] .fcard,
[data-theme="dark"] .search-card,
[data-theme="dark"] .tier-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .article-card,
[data-theme="dark"] .stat-tile,
[data-theme="dark"] .order-card,
[data-theme="dark"] .job-card,
[data-theme="dark"] .product-card {
  backdrop-filter: var(--glass-blur);
}

/* Card hover */
.feature-card:hover,
.ac-card:hover,
.service-card:hover,
.cat-card:hover,
.tier-card:hover,
.article-card:hover,
.job-card:hover,
.product-card:hover {
  border-color: var(--border-strong) !important;
  transform: translateY(-2px);
}

/* === CARD CONTENTS === */
.feature-card h3,
.ac-name, .ac-card h3,
.service-card h3, .sc-title,
.helico-name,
.cat-card h3,
.fcard-head h2,
.tier-card h3,
.value-card h3,
.article-card h2,
.ac-title,
.pc-name,
.oc-entreprise,
.jc-title,
.vpl-item strong {
  color: var(--text-strong) !important;
  -webkit-text-fill-color: var(--text-strong) !important;
  background: none !important;
}
.feature-card p,
.ac-desc,
.service-card p, .sc-body p,
.cat-card p,
.ac-excerpt,
.tier-card li,
.value-card p,
.pc-desc,
.vpl-item p {
  color: var(--muted) !important;
}

/* === SECTION TITLES — éviter les gradients invisibles === */
.section h2,
.sec-head h2 {
  color: var(--text-strong) !important;
  -webkit-text-fill-color: var(--text-strong) !important;
  background: none !important;
}
.sec-head p,
.about-text p,
.section p {
  color: var(--muted);
}

/* === SECTION TAGS (badges) === */
.sec-tag, .badge, .plat-badge, .car-badge, .blog-badge, .pro-badge {
  background: var(--blue-soft) !important;
  border: 1px solid var(--border) !important;
  color: var(--blue-light) !important;
  font-weight: 600;
}

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(180deg, var(--blue), #3a5f8a) !important;
  border: 1px solid var(--blue) !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(91,132,184,.25);
  transition: all .2s var(--ease-snap) !important;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(91,132,184,.35);
}
.btn-outline {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-strong) !important;
  color: var(--text) !important;
}
.btn-outline:hover {
  background: var(--surface-hover) !important;
  border-color: var(--blue) !important;
}

/* Nav VIP & PRO buttons */
.nav-vip-link, .nav-pro-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 16px !important;
  white-space: nowrap !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border: 1px solid var(--border-strong) !important;
  transition: all .2s !important;
}
.nav-vip-link {
  background: var(--blue-soft) !important;
  color: var(--blue-light) !important;
}
.nav-vip-link:hover {
  background: var(--blue) !important;
  color: white !important;
}
.nav-pro-link {
  background: var(--teal-soft) !important;
  color: var(--teal) !important;
  border-color: rgba(45,212,191,.3) !important;
}
.nav-pro-link:hover {
  background: var(--teal) !important;
  color: white !important;
}

/* === INPUTS === */
input, select, textarea {
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  transition: all .2s var(--ease-snap);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue) !important;
  background: var(--surface) !important;
  box-shadow: 0 0 0 3px var(--blue-soft) !important;
  outline: none !important;
}
.fg label {
  color: var(--muted) !important;
}

/* === FOOTER === */
.footer {
  background: var(--footer-bg) !important;
  border-top: 1px solid var(--border-subtle) !important;
  color: var(--muted);
}
.footer-links a {
  color: var(--muted) !important;
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--text-strong) !important;
}

/* === SUIVI PAGE (tableau aéroport) === */
.info-strip, .stats-bar {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.stab {
  color: var(--muted) !important;
}
.stab.active {
  color: var(--text-strong) !important;
  background: var(--blue-soft) !important;
}
.vboard {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
}
.vboard th {
  background: var(--surface-2) !important;
  color: var(--muted) !important;
  border-bottom: 2px solid var(--border) !important;
}
.vboard td {
  color: var(--text) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
}
.vboard td strong { color: var(--text-strong) !important; }

/* === ABOUT STATS === */
.about-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.about-stats > div {
  background: transparent !important;
  border: none !important;
  border-left: 2px solid var(--blue) !important;
  padding: 0 0 0 18px !important;
  border-radius: 0 !important;
}
.about-stats .astat-n {
  color: var(--text-strong) !important;
  -webkit-text-fill-color: var(--text-strong) !important;
  background: none !important;
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}
.about-stats .astat-l {
  color: var(--blue-light) !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* === FLEET TAGS === */
.ftags span {
  background: var(--blue-soft) !important;
  border: 1px solid var(--border) !important;
  color: var(--blue-light) !important;
}

/* === Z-index & isolation pour éviter overlaps === */
.hero, .page-hero, .section, .blog-hero, .pro-hero,
.plat-hero, .car-hero, .acc-hero {
  position: relative;
  isolation: isolate;
}

/* === THEME TOGGLE === */
.theme-toggle {
  background: var(--blue-soft) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}

/* === Z-INDEX SECURITY — empêcher overlay parasites === */
.hero h1, .hero-title-clean, .hero p,
.page-hero h1, .page-hero p {
  position: relative;
  z-index: 2;
}

/* === ::SELECTION propre === */
::selection {
  background: var(--blue);
  color: white;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* === GRAIN OVERLAY dark uniquement, très léger === */
[data-theme="dark"] body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ================================================================ */
/* === MICRO-INTERACTIONS APPLE-STYLE === */
/* ================================================================ */

/* Easing curves Apple-like */
:root {
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

/* === BUTTONS — bounce subtil au click === */
.btn-primary, .btn-outline, .btn-pro, .btn-cart,
button.actbtn, .nav-vip-link, .nav-pro-link,
.pc-action, .sign-btn, .btn {
  transform: scale(1);
  transition: transform .25s var(--ease-out), box-shadow .25s, background .2s, border-color .2s, color .2s;
  will-change: transform;
}
.btn-primary:active, .btn-outline:active, .btn-pro:active, .btn-cart:active,
.actbtn:active, .nav-vip-link:active, .nav-pro-link:active,
.pc-action:active:not(:disabled), .sign-btn:active:not(:disabled), .btn:active {
  transform: scale(0.96);
  transition-duration: .08s;
}

/* === CARDS — lift au hover === */
.feature-card, .ac-card, .service-card, .helico-card, .cat-card,
.fcard, .tier-card, .value-card, .article-card, .stat-tile,
.order-card, .job-card, .product-card {
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
  will-change: transform;
}
.feature-card:hover, .ac-card:hover, .service-card:hover, .helico-card:hover,
.cat-card:hover, .tier-card:hover, .value-card:hover, .article-card:hover,
.job-card:hover, .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
}

/* === NAV LINKS — underline animée === */
.nav-links > li > a {
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .35s var(--ease-out);
  transform-origin: center;
}
.nav-links > li:hover > a::after {
  transform: scaleX(1);
}

/* === LINKS — hover smooth === */
a {
  transition: color .2s var(--ease-out);
}

/* === INPUTS — glow focus === */
input, select, textarea {
  transition: all .25s var(--ease-out) !important;
}
input:focus, select:focus, textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px var(--blue-soft), 0 4px 12px rgba(91,132,184,.15) !important;
}

/* === BADGES — pop in === */
.lc-status, .sec-tag, .badge, .ftags span, .jc-tag,
.tier-Bronze, .tier-Silver, .tier-Gold, .tier-Platinium, .tier-Diamond {
  transition: transform .3s var(--ease-spring), background .2s, border-color .2s;
}
.lc-status:hover, .jc-tag:hover {
  transform: scale(1.05);
}

/* === ICONS — wiggle hover === */
.app-icon, .pc-icon, .vc-icon, .ti-icon,
.cat-section-icon, .pf-icon {
  transition: transform .35s var(--ease-spring);
}
.app-tile:hover .app-icon,
.product-card:hover .pc-icon,
.value-card:hover .vc-icon,
.cat-section:hover .cat-section-icon,
.pf-item:hover .pf-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* === HERO ENTRANCE === */
@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero h1, .hero-title, .hero-title-clean,
.page-hero h1, .pro-hero h1, .plat-hero h1, .car-hero h1 {
  animation: heroEnter .9s var(--ease-out) backwards;
}
.hero-desc, .hero-slogan, .hero p, .page-hero p,
.pro-hero p, .plat-hero p, .car-hero p {
  animation: heroEnter .9s var(--ease-out) .15s backwards;
}
.hero-btns, .hero-actions, .pro-hero-btns {
  animation: heroEnter .9s var(--ease-out) .3s backwards;
}
.hero-tag, .hero-badge, .pro-badge, .plat-badge, .car-badge, .blog-badge {
  animation: heroEnter .8s var(--ease-out) backwards;
}

/* === SECTIONS — reveal on scroll === */
@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .values-section, .tiers-section,
.cats-content, .blog-grid, .jobs-section {
  animation: sectionReveal .8s var(--ease-out) backwards;
}

/* === CARDS GRID — stagger reveal === */
.apps-grid > *, .features-grid > *, .acards > *,
.products-grid > *, .blog-grid > *, .values-grid > *,
.tiers-grid > *, .cats-grid > * {
  animation: sectionReveal .6s var(--ease-out) backwards;
}
.apps-grid > *:nth-child(1), .features-grid > *:nth-child(1) { animation-delay: .05s; }
.apps-grid > *:nth-child(2), .features-grid > *:nth-child(2) { animation-delay: .1s; }
.apps-grid > *:nth-child(3), .features-grid > *:nth-child(3) { animation-delay: .15s; }
.apps-grid > *:nth-child(4), .features-grid > *:nth-child(4) { animation-delay: .2s; }
.apps-grid > *:nth-child(5), .features-grid > *:nth-child(5) { animation-delay: .25s; }
.apps-grid > *:nth-child(6), .features-grid > *:nth-child(6) { animation-delay: .3s; }

/* === MODAL — apple-style scale enter === */
@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cart-drawer, .checkout-modal, .article-modal,
#icon-picker > div, #prod-edit-modal > div {
  animation: modalEnter .35s var(--ease-out);
}

/* === DRAWER slide === */
.cart-drawer {
  transition: transform .45s var(--ease-out) !important;
}

/* === OVERLAY fade === */
.cart-overlay, .checkout-overlay, .article-overlay,
#icon-picker, #prod-edit-modal {
  transition: opacity .3s var(--ease-out);
}

/* === FORM TRANSITIONS === */
.fg {
  transition: opacity .3s var(--ease-out);
}

/* === RIPPLE EFFECT sur les boutons principaux === */
.btn-primary, .btn-pro, .pc-action {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-pro::after, .pc-action::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .8s;
  opacity: 0;
  pointer-events: none;
}
.btn-primary:active::after, .btn-pro:active::after, .pc-action:active::after {
  width: 300%; height: 300%;
  opacity: 1;
  transition-duration: .8s;
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === TOOLTIP soft === */
[title] {
  position: relative;
}

/* === IMAGE ZOOM hover === */
.ac-cover, .prod-image-photo, .pc-icon img {
  transition: transform .5s var(--ease-out);
  will-change: transform;
}
.article-card:hover .ac-cover {
  transform: scale(1.05);
}

/* === LOADING SPINNER plus smooth === */
@keyframes spinSmooth {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.loading .icon, .loading-icon {
  animation: spinSmooth 1.2s linear infinite;
}

/* === ARROW indicators === */
.nav-links > li > a > span:last-child::after,
.dropdown-arrow {
  display: inline-block;
  transition: transform .3s var(--ease-out);
}
.nav-links > li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* === STATUS PULSE === */
@keyframes pulseSubtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.s-pending .icon, .s-boarding {
  animation: pulseSubtle 2.5s var(--ease-in-out) infinite;
}

/* === CHECKBOX SMOOTH === */
input[type="checkbox"] {
  cursor: pointer;
  transition: transform .15s var(--ease-spring);
}
input[type="checkbox"]:checked {
  transform: scale(1.1);
}

/* === BOUTONS DISABLED state === */
button:disabled, .btn:disabled, .pc-action:disabled {
  cursor: not-allowed !important;
  opacity: .5;
  transform: none !important;
}

/* === SKELETON LOADING === */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-hover) 50%, var(--surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s linear infinite;
  border-radius: 8px;
}

/* === FOCUS VISIBLE — ring accessible === */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === PAGE TRANSITION smooth === */
body {
  animation: pageIn .5s var(--ease-out);
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === SCROLLBAR avec hover === */
::-webkit-scrollbar-thumb {
  transition: background .2s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue) !important;
  background-clip: padding-box !important;
}

/* === MEMBER CARD platinium — float effect === */
.member-card {
  animation: floatIn 1s var(--ease-out) .3s backwards;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px) rotateX(5deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* === Reduce motion preference === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================================================================ */
/* === LIGHT MODE FIXES (vip helicos + info sidebar) === */
/* ================================================================ */

/* === FIX VIP HELICOS LIGHT MODE === */
[data-theme="light"] .helico-card {
  background: white !important;
  border: 1px solid rgba(91,132,184,.2) !important;
  box-shadow: 0 4px 16px rgba(58,95,138,.08) !important;
}
[data-theme="light"] .helico-top {
  background: linear-gradient(135deg, #1a3d6a, #2a5a8a) !important;
  /* On garde un fond foncé pour que le texte blanc reste lisible */
}
[data-theme="light"] .helico-card.featured .helico-top {
  background: linear-gradient(135deg, #07111f, #1a3d6a) !important;
}
[data-theme="light"] .helico-name,
[data-theme="light"] .helico-sub {
  color: white !important;
  -webkit-text-fill-color: white !important;
}
[data-theme="light"] .helico-specs {
  background: #f4f7fb !important;
  border: 1px solid rgba(91,132,184,.1);
}
[data-theme="light"] .helico-desc {
  color: #5a7080 !important;
}
[data-theme="light"] .hsv { color: #3a5f8a !important; }
[data-theme="light"] .hsl { color: #5a7080 !important; }
[data-theme="light"] .helico-card .ftags span {
  background: rgba(91,132,184,.08) !important;
  color: #3a5f8a !important;
  border: 1px solid rgba(91,132,184,.15) !important;
}
[data-theme="light"] .helico-price {
  color: #3a5f8a !important;
}

/* === FIX SIDEBAR (info-avions, info-aeroport, etc.) LIGHT MODE === */
[data-theme="light"] .sidebar-nav {
  background: white !important;
  border: 1px solid rgba(91,132,184,.18) !important;
  box-shadow: 0 4px 12px rgba(58,95,138,.06) !important;
}
[data-theme="light"] .sidebar-nav a {
  color: #1a2a3a !important;
  border-bottom: 1px solid rgba(91,132,184,.08) !important;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s;
}
[data-theme="light"] .sidebar-nav a:hover {
  background: rgba(91,132,184,.08) !important;
  color: #3a5f8a !important;
}
[data-theme="light"] .sidebar-nav a.active {
  background: rgba(91,132,184,.15) !important;
  color: #2a5a8a !important;
  font-weight: 600;
  border-left: 3px solid #5b84b8;
}
[data-theme="light"] .sidebar-nav-title {
  color: #5a7080 !important;
  background: rgba(91,132,184,.05);
}

/* === FIX vip-tag === */
[data-theme="light"] .vip-tag {
  background: rgba(91,132,184,.1) !important;
  border: 1px solid rgba(91,132,184,.3) !important;
  color: #3a5f8a !important;
}

/* === FIX cards génériques en light === */
[data-theme="light"] .feature-card,
[data-theme="light"] .ac-card,
[data-theme="light"] .service-card,
[data-theme="light"] .cat-card,
[data-theme="light"] .article-card,
[data-theme="light"] .stat-tile,
[data-theme="light"] .order-card,
[data-theme="light"] .job-card,
[data-theme="light"] .product-card,
[data-theme="light"] .tier-card,
[data-theme="light"] .value-card {
  background: white !important;
  border: 1px solid rgba(91,132,184,.15) !important;
  box-shadow: 0 4px 16px rgba(58,95,138,.06);
  color: #1a2a3a !important;
}

/* Texte des cards en light */
[data-theme="light"] .feature-card h3,
[data-theme="light"] .ac-card h3, [data-theme="light"] .ac-name,
[data-theme="light"] .service-card h3,
[data-theme="light"] .cat-card h3,
[data-theme="light"] .tier-card h3,
[data-theme="light"] .value-card h3 {
  color: #1a2a3a !important;
  -webkit-text-fill-color: #1a2a3a !important;
}

/* === HERO sections : conserver fond sombre en light mode pour la lisibilité === */
[data-theme="light"] .hero,
[data-theme="light"] .page-hero,
[data-theme="light"] .plat-hero,
[data-theme="light"] .car-hero,
[data-theme="light"] .blog-hero,
[data-theme="light"] .acc-hero {
  background: linear-gradient(145deg, #07111e 0%, #0a1830 60%, #07111e 100%) !important;
}
[data-theme="light"] .hero h1,
[data-theme="light"] .page-hero h1,
[data-theme="light"] .plat-hero h1,
[data-theme="light"] .car-hero h1,
[data-theme="light"] .blog-hero h1,
[data-theme="light"] .acc-hero h1 {
  color: white !important;
  -webkit-text-fill-color: white !important;
}
[data-theme="light"] .hero p,
[data-theme="light"] .page-hero p,
[data-theme="light"] .plat-hero p,
[data-theme="light"] .car-hero p,
[data-theme="light"] .blog-hero p,
[data-theme="light"] .acc-hero p {
  color: rgba(255,255,255,.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,.7) !important;
}
