/* =====================================================
   ARSN NIGER — STYLESHEET PRINCIPAL
   Version: 1.0.0
   Couleurs: Orange #E05206 | Vert #0B8F3C | Blanc #FFFFFF
   ===================================================== */

/* ── 1. VARIABLES CSS ──────────────────────────────── */
:root {
  --orange:          #E05206;
  --orange-dark:     #b83f04;
  --orange-light:    #fef0ea;
  --orange-mid:      #f5a06b;
  --green:           #0B8F3C;
  --green-dark:      #076b2c;
  --green-light:     #e8f8ef;
  --green-mid:       #5ec98a;
  --white:           #ffffff;
  --gray-text:       #1e2a35;
  --gray-mid:        #5a6a77;
  --gray-light:      #f4f6f8;
  --gray-border:     #e2e8ed;
  --red-urgent:      #c0392b;
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:       0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg:       0 10px 40px rgba(0,0,0,0.14);
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --font-main:       'Barlow', 'Segoe UI', system-ui, sans-serif;
  --font-condensed:  'Barlow Condensed', 'Barlow', sans-serif;
  --transition:      0.25s ease;
  --container-max:   1320px;
  --nav-height:      66px;
  --topbar-height:   36px;
}

/* ── 2. RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* ── 3. LAYOUT UTILITAIRES ─────────────────────────── */
.container-wide {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  flex-wrap: wrap;
  gap: 16px;
}
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-tag-green {
  background: var(--green-light);
  color: var(--green-dark);
}
.section-title {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.mt-20 { margin-top: 20px; }
.hide-mobile { display: block; }

/* ── 4. BOUTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 13px; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(224,82,6,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,82,6,0.4);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(11,143,60,0.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 9px 20px;
}
.btn-green-outline:hover { background: var(--green); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: var(--white); color: var(--gray-text); }

.btn-urgence-hero {
  background: rgba(192,57,43,0.9);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  animation: urgencePulse 2s infinite;
}
@keyframes urgencePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

.btn-orange-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-orange-sm:hover { background: var(--orange-dark); }

/* ── 5. TOPBAR ─────────────────────────────────────── */
.arsn-topbar {
  background: var(--green);
  height: var(--topbar-height);
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-site-name {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-style: italic;
}
.topbar-site-name i {
  color: #ffd97d;
  font-size: 12px;
}
.topbar-link {
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.topbar-link i { font-size: 11px; }
.topbar-link:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 3px 10px;
}
.lang-divider { color: rgba(255,255,255,0.4); font-size: 11px; }
.lang-btn {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  transition: color var(--transition);
  font-family: var(--font-main);
}
.lang-btn.lang-active {
  color: #fff;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 2px 8px;
}
.lang-btn:hover { color: #fff; }

/* ── 6. HEADER / NAVBAR ────────────────────────────── */
.arsn-header {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.arsn-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 8px;
}

/* Logo */
.header-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: 16px; }
.header-logo-img {
  height: 62px;
  width: 62px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.header-logo-text { line-height: 1.15; }
.logo-name { display: block; font-family: var(--font-condensed); font-size: 20px; font-weight: 700; color: var(--gray-text); letter-spacing: 1px; }
.logo-country { display: block; font-size: 10.5px; font-weight: 600; color: var(--green); letter-spacing: 2.5px; text-transform: uppercase; }

/* Nav Menu */
.primary-nav { flex: 1; }
.nav-menu {
  display: flex;
  align-items: stretch;
  height: var(--nav-height);
  gap: 0;
}
.nav-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-text);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  height: 100%;
}
.nav-icon { font-size: 13px; color: var(--orange); }
.nav-arrow { font-size: 9px; color: var(--gray-mid); transition: transform var(--transition); }

.nav-menu > li:hover > a,
.nav-menu > li.menu-item-active > a {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu,
.mega-menu {
  display: none;
  position: absolute;
  top: calc(var(--nav-height) - 3px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 300;
  min-width: 240px;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-menu > li:hover .dropdown-menu,
.nav-menu > li:hover .mega-menu { display: block; }

.dropdown-menu ul { padding: 10px 0; }
.dropdown-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--gray-text);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu ul li a:hover {
  background: var(--orange-light);
  color: var(--orange);
  border-left-color: var(--orange);
  padding-left: 24px;
}
.dropdown-menu ul li a i { font-size: 13px; color: var(--orange); width: 18px; text-align: center; }
.link-urgent { color: var(--red-urgent) !important; }
.link-urgent i { color: var(--red-urgent) !important; }

/* Mega Menu */
.mega-menu { left: -120px; min-width: 680px; }
.mega-inner { display: flex; gap: 0; padding: 24px; }
.mega-col { flex: 1; padding: 0 16px; }
.mega-col + .mega-col { border-left: 1px solid var(--gray-border); }
.mega-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--orange-light);
}
.mega-menu-green .mega-col-title { color: var(--green); border-bottom-color: var(--green-light); }
.mega-col ul { display: flex; flex-direction: column; gap: 2px; }
.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--gray-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mega-col ul li a:hover { background: var(--orange-light); color: var(--orange); }
.mega-menu-green .mega-col ul li a:hover { background: var(--green-light); color: var(--green); }
.mega-col ul li a i { font-size: 12px; color: var(--orange); width: 16px; text-align: center; }
.mega-menu-green .mega-col ul li a i { color: var(--green); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

.btn-search {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid);
  font-size: 14px;
  transition: all var(--transition);
  background: transparent;
}
.btn-search:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.btn-urgence {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(224,82,6,0.35);
}
.btn-urgence:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-urgence i { font-size: 12px; }
.urgence-pulse {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-border);
  background: transparent;
}
.btn-hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.btn-hamburger.active span:nth-child(2) { opacity: 0; }
.btn-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Barre de recherche */
.search-bar {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 2px solid var(--orange);
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  animation: dropIn 0.2s ease;
}
.search-bar.open { display: block; }
.search-bar-inner { position: relative; }
.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  border: 1.5px solid var(--gray-border);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  transition: border-color var(--transition);
}
.search-form:focus-within { border-color: var(--orange); }
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--gray-text);
  outline: none;
  padding: 6px 0;
}
.search-input::placeholder { color: var(--gray-mid); }
.search-submit {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
  font-family: var(--font-main);
  border: none;
  cursor: pointer;
}
.search-submit:hover { background: var(--orange-dark); }
.search-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid);
  font-size: 14px;
  transition: all var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
}
.search-close:hover { color: var(--orange); background: var(--orange-light); }

/* Suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: 320px;
  overflow-y: auto;
  z-index: 500;
  display: none;
}
.search-suggestions.show { display: block; }
.suggestion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  transition: background var(--transition);
  cursor: pointer;
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: var(--orange-light); }
.suggestion-item i { color: var(--orange); margin-top: 2px; font-size: 13px; }
.suggestion-title { font-size: 13.5px; font-weight: 600; color: var(--gray-text); }
.suggestion-type { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
}
.mobile-overlay.active { display: block; }

/* ── 7. SECTION HERO ───────────────────────────────── */
.hero-section { position: relative; overflow: hidden; }
.hero-slider { position: relative; height: 520px; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  background-color: #1a2e20;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,64,30,0.88) 0%, rgba(224,82,6,0.4) 100%);
}
.hero-overlay-green {
  background: linear-gradient(135deg, rgba(11,143,60,0.9) 0%, rgba(7,107,44,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(224,82,6,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-condensed);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-title-accent { color: #ffd97d; }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contrôles slider */
.slider-controls {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 7px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.dot.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* Bande info Hero */
.hero-bottom-band {
  background: var(--green);
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
}
.hero-info-item i { color: #ffd97d; font-size: 14px; }
.hero-info-item strong { color: #fff; font-weight: 700; }
.hero-info-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
}

/* ── 8. STATS ──────────────────────────────────────── */
.stats-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.stat-orange::before { background: var(--orange); }
.stat-green::before { background: var(--green); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-orange .stat-icon { background: var(--orange-light); color: var(--orange); }
.stat-green .stat-icon { background: var(--green-light); color: var(--green); }
.stat-number {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-text);
}
.stat-orange .stat-number { color: var(--orange); }
.stat-green .stat-number { color: var(--green); }
.stat-label { font-size: 12.5px; color: var(--gray-mid); margin-top: 4px; font-weight: 500; }

.stat-highlight {
  background: var(--green);
  border-color: var(--green);
}
.stat-highlight .stat-icon { background: rgba(255,255,255,0.15); color: #fff; }
.stat-highlight .stat-number { color: #fff; }
.stat-highlight .stat-label { color: rgba(255,255,255,0.8); }
.stat-highlight::before { background: var(--green-dark); }

/* ── 9. ACCÈS RAPIDE ───────────────────────────────── */
.quickaccess-section {
  padding: 72px 0;
  background: var(--gray-light);
}
.quickaccess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.qa-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.qa-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.qa-orange::after { background: var(--orange-light); }
.qa-green::after  { background: var(--green-light); }
.qa-urgent::after { background: rgba(192,57,43,0.06); }
.qa-card:hover::after { opacity: 1; }
.qa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.qa-card:hover .qa-arrow { transform: translateX(4px); }

.qa-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.qa-orange .qa-icon { background: var(--orange-light); color: var(--orange); }
.qa-green .qa-icon  { background: var(--green-light); color: var(--green); }
.qa-urgent .qa-icon { background: rgba(192,57,43,0.1); color: var(--red-urgent); }
.qa-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 5px;
  position: relative; z-index: 1;
}
.qa-desc {
  font-size: 12.5px;
  color: var(--gray-mid);
  line-height: 1.5;
  flex: 1;
  position: relative; z-index: 1;
}
.qa-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-size: 13px;
  color: var(--gray-mid);
  transition: all var(--transition);
  z-index: 1;
}
.qa-orange:hover .qa-arrow { color: var(--orange); }
.qa-green:hover .qa-arrow  { color: var(--green); }
.qa-urgent:hover .qa-arrow { color: var(--red-urgent); }

/* ── 10. ACTUALITÉS ────────────────────────────────── */
.news-section { padding: 80px 0; background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-featured { border-top: 3px solid var(--orange); }

.news-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--gray-border);
}
.news-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.news-card-body { padding: 20px; }
.news-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 10px;
}
.news-meta i { color: var(--orange); }
.news-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-title a { color: var(--gray-text); }
.news-title a:hover { color: var(--orange); }
.news-excerpt { font-size: 13.5px; color: var(--gray-mid); margin-bottom: 14px; line-height: 1.6; }
.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  transition: gap var(--transition);
}
.news-readmore:hover { gap: 10px; }

/* Placeholder contenu vide */
.no-content-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 24px;
  color: var(--gray-mid);
}
.no-content-placeholder i { font-size: 3rem; margin-bottom: 16px; display: block; }

/* Events strip */
.events-strip {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(11,143,60,0.15);
}
.events-strip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.events-list { display: flex; flex-direction: column; gap: 12px; }
.event-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.event-item:hover { border-color: var(--green); transform: translateX(4px); }
.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--green);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  min-width: 50px;
}
.event-day { font-size: 18px; font-weight: 700; line-height: 1; }
.event-month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.event-info { flex: 1; }
.event-info h4 { font-size: 13.5px; font-weight: 700; color: var(--gray-text); margin-bottom: 3px; }
.event-info p { font-size: 12px; color: var(--gray-mid); }
.event-item > i { color: var(--gray-mid); font-size: 13px; }

/* ── 11. RESSOURCES ────────────────────────────────── */
.resources-section {
  padding: 80px 0;
  background: var(--gray-light);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.resource-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.resource-icon-orange { background: var(--orange-light); color: var(--orange); }
.resource-icon-green  { background: var(--green-light);  color: var(--green); }
.resource-body h4 { font-size: 15px; font-weight: 700; color: var(--gray-text); margin-bottom: 6px; }
.resource-body p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }
.resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
  margin-top: auto;
}
.resource-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--orange);
  font-weight: 600;
}
.resource-footer > i { color: var(--gray-mid); font-size: 13px; transition: color var(--transition); }
.resource-card:hover .resource-footer > i { color: var(--orange); }

