/* ============================================================
   DOORS INTERNATIONAL HOLDINGS — PREMIUM LANDING PAGE
   Elite Midnight & Gold Design System
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
/* Loaded via <link> in HTML head for better performance */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Palette */
  --midnight:      #080d1a;
  --midnight-deep: #050810;
  --navy:          #0d172a;
  --navy-mid:      #111d35;
  --navy-card:     #0f1929;
  --navy-border:   #1a2d4a;
  --gold:          #c9a84c;
  --gold-light:    #e2c46a;
  --gold-dark:     #a07830;
  --gold-muted:    rgba(201,168,76,0.15);
  --white:         #ffffff;
  --off-white:     #f0ede8;
  --text-light:    rgba(240,237,232,0.75);
  --text-muted:    rgba(240,237,232,0.45);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  90px;
  --section-pad-sm: 56px;

  /* Transitions */
  --ease-slow:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.15);
  --shadow-deep: 0 24px 60px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
}


/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--midnight);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

@media (pointer: fine) {
  a, button, [role="button"], .nav-link, .activity-card, .pillar, .invest-card {
    /* On garde le comportement par défaut ou on peut forcer le pointer */
    cursor: pointer;
  }
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-slow); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout Container ─────────────────────────────────────── */
.container {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ── Typography Helpers ───────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-label.gold { color: var(--gold); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 24px;
}
.section-heading.white { color: var(--white); }
.section-heading.centered { text-align: center; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 760px;
  margin-bottom: 24px;
}
.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.section-sub.centered { text-align: center; }

.gold-text { color: var(--gold); }
.text-light { color: var(--text-light); }

/* ── Section Backgrounds ──────────────────────────────────── */
section {
  padding: var(--section-pad) 0;
  position: relative;
}
.dark-section { background: var(--navy); }

/* Custom Section Spacing */
.about { padding: 80px 0 20px; }
.platform { padding: 20px 0 80px; }
.mission-strip,
.platform-intro,
.sectors,
.contact {
  padding: 80px 0;
}

.activities,
.partnerships,
.invest {
  padding: 70px 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-slow);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--midnight-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow: 0 12px 32px rgba(201,168,76,0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
}
.btn-primary:hover::after {
  left: 150%;
}
.btn-outline {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
}
.btn-ghost {
  color: var(--off-white);
  border: 1px solid rgba(240,237,232,0.25);
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(240,237,232,0.6);
  background: rgba(240,237,232,0.05);
}
.btn-outline-white {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.btn-full { width: 100%; justify-content: center; }

/* ── Styled Lists ─────────────────────────────────────────── */
.styled-list { padding-left: 4px; margin: 12px 0; }
.styled-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.styled-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.gold-bullets li::before { color: var(--gold); }

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.li-full { grid-column: span 2; }
.li-shifted { margin-left: 20px; }
.li-nowrap { white-space: nowrap; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(5,8,16,0.95) 0%, rgba(5,8,16,0.6) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-slow);
}
.navbar.scrolled {
  background: #050810; /* Solid deep color, no transparency */
  border-bottom: 2px solid var(--gold); /* Thicker gold border for clear separation */
  padding: 12px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.nav-container {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 48px;
  width: auto;
  transition: all 0.4s var(--ease-slow);
}
.logo-img:hover {
  transform: scale(1.05);
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.nav-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s var(--ease-slow);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 12px; right: 12px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
}
.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--midnight-deep);
}
.nav-link.nav-cta::after {
  display: none; /* No underline for button */
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Custom Language Switcher Styling ── */
.nav-lang {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px;
  border-radius: 20px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-slow);
}
.lang-btn:hover {
  color: var(--off-white);
}
.lang-btn.active {
  color: var(--gold);
}
.lang-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.65rem;
}
/* .lang-toggle removed — class unused in HTML */
.lang-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-select {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s var(--ease-slow);
}
.lang-select:hover,
.lang-select:focus {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}
.lang-select option {
  background: var(--navy);
  color: var(--off-white);
}
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display: none !important; }
body { top: 0px !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }
#google_translate_element { position: absolute; left: -9999px; top: -9999px; }
.goog-te-gadget { display: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5,8,16,0.15) 0%, rgba(5,8,16,0.65) 100%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding: 160px 40px 80px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 32px;
  white-space: nowrap;
  animation: fadeInUp 0.8s var(--ease-slow) both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (hover: hover) {
  .hero-headline:hover {
    transform: translateY(-2px) scale(1.01);
    transition: 0.4s ease;
  }
}
.reveal-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.15;
  padding-bottom: 8px; /* prevents clipping bottom of descenders */
  margin-bottom: -8px;
}
.reveal-line:nth-child(1) {
  font-size: 1em;
}
.reveal-line:nth-child(2) {
  font-size: 0.85em;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
html[lang="fr"] .reveal-line:nth-child(2) {
  font-size: 0.8em;
  letter-spacing: 0.01em;
}
.reveal-text {
  display: block;
  transform: translateY(120%);
  animation: heroTextSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-line:nth-child(1) .reveal-text { animation-delay: 0.1s; }
.reveal-line:nth-child(2) .reveal-text { animation-delay: 0.25s; }

@keyframes heroTextSlideUp {
  0% { transform: translateY(120%); opacity: 0; filter: blur(4px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}
.hero-headline i {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 600;
}
.desktop-br { display: block; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--off-white);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 20px;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  animation: fadeInUp 0.9s 0.2s var(--ease-slow) both;
}
.hero-sub-sm {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-inline: auto;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s 0.3s var(--ease-slow) both;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.9s 0.4s var(--ease-slow) both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1.2s 0.8s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip { background: var(--midnight); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mission-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.mission-image-block {
  position: relative;
}
.mission-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
}
.mission-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--midnight-deep);
  padding: 24px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-gold);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   PLATFORM INTRO
   ============================================================ */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.two-col-layout.reverse { direction: rtl; }
.two-col-layout.reverse > * { direction: ltr; }
.col-text p { margin-bottom: 16px; }
.platform-visual {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-deep);
}
.platform-visual.rounded { border-radius: 8px; }

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities { background: var(--midnight-deep); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.activity-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 36px 28px;
  transition: all 0.3s var(--ease-slow);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.activity-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.activity-card:hover::before { opacity: 1; }
.activity-icon { font-size: 2rem; margin-bottom: 16px; }
.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
}
.activity-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--midnight); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.about-image { position: relative; }
.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
}
.about-overlay-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(15, 25, 41, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: var(--shadow-deep);
  transition: all 0.4s var(--ease-slow);
}
.about-overlay-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.6);
  box-shadow: var(--shadow-gold);
}
.about-logo { height: 55px; }
.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-pillars { 
  margin-top: 48px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
}
.pillar {
  background: rgba(15, 25, 41, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-top: 3px solid var(--gold);
  padding: 32px 24px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-slow);
}
/* Removed redundant navbar declaration previously located here */
.pillar:hover {
  background: rgba(15, 25, 41, 0.6);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.pillar p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   OUR PLATFORM — SUBSIDIARIES
   ============================================================ */
.platform { background: var(--midnight-deep); }
.entities-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.entity-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.entity-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.15);
}
.entity-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(90deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--navy-border);
}
.entity-tag {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.entity-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 4px;
}
.entity-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.entity-body { padding: 28px 36px; }
.entity-body p { color: var(--text-light); margin-bottom: 20px; }
.entity-activities { display: flex; flex-wrap: wrap; gap: 8px; }
.activity-tag {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 2px;
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors { background: var(--navy); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.sector-block {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  height: 480px;
  transition: all 0.4s var(--ease-slow);
}
.sector-block:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(201, 168, 76, 0.35); }
.sector-img-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
}
.sector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-slow);
}
.sector-block:hover .sector-img { transform: scale(1.08); }
.sector-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,16,1) 0%, rgba(5,8,16,0.85) 45%, transparent 100%);
}
.sector-content { 
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: transparent; 
  padding: 40px 36px;
  z-index: 2;
}
.sector-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.sector-list li {
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 16px;
  position: relative;
}
.sector-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: -2px;
}
.sector-list li:last-child { border-bottom: none; }

