/* ============================================================
   NOVASVISA — THEME PREMIUM BLEU MARINE & OR
   "De votre rêve à votre destination"
   Canada | Luxembourg
   ============================================================ */

/* ===== GOOGLE FONTS (appelées depuis le HTML) ===== */
/* Playfair Display : titres | Raleway : corps */

/* ===== VARIABLES GLOBALES ===== */
:root {
  /* Palette principale */
  --navy:         #070e1f;
  --navy-mid:     #0d1b35;
  --navy-light:   #152040;
  --navy-card:    #0f1e3a;

  /* Or */
  --gold:         #c9a227;
  --gold-light:   #e8c84a;
  --gold-pale:    #f5e199;
  --gold-dark:    #a07d18;

  /* Textes */
  --white:        #ffffff;
  --silver:       #d4dae8;
  --text-muted:   #8a97b0;
  --text-body:    #b0bbd4;

  /* Pays */
  --red-canada:   #d52b1e;
  --blue-lux:     #00a3e0;

  /* UI */
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.07);
  --gold-border:  rgba(201,162,39,0.2);
  --gold-glow:    rgba(201,162,39,0.15);
  --shadow-gold:  0 0 40px rgba(201,162,39,0.15);
  --shadow-deep:  0 20px 60px rgba(0,0,0,0.5);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.35);

  /* Formes */
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-full:  999px;

  /* Transitions */
  --transition:   all 0.35s cubic-bezier(.4,0,.2,1);
  --transition-fast: all 0.2s ease;

  /* Typographie */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%,   rgba(201,162,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0,163,224,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-dark));
  border-radius: 3px;
}

/* ===== SÉLECTION ===== */
::selection {
  background: rgba(201,162,39,0.3);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,14,31,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7,14,31,0.98);
  border-bottom-color: rgba(201,162,39,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,162,39,0.25));
  transition: filter 0.3s ease;
}
.brand:hover img { filter: drop-shadow(0 4px 16px rgba(201,162,39,0.45)); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list > li > a {
  display: block;
  padding: 8px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 55%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.nav-list > li > a:hover {
  color: var(--gold-light);
  background: rgba(201,162,39,0.06);
}
.nav-list > li > a:hover::after { transform: translateX(-50%) scaleX(1); }

/* Nav CTA */
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  box-shadow: 0 4px 18px rgba(201,162,39,0.35);
  margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(201,162,39,0.55) !important;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%) !important;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(13,27,53,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  min-width: 190px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  z-index: 200;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity:0; transform: translateY(-8px); }
  to   { opacity:1; transform: translateY(0); }
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--silver);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.dropdown-menu li a:hover {
  background: rgba(201,162,39,0.1);
  color: var(--gold-light);
  padding-left: 18px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.25rem;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(201,162,39,0.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 65% 40%, rgba(201,162,39,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 5%  85%, rgba(0,163,224,0.05) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #09142b 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -120px; right: -80px;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue-lux), transparent 70%);
  bottom: -60px; left: -80px;
  animation-delay: 4s;
}
@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(25px,-35px) scale(1.06); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 80px 0 100px;
}

/* Hero animations */
.hero-left  { animation: fadeSlideUp 0.9s ease both; }
.hero-right { animation: fadeSlideUp 0.9s ease 0.2s both; }

@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.09);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--radius-full);
  padding: 6px 20px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-title .gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  font-size: 0.88rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

/* Flag pills */
.hero-flags,
.badges {
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.flag-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.flag-pill:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.flag-pill .flag { font-size: 1.2rem; }
.flag-pill.canada    { color: #f57c7c; border-color: rgba(213,43,30,0.25); }
.flag-pill.luxembourg{ color: #60c8f0; border-color: rgba(0,163,224,0.25); }

/* Buttons */
.hero-actions,
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(201,162,39,0.38);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,162,39,0.55);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
  background: rgba(201,162,39,0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
}
.btn-ghost:hover {
  background: rgba(201,162,39,0.1);
  transform: translateY(-2px);
}

/* Hero visual card */
.hero-visual { position: relative; }

.hero-logo-card {
  background: rgba(15,30,58,0.9);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.hero-logo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-logo-card img {
  width: 240px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 20px rgba(201,162,39,0.28));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  border: 1px solid rgba(201,162,39,0.1);
  transition: var(--transition);
}
.stat-box:hover {
  border-color: rgba(201,162,39,0.3);
  background: rgba(201,162,39,0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

.float-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
  animation: floatBadge 3.5s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge-1 { top: -14px; right: 20px; }
.float-badge-2 { bottom: -14px; left: 20px; animation-delay: 1.8s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ============================================================
   SECTION GÉNÉRIQUE
   ============================================================ */
section { position: relative; z-index: 1; }

.section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  text-align: center;
}
.section-title .accent { color: var(--gold); }

.section-sub,
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 44px;
}
.gold-divider.left { margin-left: 0; }

/* ============================================================
   GRID / CARDS
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.35);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.card:hover::before { transform: scaleX(1); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.card p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.7;
}
.card ul {
  padding-left: 0;
}
.card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.card ul li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.link:hover { gap: 12px; color: var(--gold-light); }

/* Feature cards (valeurs) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.32);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,162,39,0.14), rgba(201,162,39,0.04));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(201,162,39,0.2);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(201,162,39,0.28), rgba(201,162,39,0.1));
  transform: scale(1.08);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.destination-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: var(--transition);
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.destination-card:hover .dest-bg { transform: scale(1.04); }

.dest-canada .dest-bg {
  background: linear-gradient(135deg, #1a0a0a 0%, #2e0d0d 40%, #1a1a2e 100%);
}
.dest-luxembourg .dest-bg {
  background: linear-gradient(135deg, #081524 0%, #0d2040 40%, #071018 100%);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7,14,31,0.96) 0%,
    rgba(7,14,31,0.5)  55%,
    transparent        100%);
  transition: opacity 0.4s;
}

.dest-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.dest-flag   { font-size: 2.8rem; margin-bottom: 10px; display: block; }
.dest-name   { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.dest-desc   { font-size: 0.87rem; color: var(--silver); opacity: 0.8; margin-bottom: 18px; line-height: 1.65; }

.dest-tags   { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.dest-tag    {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
  color: var(--silver);
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}
.dest-link:hover { gap: 14px; color: var(--gold-light); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  opacity: 0.25;
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(201,162,39,0.1), var(--shadow-gold);
  transition: var(--transition);
}
.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(201,162,39,0.15), 0 0 40px rgba(201,162,39,0.35);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 20px 0 40px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2,
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.cta-banner .btn-primary {
  position: relative; z-index: 1;
}

.cta-section {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,162,39,0.06) 0%, transparent 65%);
}

.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   DOCUMENT LISTS
   ============================================================ */
.document-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.document-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  color: var(--text-body);
  transition: var(--transition-fast);
}
.document-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.document-list li:hover {
  border-color: var(--gold-border);
  background: rgba(201,162,39,0.05);
  color: var(--silver);
}

/* ============================================================
   FORMULAIRES — PAGE INSCRIPTION (CRUCIAL)
   ============================================================ */
.form-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
}
.form-section-title::before {
  content: '';
  width: 4px; height: 20px;
  background: linear-gradient(var(--gold), var(--gold-light));
  border-radius: 2px;
  flex-shrink: 0;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--silver);
}
.form-group label .required { color: var(--gold); margin-left: 3px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.06);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* File upload */
.file-upload-area {
  border: 2px dashed rgba(201,162,39,0.25);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(201,162,39,0.03);
  position: relative;
}
.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.07);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon { font-size: 2rem; margin-bottom: 10px; }
.upload-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.upload-text strong { color: var(--gold); }
.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.file-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(201,162,39,0.08);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--silver);
}
.file-item .remove { color: #f87171; cursor: pointer; font-size: 1rem; }

/* Progress bar (multi-step) */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}
.progress-step.completed:not(:last-child)::after,
.progress-step.active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.3));
}