/* ── 12. PARTENAIRES ───────────────────────────────── */
.partners-section { padding: 72px 0; background: var(--white); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  background: var(--white);
  transition: all var(--transition);
  text-align: center;
  min-height: 90px;
}
.partner-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.partner-abbr {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.partner-card:hover .partner-abbr { color: var(--green-dark); }
.partner-full { font-size: 11px; color: var(--gray-mid); line-height: 1.4; }

/* ── 13. BANDEAU URGENCE ───────────────────────────── */
.alert-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 28px 0;
}
.alert-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.alert-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  animation: alertPulse 2s infinite;
}
@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
.alert-content { flex: 1; }
.alert-content strong { display: block; font-size: 16px; color: #fff; margin-bottom: 4px; font-weight: 700; }
.alert-content span { font-size: 13.5px; color: rgba(255,255,255,0.85); }
.alert-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #fff;
  color: var(--orange);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-call:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-declare {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-declare:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ── 14. FOOTER ────────────────────────────────────── */
.arsn-footer {
  background: #0a2918;
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: contain;
}
.footer-name { display: block; font-size: 18px; font-weight: 700; color: #fff; font-family: var(--font-condensed); }
.footer-country { display: block; font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; }
.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer-contact-info i { color: var(--orange); width: 16px; }
.footer-armoirie {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.armoirie-footer {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
}
.footer-armoirie span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding: 16px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.footer-bottom-left a { color: rgba(255,255,255,0.5); }
.footer-bottom-left a:hover { color: rgba(255,255,255,0.85); }
.footer-sep { color: rgba(255,255,255,0.2); }
.footer-urgence-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}
.footer-urgence-badge i { color: var(--orange); }
.footer-urgence-badge a { color: #fff; font-weight: 700; }

/* ── 15. PAGES INTÉRIEURES ─────────────────────────── */
.inner-page { padding: 0 0 80px; }
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 40px 0 32px;
  margin-bottom: 40px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep i { font-size: 10px; color: rgba(255,255,255,0.4); }
[aria-current="page"] { color: #fff; font-weight: 600; }
.page-hero-title {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.page-content { min-width: 0; }
.page-article-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
}
.page-article-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 16px; color: var(--gray-text); }
.page-article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px; color: var(--green-dark); }
.page-article-content p  { margin-bottom: 16px; }
.page-article-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.page-article-content ul li { margin-bottom: 6px; }
.page-article-content a  { color: var(--orange); }
.page-article-content a:hover { text-decoration: underline; }
.page-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.page-featured-img img { width: 100%; }

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}
.widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-border);
}
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-text);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sidebar-links a:hover { background: var(--orange-light); color: var(--orange); }
.sidebar-links i { color: var(--orange); font-size: 13px; width: 16px; }
.sidebar-urgence { border-top: 3px solid var(--orange); }
.sidebar-urgence .widget-title { color: var(--red-urgent); }
.sidebar-urgence p { font-size: 13px; color: var(--gray-mid); margin-bottom: 10px; }

/* Posts grid */
.posts-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card-img { overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 20px 20px 20px 0; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray-mid); margin-bottom: 8px; }
.post-meta i { color: var(--orange); }
.post-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.post-card-title a { color: var(--gray-text); }
.post-card-title a:hover { color: var(--orange); }
.post-card-body p { font-size: 13.5px; color: var(--gray-mid); margin-bottom: 14px; flex: 1; }

/* Pagination */
.arsn-pagination { display: flex; justify-content: center; margin: 40px 0; }
.arsn-pagination ul { display: flex; gap: 8px; }
.arsn-pagination li a,
.arsn-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
  font-size: 14px;
  color: var(--gray-text);
  transition: all var(--transition);
}
.arsn-pagination li .current,
.arsn-pagination li a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* No results */
.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-mid);
}
.no-results i { font-size: 3.5rem; margin-bottom: 20px; display: block; color: var(--gray-border); }
.no-results h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--gray-text); }
.no-results p { margin-bottom: 24px; }