/* ============================================================
   INVEST
   ============================================================ */
.invest { background: var(--midnight); }
.invest-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.invest-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s var(--ease-slow);
}
.invest-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.invest-card-img {
  height: 220px;
  overflow: hidden;
}
.invest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-slow);
}
.invest-card:hover .invest-card-img img { transform: scale(1.05); }
.invest-card-body { padding: 24px 28px; }
.invest-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.invest-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   PARTNERSHIPS
   ============================================================ */
.partnerships { background: var(--navy); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.partner-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}
.partner-item:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.partner-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s var(--ease-slow);
}
.partner-item:hover .partner-img { transform: scale(1.05); }
.partner-item p {
  padding: 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,8,16,0.8) 0%, rgba(13,23,42,0.65) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--midnight-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.contact-logo-wrap { margin-bottom: 32px; }
.contact-logo { height: 56px; }
.contact-block { margin-bottom: 32px; }
.contact-entity {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-sub-entity {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--off-white);
  transition: color 0.3s;
}
.contact-value:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(13,23,42,0.8);
  border: 1px solid var(--navy-border);
  border-radius: 3px;
  padding: 13px 16px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group option { background: var(--navy); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--midnight-deep); border-top: 1px solid var(--navy-border); }
.footer-top { padding: 80px 0; }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}
.footer-logo { height: 48px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}
.footer-nav-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-nav-col li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* Footer Legal Links */
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-slow);
}
.footer-legal a:hover {
  color: var(--gold);
}