.step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.progress-step.active .step-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 0 5px rgba(201,162,39,0.15);
}
.progress-step.completed .step-dot {
  background: rgba(201,162,39,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.step-label {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  white-space: nowrap;
}
.progress-step.active .step-label { color: var(--gold); }

.progress-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  min-width: 40px;
  max-width: 80px;
  margin-bottom: 26px;
}
.progress-connector.done {
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.4));
}

/* Form actions */
.form-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Validation states */
input.error,
select.error,
textarea.error {
  border-color: #f87171 !important;
  background: rgba(248,113,113,0.06) !important;
}

.error-message {
  color: #f87171;
  font-size: 0.78rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.error-message::before { content: '⚠'; font-size: 0.7rem; }

.success-message {
  color: #4ade80;
  font-size: 0.78rem;
  margin-top: 6px;
}

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-check span {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   PAGE SERVICES
   ============================================================ */
.services-hero-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.service-card-header {
  padding: 28px;
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.03));
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-icon { font-size: 2rem; }
.service-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.service-card-body { padding: 28px; }
.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-text { flex: 1; }
.contact-text small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-text span {
  font-size: 0.9rem;
  color: var(--silver);
  font-weight: 500;
}

/* ============================================================
   PAGE REMERCIEMENT
   ============================================================ */
.thank-you-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you-card {
  max-width: 580px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.thank-you-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: bounceIn 0.6s ease;
}
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.thank-you-card h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.thank-you-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ============================================================
   ALERTS & NOTIFICATIONS
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.alert-success {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
}
.alert-error {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  color: #f87171;
}
.alert-info {
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #04080f;
  border-top: 1px solid rgba(201,162,39,0.1);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 58px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px rgba(201,162,39,0.2));
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-brand .brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,162,39,0.15);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,162,39,0.12);
}

.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color 0.3s ease, padding-left 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom small {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-flags { display: flex; gap: 8px; font-size: 1.3rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold-light); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLETTE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2,1fr); }
  .process-steps   { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .hero-content    { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(7,14,31,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gold-border);
    padding: 20px 24px 28px;
    gap: 4px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-list.open  { display: flex; }
  .nav-list.active{ display: flex; }

  .nav-list > li > a { padding: 12px 14px; font-size: 0.85rem; }
  .nav-cta { text-align: center; margin: 8px 0 0; }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border: none;
    margin-top: 4px;
    padding: 4px 0 4px 12px;
    border-left: 2px solid var(--gold-border);
    border-radius: 0;
  }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open  .dropdown-menu { display: block; }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; padding: 40px 0 60px; }
  .hero-right   { display: none; }
  .hero-title   { font-size: clamp(2rem, 8vw, 3rem); }

  /* Sections */
  .section { padding: 64px 0; }

  /* Grids */
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .about-grid        { gap: 36px; }
  .contact-grid      { gap: 32px; }
  .form-row          { grid-template-columns: 1fr; }

  /* Progress */
  .step-label { display: none; }
  .progress-connector { min-width: 24px; }
}

/* ============================================================
   RESPONSIVE — PETIT MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-btns,
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .features-grid  { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: repeat(3,1fr); }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }

  .form-actions { flex-direction: column; align-items: center; }
  .form-actions .btn { width: 100%; }

  .section-title { font-size: 1.6rem; }
  .section { padding: 50px 0; }

  .thank-you-card { padding: 40px 24px; }
  .cta-banner { padding: 40px 24px; }

  .footer-social { justify-content: center; }
  .footer-brand { text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