/* ── 15b. SLOGAN BAND ──────────────────────────────── */
.slogan-band {
  background: var(--green);
  padding: 14px 0;
  margin: 0; /* collé aux slides */
}
.slogan-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.slogan-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.slogan-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.slogan-text span {
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  margin-left: 6px;
}
.slogan-contacts {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.slogan-contacts span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.slogan-contacts i { color: #ffd97d; font-size: 12px; }

/* ── 15c. PRÉSENTATION ─────────────────────────────── */
.presentation-section {
  padding: 60px 0;
  background: var(--white);
}
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.presentation-text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.presentation-text strong { color: var(--gray-text); }
.presentation-main .section-title { text-align: left; }
.presentation-main .section-tag { margin-bottom: 10px; }
.presentation-main .btn { margin-top: 8px; }

/* Alertes box */
.alerts-box {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.alerts-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--orange-light);
  border-bottom: 1px solid var(--gray-border);
}
.alerts-header i { color: var(--orange); font-size: 16px; }
.alerts-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-text);
}
.alerts-list { padding: 8px 0; }
.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-border);
  transition: background var(--transition);
}
.alert-item:last-child { border-bottom: none; }
.alert-item:hover { background: var(--orange-light); }
.alert-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.alert-title {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-text);
  line-height: 1.4;
  margin-bottom: 3px;
}
.alert-date {
  font-size: 11.5px;
  color: var(--gray-mid);
}
.alerts-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition);
}
.alerts-more:hover { background: var(--green); color: #fff; }

/* ── 15d. DOMAINES (3 cartes TDR) ──────────────────── */
.domains-section {
  padding: 72px 0;
  background: var(--gray-light);
}
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.domain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.domain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.domain-orange {
  background: linear-gradient(145deg, #fff5f0 0%, #fff 100%);
  border-color: rgba(224,82,6,0.15);
}
.domain-green {
  background: linear-gradient(145deg, #f0faf4 0%, #fff 100%);
  border-color: rgba(11,143,60,0.15);
}

.domain-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.domain-orange .domain-icon { background: var(--orange-light); color: var(--orange); }
.domain-green  .domain-icon { background: var(--green-light);  color: var(--green); }

.domain-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  position: relative; z-index: 1;
}
.domain-orange .domain-body h3 { color: var(--orange-dark); }
.domain-green  .domain-body h3 { color: var(--green-dark); }

.domain-body p {
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.domain-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  position: relative; z-index: 1;
  transition: gap var(--transition);
}
.domain-orange .domain-link { color: var(--orange); }
.domain-green  .domain-link { color: var(--green); }
.domain-card:hover .domain-link { gap: 12px; }

.domain-bg-icon {
  position: absolute;
  bottom: -10px; right: -10px;
  font-size: 100px;
  opacity: 0.05;
  transition: opacity var(--transition);
}
.domain-card:hover .domain-bg-icon { opacity: 0.08; }

.domains-all-link {
  text-align: center;
  padding-top: 16px;
}

/* ── 16. BACK TO TOP ───────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(224,82,6,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── 17. SLOGAN BAND — juste après le slider ──────── */
.hero-slogan-band {
  background: var(--green);
  padding: 14px 0;
  border-top: 3px solid var(--orange);
}
.slogan-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.slogan-logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  object-fit: contain;
  flex-shrink: 0;
}
.slogan-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.slogan-arsn {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.slogan-phrase {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-condensed);
  letter-spacing: 0.3px;
}
.slogan-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.slogan-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: opacity var(--transition);
}
.slogan-tel i { color: #ffd97d; }
.slogan-tel:hover { opacity: 0.85; }
.slogan-tel-label { font-size: 11px; color: rgba(255,255,255,0.65); }

/* Hero slide title (distinct du hero-title accueil) */
.hero-slide-title {
  font-family: var(--font-condensed);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-slide-title span { color: #ffd97d; }
.hero-slide-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ── 18. ALERTES SECTION ───────────────────────────── */
.alerts-section {
  background: #fff8e1;
  border-top: 3px solid #f0a500;
  border-bottom: 1px solid #ffe082;
  padding: 0;
}
.alerts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.alert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(240,165,0,0.2);
  font-size: 13.5px;
  color: var(--gray-text);
  transition: all var(--transition);
}
.alert-item:last-child { border-bottom: none; }
.alert-item:hover { color: var(--orange); }
.alert-item-icon { color: #e65100; font-size: 16px; flex-shrink: 0; }
.alert-item-text { flex: 1; font-weight: 600; }
.alert-item-date { font-size: 12px; color: var(--gray-mid); flex-shrink: 0; }
.alert-item-arrow { font-size: 12px; color: var(--gray-mid); flex-shrink: 0; transition: transform var(--transition); }
.alert-item:hover .alert-item-arrow { transform: translateX(4px); color: var(--orange); }

/* ── 19. PRÉSENTATION ARSN ─────────────────────────── */
.presentation-section {
  padding: 72px 0;
  background: var(--white);
}
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.presentation-text .section-title { text-align: left; margin-bottom: 16px; }
.presentation-text .section-tag { margin-bottom: 10px; }
.presentation-text p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.presentation-text strong { color: var(--gray-text); font-weight: 700; }
.presentation-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.presentation-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  background: var(--gray-light);
  text-align: center;
  transition: all var(--transition);
}
.mini-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mini-stat-num {
  font-family: var(--font-condensed);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.mini-stat-label { font-size: 12px; color: var(--gray-mid); font-weight: 500; line-height: 1.3; text-align: center; }
.mini-stat-highlight .mini-stat-num { color: var(--green); }
.mini-stat-zero {
  background: var(--green);
  border-color: var(--green);
}
.mini-stat-zero .mini-stat-num { color: #fff; font-size: 3rem; }
.mini-stat-zero .mini-stat-label { color: rgba(255,255,255,0.8); }

/* ── 20. SECTION 3 DOMAINES (TRIO) ─────────────────── */
.domains-section {
  padding: 72px 0;
  background: var(--gray-light);
}
.domains-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.domain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.domain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transition: height var(--transition);
}
.domain-orange::before { background: var(--orange); }
.domain-green::before  { background: var(--green); }
.domain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.domain-card:hover::before { height: 5px; }

.domain-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.domain-orange .domain-icon-wrap { background: var(--orange-light); color: var(--orange); }
.domain-green .domain-icon-wrap  { background: var(--green-light);  color: var(--green);  }

.domain-title {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-text);
  line-height: 1.25;
}
.domain-desc {
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
}
.domain-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-border);
}
.domain-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-text);
  font-weight: 500;
}
.domain-orange .domain-list li i { color: var(--orange); font-size: 11px; }
.domain-green  .domain-list li i { color: var(--green);  font-size: 11px; }
.domain-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  transition: gap var(--transition);
}
.domain-orange .domain-link { color: var(--orange); }
.domain-green  .domain-link { color: var(--green);  }
.domain-card:hover .domain-link { gap: 10px; }
.domains-all-link { text-align: center; margin-top: 8px; }

/* ── 17. RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega-menu { left: -60px; min-width: 580px; }
  .presentation-grid { grid-template-columns: 1fr; gap: 40px; }
  .domains-trio { grid-template-columns: 1fr 1fr; }
  .presentation-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .primary-nav,
  .mega-menu,
  .dropdown-menu { display: none; }
  .btn-hamburger { display: flex; }
  .hero-title { font-size: 2rem; }
  .page-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  :root { --nav-height: 56px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 1.6rem; }
  .hero-slider { height: 420px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quickaccess-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .topbar-left .topbar-link:not(:first-child) { display: none; }
  .hero-bottom-inner { gap: 16px; }
  .hide-mobile { display: none; }
  .alert-inner { flex-direction: column; text-align: center; }
  .alert-action { justify-content: center; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }
  .hero-info-sep { display: none; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img { height: 180px; }
  .post-card-body { padding: 16px; }
  .slider-controls { bottom: 60px; right: 16px; }
  .container-wide { padding: 0 16px; }
}

@media (max-width: 400px) {
  .quickaccess-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
}

/* ── 18. PAGE HERO VARIANTES ───────────────────────── */
.page-hero-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.page-hero-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.page-hero-urgent {
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
}
.page-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-top: 10px;
  max-width: 600px;
  line-height: 1.6;
}

/* ── 19. SOUS-NAVIGATION INTERNE ───────────────────── */
.inner-subnav {
  background: var(--white);
  border-bottom: 2px solid var(--gray-border);
  position: sticky;
  top: var(--nav-height);
  z-index: 80;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.subnav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  padding: 0 4px;
  scrollbar-width: none;
}
.subnav-links::-webkit-scrollbar { display: none; }
.subnav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.subnav-link i { font-size: 12px; }
.subnav-link:hover { color: var(--orange); border-bottom-color: var(--orange); }
.subnav-link.active { color: var(--orange); border-bottom-color: var(--orange); background: var(--orange-light); }