/* ── Back to Top Button ─────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 152px; /* Au-dessus du bouton WhatsApp (80px + 50px + 22px gap) */
  right: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
  color: var(--midnight-deep);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

/* ── Floating WhatsApp Button ────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-slow), transform 0.6s var(--ease-slow);
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }
  .mission-grid, .two-col-layout, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .entities-stack {
    grid-template-columns: 1fr;
  }
  .two-col-layout.reverse { direction: ltr; }
  .mission-image-block { max-width: 600px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Floating buttons */
  .back-to-top {
    bottom: 90px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  /* Mobile Navigation */
  /* Mobile Navigation - Premium Overhaul */
  .nav-links {
    display: flex; /* Always flex but hidden via transform */
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8, 13, 26, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: center;
    padding: 40px 16px;
    gap: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    text-align: center;
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.35s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.4s; }
  .nav-links.open li:nth-child(8) { transition-delay: 0.45s; }

  .nav-link { padding: 12px 16px; }
  .nav-toggle { display: flex; }
  
  /* Mobile Contact CTA - plus elegant */
  .nav-link.nav-cta {
    margin-top: 12px;
    padding: 6px 12px;
    max-width: fit-content;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
  }
  .nav-link.nav-cta:hover {
    background: var(--gold);
    color: var(--midnight-deep);
    transform: translateY(-2px);
  }
  .nav-link.nav-cta::after { display: none; }

  /* Mobile nav links spacing */
  .nav-link {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  /* Mobile language switcher */
  .nav-lang {
    margin-left: 8px;
  }
  .lang-switcher {
    padding: 2px 6px;
  }
  .lang-btn {
    font-size: 0.6rem;
  }

  .hero-content { padding: 140px 24px 100px; }
  .hero-headline { font-size: 2.4rem; }
  .desktop-br { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .sectors-grid, .invest-cards { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .activities-grid { grid-template-columns: 1fr; }

  .entity-header { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .entity-body { padding: 20px 24px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .mission-stat-card { left: 0; bottom: -16px; }
  .about-overlay-card { right: 0; bottom: -16px; }
  .two-col-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .hero-content { padding: 120px 20px 80px; }
  .hero-headline { font-size: 2rem; }
  .section-heading { font-size: 1.8rem; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* ── Floating WhatsApp Button ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

@media (max-width: 768px) {
  /* Back-to-top stays higher so it doesn't overlap WhatsApp */
  .back-to-top {
    bottom: 136px; /* 32px (WA) + 44px (WA height) + 16px gap + 44px (BTT) → above WA */
    right: 16px;
    width: 40px;
    height: 40px;
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
  /* WhatsApp stays at bottom-right */
  .whatsapp-float {
    bottom: 32px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}
/* ── Theme Toggle Styles ───────────────────────────────────── */
.nav-theme {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--navy-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  transition: all 0.3s var(--ease-slow);
}

.theme-toggle:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: opacity 0.3s, transform 0.3s;
}

.sun-icon { opacity: 0; transform: scale(0.5); }
.moon-icon { opacity: 1; transform: scale(1); }

body.light-mode .sun-icon { opacity: 1; transform: scale(1); }
body.light-mode .moon-icon { opacity: 0; transform: scale(0.5); }
body.light-mode .theme-toggle { border-color: #e8e4db; }
/* ============================================================
   PREMIUM INTELLIGENT CURSOR
   ============================================================ */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.cursor-outline {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  opacity: 0.5; /* Increased default visibility */
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

/* Hover States */
body.cursor-hover .cursor-dot {
  opacity: 0.8;
}

body.cursor-hover .cursor-outline {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Animations */
@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%) skewX(-15deg);
  transition: 0.5s;
}

.btn-primary:hover::after {
  animation: shimmer 1s infinite;
}

/* ============================================================
   ACCESSIBILITY — PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Stop specific keyframe animations */
  .hero-bg-img { animation: none !important; transform: scale(1.05); }
  .hero-headline { animation: none !important; }
  .hero-badge { animation: none !important; opacity: 1; }
  .hero-sub, .hero-sub-sm, .hero-actions { animation: none !important; opacity: 1; }
  .reveal-text { animation: none !important; transform: none; opacity: 1; }
  .scroll-line { animation: none !important; }
  .whatsapp-float { animation: none !important; }
  .btn-primary::after { animation: none !important; }

  /* Ensure reveal elements are visible without animation */
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