/* ── 20. FILTRES ARCHIVE ───────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.filter-count {
  background: rgba(0,0,0,0.1);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
}
.filter-btn.active .filter-count { background: rgba(255,255,255,0.25); }

/* Archive layout */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.archive-main { min-width: 0; }
.archive-sidebar { position: sticky; top: calc(var(--nav-height) + 60px); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.archive-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all var(--transition);
}
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.archive-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}
.archive-card-img a img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.archive-card:hover .archive-card-img img { transform: scale(1.05); }
.archive-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-size: 3rem;
  color: var(--gray-border);
}
.archive-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.archive-card-body { padding: 18px; }
.archive-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-mid); margin-bottom: 8px; }
.archive-meta i { color: var(--orange); }
.archive-card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.archive-card-title a { color: var(--gray-text); }
.archive-card-title a:hover { color: var(--orange); }
.archive-card-excerpt { font-size: 13px; color: var(--gray-mid); margin-bottom: 14px; line-height: 1.6; }
.archive-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}
.archive-readmore:hover { gap: 10px; }

/* Recent posts sidebar */
.recent-posts-list { display: flex; flex-direction: column; gap: 12px; }
.recent-post-item a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: background var(--transition);
  padding: 6px;
  border-radius: var(--radius-sm);
}
.recent-post-item a:hover { background: var(--orange-light); }
.recent-thumb { width: 60px; height: 50px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.recent-thumb img { width:100%; height:100%; object-fit:cover; }
.recent-info { display: flex; flex-direction: column; gap: 3px; }
.recent-title { font-size: 13px; font-weight: 600; color: var(--gray-text); line-height: 1.4; }
.recent-date { font-size: 11px; color: var(--gray-mid); }

/* ── 21. PAGE 404 ───────────────────────────────────── */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.error-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.error-visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.error-code {
  font-family: var(--font-condensed);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gray-light);
  position: relative;
  z-index: 0;
  line-height: 1;
  letter-spacing: -4px;
}
.atom-404 {
  position: absolute;
  z-index: 1;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.nucleus {
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  box-shadow: 0 0 16px rgba(224,82,6,0.6);
}
.orbit {
  position: absolute;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  opacity: 0.6;
}
.orbit-1 { width: 60px; height: 30px; transform: rotate(0deg); animation: spin1 2s linear infinite; }
.orbit-2 { width: 70px; height: 35px; transform: rotate(60deg); animation: spin2 2.5s linear infinite; }
.orbit-3 { width: 80px; height: 25px; transform: rotate(120deg); animation: spin3 3s linear infinite; }
@keyframes spin1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin2 { from { transform: rotate(60deg); } to { transform: rotate(420deg); } }
@keyframes spin3 { from { transform: rotate(120deg); } to { transform: rotate(480deg); } }
.electron {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: -3.5px;
  left: 50%;
  transform: translateX(-50%);
}

.error-title { font-family: var(--font-condensed); font-size: 2rem; font-weight: 700; margin-bottom: 16px; color: var(--gray-text); }
.error-desc { font-size: 15px; color: var(--gray-mid); margin-bottom: 32px; line-height: 1.7; }
.error-search { margin-bottom: 32px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-popular h3 { font-size: 14px; font-weight: 700; color: var(--gray-text); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.popular-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.popular-grid a {
  padding: 7px 14px;
  background: var(--gray-light);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gray-text);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.popular-grid a:hover { background: var(--orange-light); color: var(--orange); border-color: var(--orange); }

/* ── 22. BOÎTES INFO ───────────────────────────────── */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}
.info-box i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.info-box-orange { background: var(--orange-light); border-left: 4px solid var(--orange); color: var(--gray-text); }
.info-box-orange i { color: var(--orange); }
.info-box-green { background: var(--green-light); border-left: 4px solid var(--green); color: var(--gray-text); }
.info-box-green i { color: var(--green); }
.info-box-urgent { background: rgba(192,57,43,0.07); border-left: 4px solid var(--red-urgent); color: var(--gray-text); }
.info-box-urgent i { color: var(--red-urgent); }

/* ── 23. CONTENU SECTIONS ──────────────────────────── */
.content-section { margin-bottom: 48px; }
.content-section-title {
  font-family: var(--font-condensed);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-border);
}
.title-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mission/Vision/Valeurs */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mvv-card {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  background: var(--white);
  transition: all var(--transition);
}
.mvv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mvv-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.mvv-orange .mvv-icon { background: var(--orange-light); color: var(--orange); }
.mvv-green  .mvv-icon { background: var(--green-light);  color: var(--green); }
.mvv-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--gray-text); }
.mvv-card p  { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }
.values-list { list-style: none; padding: 0; }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-mid);
  margin-bottom: 7px;
  line-height: 1.5;
}
.values-list i { color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: 12px; }

/* Missions grid */
.missions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mission-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.mission-item:hover { border-color: var(--orange); background: var(--orange-light); }
.mission-num {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.mission-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--gray-text); }
.mission-text p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* ── 24. TIMELINE ──────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--green));
}
.tl-item {
  position: relative;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
}
.tl-major::before { background: var(--orange); width: 16px; height: 16px; left: -32px; box-shadow: 0 0 0 4px rgba(224,82,6,0.2); }
.tl-year {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  padding-top: 4px;
}
.tl-content {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: box-shadow var(--transition);
}
.tl-content:hover { box-shadow: var(--shadow-md); }
.tl-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--gray-text); }
.tl-content p  { font-size: 13.5px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 10px; }
.tl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.tl-badge-orange { background: var(--orange-light); color: var(--orange); }
.tl-badge-green  { background: var(--green-light);  color: var(--green-dark); }
.tl-badge-gray   { background: var(--gray-light);   color: var(--gray-mid); }

/* ── 25. THÉMATIQUES — SUBS GRID ───────────────────── */
.subs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sub-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-text);
  transition: all var(--transition);
  cursor: pointer;
}
.sub-card:hover { transform: translateX(4px); }
.sub-card i:first-child { font-size: 16px; flex-shrink: 0; }
.sub-arrow { margin-left: auto; font-size: 12px; color: var(--gray-mid); transition: transform var(--transition); }
.sub-card:hover .sub-arrow { transform: translateX(4px); }
.sub-card-orange i:first-child { color: var(--orange); }
.sub-card-orange:hover { border-color: var(--orange); background: var(--orange-light); }
.sub-card-green  i:first-child { color: var(--green); }
.sub-card-green:hover  { border-color: var(--green);  background: var(--green-light); }
.sub-card-urgent i:first-child { color: var(--red-urgent); }
.sub-card-urgent:hover { border-color: var(--red-urgent); background: rgba(192,57,43,0.06); }
.active-link { color: var(--orange) !important; font-weight: 700; }

/* ── 26. SERVICES — CARTES PRINCIPALES ─────────────── */
.services-main-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.service-main-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
}
.service-main-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.smc-header { display: flex; align-items: center; justify-content: space-between; }
.smc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.smc-number { font-family: var(--font-condensed); font-size: 2.5rem; font-weight: 700; opacity: 0.12; color: var(--gray-text); line-height: 1; }
.service-main-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-text); }
.service-main-card p  { font-size: 13.5px; color: var(--gray-mid); line-height: 1.6; flex: 1; }
.smc-steps { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.smc-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-mid);
}
.smc-steps i { font-size: 11px; flex-shrink: 0; }
.smc-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
  transition: gap var(--transition);
}
.service-card-orange:hover .smc-cta { color: var(--orange); }
.service-card-green:hover  .smc-cta { color: var(--green); }
.service-card-urgent:hover .smc-cta { color: var(--red-urgent); }
.service-card-orange .smc-icon { background: var(--orange-light); color: var(--orange); }
.service-card-green .smc-icon  { background: var(--green-light);  color: var(--green); }
.service-card-urgent .smc-icon { background: rgba(192,57,43,0.1); color: var(--red-urgent); }
.service-card-orange:hover { border-color: var(--orange); background: #fffaf8; }
.service-card-green:hover  { border-color: var(--green);  background: #f5fbf7; }
.service-card-urgent:hover { border-color: var(--red-urgent); background: #fdf5f4; }
.service-card-orange .smc-steps i { color: var(--orange); }
.service-card-green  .smc-steps i { color: var(--green); }
.service-card-urgent .smc-steps i { color: var(--red-urgent); }

/* Public cible */
.target-section { margin-top: 48px; }
.target-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.target-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}
.target-card:hover { border-color: var(--green); background: var(--green-light); transform: translateY(-3px); }
.target-card > i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.target-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--gray-text); }
.target-card p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* ── 27. RESPONSIVE COMPLÉMENTAIRE ─────────────────── */
@media (max-width: 1100px) {
  .archive-layout { grid-template-columns: 1fr 260px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .archive-layout { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-sidebar { position: static; }
  .missions-grid { grid-template-columns: 1fr; }
  .services-main-grid { grid-template-columns: 1fr; }
  .subs-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 50px 1fr; gap: 12px; }
}
@media (max-width: 640px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .subnav-links { padding: 0; }
  .subnav-link { padding: 12px 10px; font-size: 12px; }
  .error-code { font-size: 5rem; }
  .timeline { padding-left: 28px; }
  .tl-item { grid-template-columns: 44px 1fr; }
}

/* ── RESPONSIVE ADDITIONS ──────────────────────────── */
/* Slogan band */
@media (max-width: 768px) {
  .slogan-contacts { display: none; }
  .slogan-inner { justify-content: flex-start; }
}
/* Présentation / Alertes */
@media (max-width: 900px) {
  .presentation-grid { grid-template-columns: 1fr; }
  .alerts-column { max-width: 100%; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .domains-grid { grid-template-columns: 1fr; }
  .slogan-text { font-size: 13px; }
}

/* ── 18. MENU MOBILE (nav-mobile-open) ─────────────── */
@media (max-width: 900px) {
  .primary-nav.nav-mobile-open {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #fff !important;
    z-index: 150 !important;
    overflow-y: auto !important;
    padding: 80px 24px 40px !important;
  }
  .primary-nav.nav-mobile-open .nav-menu {
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .primary-nav.nav-mobile-open .nav-menu > li {
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--gray-border);
  }
  .primary-nav.nav-mobile-open .nav-menu > li > a {
    height: auto;
    padding: 14px 8px;
    font-size: 15px;
    border-bottom: none;
    justify-content: space-between;
  }
  .primary-nav.nav-mobile-open .nav-menu > li.dropdown-open > a {
    color: var(--orange);
  }
  .primary-nav.nav-mobile-open .dropdown-menu,
  .primary-nav.nav-mobile-open .mega-menu {
    position: static !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: var(--gray-light) !important;
    min-width: 0 !important;
    animation: none !important;
  }
  .primary-nav.nav-mobile-open .mega-inner {
    flex-direction: column;
    padding: 12px 16px;
    gap: 16px;
  }
  .primary-nav.nav-mobile-open .mega-col {
    border-left: none;
    padding: 0;
  }
  .primary-nav.nav-mobile-open .mega-col + .mega-col {
    border-left: none;
    border-top: 1px solid var(--gray-border);
    padding-top: 12px;
  }
  .primary-nav.nav-mobile-open .dropdown-menu ul li a,
  .primary-nav.nav-mobile-open .mega-col ul li a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }
  .mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--gray-text);
    cursor: pointer;
    z-index: 160;
  }
}

/* ── 19. PAGE HERO VARIANTS ────────────────────────── */
.page-hero-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.page-hero-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.page-hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.page-hero-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.page-hero-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  max-width: 600px;
  line-height: 1.6;
}

/* ── 20. RESSOURCES PAGE ───────────────────────────── */
.resources-categories { display: flex; flex-direction: column; gap: 40px; }

.resource-category {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.resource-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: #fff;
}
.resource-cat-orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.resource-cat-green  { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.resource-cat-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.resource-cat-header h2 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.resource-cat-header p  { font-size: 13px; opacity: 0.85; }
.resource-cat-body { padding: 24px; }

/* Documents légaux */
.legal-doc-group { margin-bottom: 28px; }
.legal-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.doc-item:hover { border-color: var(--orange); background: var(--orange-light); }
.doc-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.doc-icon-pdf  { background: rgba(220,53,69,0.1); color: #dc3545; }
.doc-icon-word { background: rgba(11,143,60,0.1); color: var(--green); }
.doc-info { flex: 1; min-width: 0; }
.doc-title { display: block; font-size: 14px; font-weight: 700; color: var(--gray-text); }
.doc-desc  { display: block; font-size: 12.5px; color: var(--gray-mid); margin-top: 2px; }
.doc-actions { display: flex; gap: 8px; flex-shrink: 0; }
.doc-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-text);
  transition: all var(--transition);
  white-space: nowrap;
}
.doc-btn:hover { border-color: var(--orange); color: var(--orange); }
.doc-btn-dl {
  padding: 7px 10px;
  background: var(--orange-light);
  border-color: transparent;
  color: var(--orange);
}
.doc-btn-dl:hover { background: var(--orange); color: #fff; }

/* Guides grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.guide-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.guide-card-orange { border-top: 3px solid var(--orange); }
.guide-card-green  { border-top: 3px solid var(--green); }
.guide-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.guide-card-header i { font-size: 22px; }
.guide-card-orange .guide-card-header i { color: var(--orange); }
.guide-card-green  .guide-card-header i { color: var(--green); }
.guide-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.guide-card-orange .guide-tag { background: var(--orange-light); color: var(--orange); }
.guide-card-green  .guide-tag { background: var(--green-light);  color: var(--green); }
.guide-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.guide-card p  { font-size: 12.5px; color: var(--gray-mid); margin-bottom: 14px; line-height: 1.5; }
.guide-dl {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  transition: gap var(--transition);
}
.guide-card-orange .guide-dl { color: var(--orange); }
.guide-card-green  .guide-dl { color: var(--green); }
.guide-dl:hover { gap: 10px; }

/* Rapports */
.reports-list { display: flex; flex-direction: column; gap: 16px; }
.report-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.report-item:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.report-year {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 70px;
  text-align: center;
}
.report-cover {
  flex-shrink: 0;
}
.report-cover-placeholder {
  width: 70px; height: 90px;
  background: linear-gradient(135deg, var(--orange-light), var(--green-light));
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  border: 1px solid var(--gray-border);
}
.report-cover-placeholder i { font-size: 20px; color: var(--orange); }
.report-cover-placeholder span { font-size: 9px; color: var(--gray-mid); font-weight: 600; }
.report-info { flex: 1; }
.report-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.report-info p { font-size: 13px; color: var(--gray-mid); margin-bottom: 12px; }
.report-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Open Data tables */
.stats-opendata-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.opendata-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.opendata-card h4 {
  font-size: 14px; font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  color: var(--green-dark);
}
.opendata-card h4 i { color: var(--green); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 14px;
}
.data-table th {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 8px 10px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
}
.data-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-text);
}
.data-table tr:last-child td { border-bottom: none; background: var(--gray-light); }
.data-dl {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--green);
  padding: 6px 12px;
  background: var(--green-light);
  border-radius: 999px;
  transition: all var(--transition);
}
.data-dl:hover { background: var(--green); color: #fff; }

/* ── 21. CONTACT PAGE ──────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-section-title {
  font-family: var(--font-condensed);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  color: var(--gray-text);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { flex-direction: row; gap: 16px; }
.form-row-2 .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--gray-text); }
.required { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--gray-text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,82,6,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.file-input-wrap { position: relative; }
.file-input-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-input-display {
  padding: 14px 18px;
  border: 2px dashed var(--gray-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray-mid);
  transition: border-color var(--transition);
  cursor: pointer;
}
.file-input-display:hover { border-color: var(--orange); color: var(--orange); }
.file-input-display i { font-size: 16px; color: var(--orange); }
.form-row-submit {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.form-required-note { font-size: 12.5px; color: var(--gray-mid); }
.form-feedback {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  display: none;
}
.form-feedback.success { background: var(--green-light); color: var(--green-dark); display: block; }
.form-feedback.error   { background: rgba(192,57,43,0.1); color: var(--red-urgent); display: block; }

/* Contact info */
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  background: var(--white);
}
.contact-info-card-orange { border-left: 4px solid var(--orange); }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--orange-light);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-green { background: var(--green-light); color: var(--green); }
.ci-body h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.5px; }
.ci-body p  { font-size: 14px; color: var(--gray-text); }
.ci-note    { font-size: 12px; color: var(--gray-mid); margin-top: 3px; display: block; }

.contact-map-placeholder {
  background: var(--gray-light);
  border: 2px dashed var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.map-inner i { font-size: 2.5rem; color: var(--green); margin-bottom: 12px; display: block; }
.map-inner h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.map-inner p  { font-size: 13px; color: var(--gray-mid); }

.contact-hours {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(11,143,60,0.15);
}
.contact-hours h4 {
  font-size: 14px; font-weight: 700;
  margin-bottom: 14px; color: var(--green-dark);
  display: flex; align-items: center; gap: 8px;
}
.hours-table { width: 100%; font-size: 13.5px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid rgba(11,143,60,0.15); }
.hours-table td:first-child { color: var(--gray-mid); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-urgence td { padding-top: 10px; }

/* ── 22. ARCHIVE PAGE ──────────────────────────────── */
.archive-layout { display: flex; flex-direction: column; gap: 32px; }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 16px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
}
.filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn-active { background: var(--orange); color: #fff; border-color: var(--orange); }
.filter-count {
  background: rgba(255,255,255,0.25);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.archive-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-border); overflow: hidden; transition: all var(--transition); }
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.archive-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--gray-light); }
.archive-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.archive-card:hover .archive-card-img img { transform: scale(1.05); }
.archive-card-body { padding: 18px; }

/* ── 23. RECHERCHE RÉSULTATS ───────────────────────── */
.search-page-form { margin-bottom: 8px; }
.search-results-list { display: flex; flex-direction: column; gap: 20px; }
.search-result-item {
  padding: 20px 24px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.search-result-item:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.search-result-type {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  background: var(--orange-light); color: var(--orange);
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.search-result-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.search-result-title a { color: var(--gray-text); }
.search-result-title a:hover { color: var(--orange); }
.search-result-excerpt { font-size: 13.5px; color: var(--gray-mid); margin-bottom: 12px; line-height: 1.6; }
.search-result-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--gray-mid);
}
.search-result-meta i { color: var(--orange); }
.search-result-link { color: var(--orange); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ── 24. PAGE 404 ──────────────────────────────────── */
.error-404-page { padding: 80px 0; }
.error-404-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
}
.error-404-graphic {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.error-code {
  font-family: var(--font-condensed);
  font-size: 7rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  pointer-events: none;
  letter-spacing: -4px;
}
.error-atom {
  width: 140px; height: 140px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.atom-nucleus {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(224,82,6,0.4);
  z-index: 2;
}
.atom-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(11,143,60,0.4);
  animation: orbitSpin 4s linear infinite;
}
.atom-orbit-1 { width: 70px; height: 70px; animation-duration: 3s; }
.atom-orbit-2 { width: 100px; height: 40px; animation-duration: 4s; transform: rotate(60deg); }
.atom-orbit-3 { width: 130px; height: 50px; animation-duration: 6s; transform: rotate(120deg); }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.atom-orbit-1 { animation-name: orbitSpin1; }
.atom-orbit-2 { animation-name: orbitSpin2; }
.atom-orbit-3 { animation-name: orbitSpin3; }
@keyframes orbitSpin1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitSpin2 { from { transform: rotate(60deg); } to { transform: rotate(420deg); } }
@keyframes orbitSpin3 { from { transform: rotate(120deg); } to { transform: rotate(480deg); } }
.atom-electron {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  top: -4px; left: 50%;
  margin-left: -4px;
}
.error-content h1 { font-family: var(--font-condensed); font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; }
.error-content > p { font-size: 15px; color: var(--gray-mid); margin-bottom: 24px; line-height: 1.7; max-width: 480px; }
.error-search {
  margin-bottom: 24px;
  display: flex;
}
.error-search input {
  flex: 1; padding: 11px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 14px; font-family: var(--font-main);
  outline: none; border-right: none;
}
.error-search input:focus { border-color: var(--orange); }
.error-search button {
  padding: 11px 18px;
  background: var(--orange); color: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  cursor: pointer; border: none;
}
.error-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.error-quick-links h4 { font-size: 13px; font-weight: 700; color: var(--gray-mid); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.error-quick-links ul { display: flex; flex-direction: column; gap: 6px; }
.error-quick-links a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray-text); }
.error-quick-links a i { color: var(--orange); font-size: 13px; width: 16px; }
.error-quick-links a:hover { color: var(--orange); }

/* ── 25. HERO SLIDER — COULEURS DE FOND (sans images) ── */
.hero-slide-1 .hero-bg { background-color: #0a2918; background-image:
  linear-gradient(135deg, rgba(11,143,60,0.3) 0%, rgba(224,82,6,0.2) 100%),
  repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 8px); }
.hero-slide-2 .hero-bg { background-color: #1a1005; background-image:
  linear-gradient(135deg, rgba(180,100,10,0.4) 0%, rgba(11,100,40,0.3) 100%); }
.hero-slide-3 .hero-bg { background-color: #07192e; background-image:
  linear-gradient(135deg, rgba(7,100,80,0.5) 0%, rgba(224,82,6,0.25) 100%); }

/* Icône visuelle dans chaque slide (quand pas d'image) */
.hero-slide-1 .hero-bg::after { content: '\f5bb'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-size: 200px; color: rgba(255,255,255,0.04); pointer-events: none; }
.hero-slide-2 .hero-bg::after { content: '\f185'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-size: 200px; color: rgba(255,255,255,0.04); pointer-events: none; }
.hero-slide-3 .hero-bg::after { content: '\f0fa'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-size: 200px; color: rgba(255,255,255,0.04); pointer-events: none; }

/* ── 26. RESPONSIVE ADDITIONS ──────────────────────── */
@media (max-width: 1100px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-opendata-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .guides-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .report-item { flex-direction: column; align-items: flex-start; }
  .form-row-2 { flex-direction: column; }
  .doc-item { flex-wrap: wrap; }
  .error-404-inner { flex-direction: column; text-align: center; }
  .error-search { max-width: 400px; margin: 0 auto 24px; }
  .error-links { justify-content: center; }
}
@media (max-width: 480px) {
  .archive-grid { grid-template-columns: 1fr; }
  .doc-actions { width: 100%; justify-content: flex-end; }
}

/* =====================================================
   ACTUALITÉS V2 — SLIDER + GRILLE 4 CARTES
   ===================================================== */

/* En-tête de section */
.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.news-section-left { flex: 1; }
.news-section-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Filtres */
.news-filters {
  display: flex;
  gap: 4px;
  background: var(--gray-light);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--gray-border);
}
.news-filter-btn {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
}
.news-filter-btn.active,
.news-filter-btn:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.news-filter-btn.active { color: var(--orange); font-weight: 700; }

/* Slider wrapper */
.news-slider-wrapper {
  overflow: hidden;
  position: relative;
}
.news-slider-track {
  position: relative;
  width: 100%;
}
.news-slide-page {
  display: none;
  animation: slideFadeIn 0.45s ease;
}
.news-slide-page.active { display: block; }

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFadeOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-24px); }
}
.news-slide-page.slide-out {
  display: block;
  animation: slideFadeOut 0.3s ease forwards;
}

/* Grille 4 cartes */
.news-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Carte V2 */
.news-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
  border-color: transparent;
}
.news-card-v2-featured {
  border-top: 3px solid var(--orange);
}
.news-card-v2-featured:hover {
  box-shadow: 0 12px 36px rgba(224,82,6,0.15);
}

/* Image carte */
.news-card-v2-img-link {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
  flex-shrink: 0;
}
.news-card-v2-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card-v2:hover .news-card-v2-img-link img {
  transform: scale(1.06);
}
.news-card-v2-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gray-border);
  background: linear-gradient(135deg, var(--gray-light) 0%, #eaecef 100%);
}

/* Badge catégorie */
.news-v2-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  backdrop-filter: blur(4px);
}
.news-card-v2:nth-child(2) .news-v2-badge,
.news-card-v2:nth-child(4) .news-v2-badge { background: var(--green); }

/* Corps carte */
.news-card-v2-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.news-v2-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--gray-mid);
  font-weight: 500;
}
.news-v2-date i { color: var(--orange); font-size: 11px; }

.news-v2-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}
.news-v2-title a { color: var(--gray-text); }
.news-v2-title a:hover { color: var(--orange); }

.news-v2-excerpt {
  font-size: 12.5px;
  color: var(--gray-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-v2-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-border);
  transition: gap var(--transition);
  width: 100%;
}
.news-v2-readmore:hover { gap: 10px; color: var(--orange-dark); }
.news-v2-readmore i { font-size: 14px; }

/* Navigation slider */
.news-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.news-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  background: var(--white);
  color: var(--gray-mid);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.news-nav-btn:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}
.news-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.news-slider-dots { display: flex; gap: 8px; }
.news-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.news-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 5px;
}

.news-slider-counter {
  font-size: 12.5px;
  color: var(--gray-mid);
  font-weight: 600;
  min-width: 36px;
  text-align: center;
}
.news-slider-counter span { color: var(--orange); }

/* Auto-progress bar */
.news-progress-bar {
  height: 2px;
  background: var(--gray-border);
  margin-top: 16px;
  border-radius: 2px;
  overflow: hidden;
}
.news-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-mid) 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 1100px) {
  .news-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .news-grid-4 { grid-template-columns: 1fr; }
  .news-section-header { flex-direction: column; align-items: flex-start; }
  .news-filters { display: none; }
}
