/* ============================================
   ESCIM - Style Principal
   École Supérieure de Commerce, d'Ingénierie et de Management
   Design premium, élégant et dynamique
   ============================================ */

/* Import Fonts - Polices élégantes et lisibles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* Variables CSS */
:root {
  /* Couleurs ESCIM */
  --prestige-red: #7b1e3a;
  --prestige-red-light: #9a2a4d;
  --prestige-red-dark: #5c1629;
  --blue-excellence: #03224c;
  --blue-excellence-light: #0a3a6e;
  --elite-white: #f7f7eb;
  --prestige-gold: #e5c489;
  --prestige-gold-light: #f0d8a8;
  --azur-excellence: #33cdf4;
  --black: #000000;
  --white: #ffffff;

  /* Grays */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Typographies - Lisibles et élégantes */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: all 0.3s var(--ease-out);
  --transition-fast: all 0.15s var(--ease-out);
  --transition-slow: all 0.6s var(--ease-out);

  /* Layout */
  --container-width: 1280px;
  --announcement-height: 44px;
  --header-top-height: 32px;
  --header-main-height: 70px;
  --header-total-height: calc(var(--announcement-height) + var(--header-top-height) + var(--header-main-height));
}

/* ============================================
   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-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--elite-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--prestige-red-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announcement-height);
  background: linear-gradient(135deg, var(--prestige-red) 0%, var(--prestige-red-dark) 100%);
  color: var(--white);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

body.scrolled .announcement-bar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.announcement-icon {
  font-size: 1rem;
  animation: bounce 2s infinite;
}

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

.announcement-text {
  letter-spacing: 0.02em;
}

.announcement-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  background: var(--white);
  border: none;
  color: var(--prestige-red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: var(--transition);
}

.announcement-btn:hover {
  background: var(--prestige-gold);
  color: var(--blue-excellence);
  transform: scale(1.02);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  top: 0;
  box-shadow: 0 4px 30px rgba(3, 34, 76, 0.08);
}

/* Header Top */
.header-top {
  height: var(--header-top-height);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.header-top-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-top-link {
  font-size: 0.7rem;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  position: relative;
}

.header-top-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--prestige-red);
  transition: width 0.3s var(--ease-out);
}

.header-top-link:hover {
  color: var(--prestige-red);
}

.header-top-link:hover::after {
  width: 100%;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-fast);
}

.language-current:hover {
  border-color: var(--prestige-red);
  color: var(--prestige-red);
}

.flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.chevron-down {
  transition: var(--transition-fast);
}

.language-selector.active .chevron-down {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 100;
  overflow: hidden;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-fast);
}

.language-option:hover {
  background: var(--gray-50);
}

.language-option.active {
  background: var(--elite-white);
  color: var(--prestige-red);
}

/* Header Main */
.header-main {
  height: var(--header-main-height);
  background: var(--white);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo avec plus d'espace */
.logo {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

.logo img {
  height: 55px;
  width: auto;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled .logo img {
  height: 45px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 4px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--prestige-red);
  background: rgba(123, 30, 58, 0.04);
}

.nav-link.active {
  color: var(--prestige-red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--prestige-red);
  border-radius: 2px;
}

/* Mobile Language Selector */
.language-selector-mobile {
  display: none;
}

.language-toggle-mobile {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-fast);
}

.language-toggle-mobile:hover {
  border-color: var(--prestige-red);
  color: var(--prestige-red);
}

.language-toggle-mobile .flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn svg {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--prestige-red);
  color: var(--white);
  border-color: var(--prestige-red);
}

.btn-primary:hover {
  background: var(--prestige-red-dark);
  border-color: var(--prestige-red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 30, 58, 0.25);
}

.btn-secondary {
  background: var(--blue-excellence);
  color: var(--white);
  border-color: var(--blue-excellence);
}

.btn-secondary:hover {
  background: var(--blue-excellence-light);
  border-color: var(--blue-excellence-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 34, 76, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--prestige-red);
  border-color: var(--prestige-red);
}

.btn-outline:hover {
  background: var(--prestige-red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--prestige-red);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--prestige-red);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--prestige-gold);
  border-color: var(--prestige-gold);
  color: var(--blue-excellence);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* ============================================
   HERO SECTION - Plus d'espace et plus dynamique
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  max-height: 950px;
  margin-top: var(--header-total-height);
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-in-out), visibility 1s var(--ease-in-out);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Animation Zoom sur les images - EFFET VIDÉO RAPIDE ET DYNAMIQUE */
.hero-bg-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: heroZoom 6s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(3, 34, 76, 0.88) 0%,
    rgba(3, 34, 76, 0.72) 50%,
    rgba(123, 30, 58, 0.55) 100%
  );
}

.hero-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  padding-bottom: 4rem;
  max-width: var(--container-width);
  margin: 0 auto;
  z-index: 2;
}

/* Badge amélioré */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: var(--prestige-red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  margin-bottom: 2rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.badge-separator {
  opacity: 0.5;
}

/* Titre Hero - TRÈS GRAND, IMPACTANT avec animation typewriter */
.hero-title {
  color: var(--white);
  max-width: 950px;
  margin-bottom: 2rem;
  line-height: 1.05;
  font-weight: 500;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  overflow: hidden;
}

/* Animation typewriter pour le titre - Curseur clignotant */
.hero-title-line .typewriter {
  display: inline;
}

/* Curseur clignotant actif pendant l'écriture */
.hero-title-line .typewriter.typing-active::after {
  content: '|';
  color: var(--prestige-gold);
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.6s step-end infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Description Hero - Claire et lisible */
.hero-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-description {
  animation: fadeInUp 0.8s var(--ease-out) 2.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-buttons {
  animation: fadeInUp 0.8s var(--ease-out) 3.2s forwards;
}

/* Hero Navigation Dots */
.hero-nav {
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-nav-dot {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-nav-dot.active,
.hero-nav-dot:hover {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.15);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--prestige-red);
  margin-bottom: 1rem;
}

.section-label-light {
  color: var(--prestige-gold);
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-title-light {
  color: var(--white);
}

.section-description {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--prestige-red), var(--prestige-gold));
  margin-bottom: 1.75rem;
  border-radius: 2px;
}

.section-line-center {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--prestige-red), var(--prestige-gold));
  margin: 0 auto 1.75rem;
  border-radius: 2px;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.section-welcome {
  background: var(--white);
  overflow: hidden;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.welcome-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.welcome-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.welcome-text:last-of-type {
  margin-bottom: 2.25rem;
}

/* Welcome Images - Overlapping avec animation zoom */
.welcome-images {
  position: relative;
  height: 520px;
}

.welcome-img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-2xl);
}

.welcome-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.welcome-img-wrapper:hover img {
  transform: scale(1.08);
}

.welcome-img-1 {
  top: 0;
  right: 0;
  width: 65%;
  height: 340px;
  z-index: 3;
}

.welcome-img-2 {
  bottom: 30px;
  left: 0;
  width: 48%;
  height: 240px;
  z-index: 2;
}

.welcome-img-3 {
  bottom: 0;
  right: 70px;
  width: 42%;
  height: 190px;
  z-index: 1;
}

/* Welcome Video - Vidéo hébergée */
.welcome-video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
}

.welcome-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--gray-900);
  max-width: 450px;
  width: 100%;
}

.welcome-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Bouton son vidéo */
.video-sound-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  z-index: 10;
}

.video-sound-btn:hover {
  background: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-sound-btn svg {
  color: var(--blue-excellence);
}

.video-sound-btn.unmuted .icon-muted {
  display: none;
}

.video-sound-btn.unmuted .icon-unmuted {
  display: block !important;
}

/* Welcome Decoration */
.welcome-decoration {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--prestige-red);
  opacity: 0.08;
  pointer-events: none;
}

.deco-circle {
  width: 350px;
  height: 350px;
}

/* ============================================
   WHY ESCIM SECTION
   ============================================ */
.section-why {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.75rem 1.75rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(123, 30, 58, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--elite-white) 0%, var(--gray-100) 100%);
  border-radius: 50%;
  color: var(--prestige-red);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--prestige-red) 0%, var(--prestige-red-dark) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.feature-title {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--blue-excellence);
}

.feature-text {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.section-programs {
  background: var(--white);
}

.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.program-tab {
  padding: 0.85rem 1.75rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.program-tab:hover {
  border-color: var(--prestige-red);
  color: var(--prestige-red);
  background: rgba(123, 30, 58, 0.02);
}

.program-tab.active {
  background: var(--prestige-red);
  border-color: var(--prestige-red);
  color: var(--white);
}

.programs-content {
  position: relative;
}

.programs-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.programs-grid.active {
  display: grid;
}

/* Program Card avec animation zoom */
.program-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(123, 30, 58, 0.2), 0 5px 15px rgba(123, 30, 58, 0.1);
}

.program-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.program-card:hover .program-card-image img {
  transform: scale(1.1);
}

.program-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(3, 34, 76, 0.7) 0%, transparent 60%);
}

.program-card-content {
  padding: 1.75rem;
}

.program-level {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.program-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.program-excerpt {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.program-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.program-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.programs-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.section-stats {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.section-stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: zoomInSlow 20s var(--ease-out) infinite alternate;
}

@keyframes zoomInSlow {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(3, 34, 76, 0.95) 0%,
    rgba(3, 34, 76, 0.88) 100%
  );
}

.stats-content {
  position: relative;
  z-index: 2;
}

.section-stats .section-header {
  text-align: center;
  margin-bottom: 0;
}

.section-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.section-stats .stat-item {
  text-align: center;
  padding: 2.25rem;
}

.section-stats .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--prestige-gold) !important;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.section-stats .stat-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white) !important;
  margin-bottom: 0.35rem;
}

.section-stats .stat-sublabel {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CAMPUS SECTION
   ============================================ */
.section-campus {
  background: var(--gray-50);
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.campus-content .section-title {
  margin-bottom: 1.75rem;
}

.campus-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.campus-features {
  margin-bottom: 2.25rem;
}

.campus-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  color: var(--gray-700);
  font-size: 1rem;
}

.campus-features svg {
  color: var(--prestige-red);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Campus Gallery avec animation zoom */
.campus-gallery {
  display: grid;
  gap: 1.25rem;
}

.campus-gallery-main {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.campus-gallery-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.campus-gallery-main:hover img {
  transform: scale(1.05);
}

.campus-gallery-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.campus-gallery-secondary > div {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.campus-gallery-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.8s var(--ease-out);
}

.campus-gallery-secondary > div:hover img {
  transform: scale(1.08);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--prestige-red) 0%, var(--prestige-red-dark) 100%);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.section-news {
  background: var(--white);
}

/* Nouveau layout News - Grande carte gauche + 2 petites droite */
.news-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  min-height: 480px;
}

.news-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.news-featured {
  display: flex;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Ancien grid (conservé pour compatibilité) */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Carte Featured (grande carte gauche) */
.news-card-featured {
  display: flex;
  flex-direction: row;
  height: 100%;
  min-height: 420px;
}

.news-card-featured .news-card-image {
  width: 50%;
  min-height: 100%;
  flex-shrink: 0;
  aspect-ratio: 4/5;
}

.news-card-featured .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.news-card-featured .news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.news-card-featured .news-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.news-card-featured .news-excerpt {
  margin-bottom: 1.5rem;
}

/* Petites cartes (sidebar droite) */
.news-card-small {
  display: flex;
  flex-direction: row;
  min-height: 180px;
}

.news-card-small .news-card-image {
  width: 40%;
  min-width: 140px;
  flex-shrink: 0;
}

.news-card-small .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-small .news-card-content {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card-small .news-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.news-card-small .news-excerpt {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Lien cliquable pour les petites cartes */
.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card-link .news-card {
  transition: var(--transition);
}

.news-card-link:hover .news-card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card-link:hover .news-title {
  color: var(--prestige-red);
}

.news-card-image {
  position: relative;
  overflow: hidden;
}

.news-card:not(.news-card-featured):not(.news-card-small) .news-card-image {
  height: 180px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.news-card:hover .news-card-image img {
  transform: scale(1.08);
}

.news-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.news-card-content {
  padding: 1.75rem;
}

.news-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--prestige-red);
  margin-bottom: 0.6rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.news-card:not(.news-card-featured) .news-title {
  font-size: 1.05rem;
}

.news-excerpt {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.news-date {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--prestige-red);
}

.news-link:hover {
  gap: 0.75rem;
}

.news-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue-excellence);
  color: var(--white);
  padding-top: 5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 65px;
  width: auto;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--prestige-red);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  color: var(--prestige-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-contact-item strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 2.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   SCROLL TO TOP - Élégant et bleu nuit
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-excellence);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(3, 34, 76, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s var(--ease-out);
  z-index: 999;
}

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

.scroll-top:hover {
  background: var(--prestige-red);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(123, 30, 58, 0.4);
}

.scroll-top svg {
  stroke-width: 2.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .welcome-images {
    height: 420px;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --announcement-height: 52px;
    --header-top-height: 0px;
    --header-main-height: 70px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .announcement-content {
    font-size: 0.8rem;
    gap: 0.6rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-top {
    display: none;
  }

  .header-inner {
    padding: 0 1.25rem;
  }

  .nav-list {
    display: none;
    position: fixed;
    top: calc(var(--announcement-height) + var(--header-main-height));
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 999;
  }

  body.scrolled .nav-list {
    top: var(--header-main-height);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-link {
    padding: 1.1rem;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-toggle {
    display: flex;
  }

  .language-selector-mobile {
    display: block;
    margin-right: 0.75rem;
  }

  .hero {
    min-height: 550px;
    max-height: 750px;
  }

  .hero-slide-content {
    padding: 0 1.25rem;
    padding-bottom: 5rem;
  }

  .hero-title-line {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-nav {
    bottom: 2.5rem;
    right: 50%;
    transform: translateX(50%);
  }

  .section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .welcome-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .welcome-images {
    height: 320px;
  }

  .welcome-video {
    min-height: 350px;
  }

  .welcome-video-wrapper iframe {
    width: 320px !important;
    height: 320px !important;
  }

  .welcome-img-1 {
    width: 72%;
    height: 220px;
  }

  .welcome-img-2 {
    width: 52%;
    height: 160px;
  }

  .welcome-img-3 {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .programs-tabs {
    gap: 0.5rem;
  }

  .program-tab {
    padding: 0.7rem 1.15rem;
    font-size: 0.9rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .section-stats .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .section-stats .stat-number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .section-stats .stat-label {
    font-size: 1rem;
  }

  .campus-gallery-main img {
    height: 240px;
  }

  .campus-gallery-secondary img {
    height: 160px;
  }

  .cta-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card-featured {
    flex-direction: column;
    min-height: auto;
  }

  .news-card-featured .news-card-image {
    width: 100%;
    height: 200px;
    aspect-ratio: auto;
  }

  .news-card-featured .news-card-content {
    padding: 1.25rem;
  }

  .news-sidebar {
    flex-direction: column;
    gap: 1rem;
  }

  .news-card-small {
    flex-direction: row;
    min-height: 120px;
  }

  .news-card-small .news-card-image {
    width: 35%;
    min-width: 100px;
  }

  .news-card-small .news-card-content {
    padding: 0.75rem 1rem;
  }

  .news-card-small .news-title {
    font-size: 0.95rem;
  }

  .news-card-small .news-excerpt {
    display: none;
  }

  .news-card-small .news-date {
    font-size: 0.8rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero-title-line {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .section-stats .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ============================================
   PAGE HEADER (Pages internes)
   ============================================ */
.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--header-top-height) + var(--header-main-height));
  overflow: hidden;
}

.page-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 34, 76, 0.85) 0%, rgba(123, 30, 58, 0.75) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--prestige-gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page Header Small (Legal pages) */
.page-header-small {
  height: auto;
  min-height: 200px;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--blue-excellence) 0%, rgba(3, 34, 76, 0.95) 100%);
}

.page-header-small .page-header-content {
  color: var(--white);
}

.page-header-small .page-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}

.page-header-small .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.page-header-small .breadcrumb a:hover {
  color: var(--white);
}

.page-header-small .breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
}

.page-header-small .breadcrumb .current {
  color: var(--prestige-gold);
}

/* ============================================
   PROGRAMMES PAGE - Liste des formations
   ============================================ */
.section-programs-list {
  padding: 5rem 0;
  background-color: var(--elite-white);
}

.programs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.programs-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-block {
  background: var(--white);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--prestige-gold);
}

/* Search Box */
.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-right: 3rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.search-box input:focus {
  outline: none;
  border-color: var(--prestige-red);
  box-shadow: 0 0 0 3px rgba(123, 30, 58, 0.1);
}

.search-box svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

/* Filter Checkboxes */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.filter-checkbox:hover {
  color: var(--prestige-red);
}

.filter-checkbox input {
  display: none;
}

.filter-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.filter-checkbox input:checked + .checkmark {
  background: var(--prestige-red);
  border-color: var(--prestige-red);
}

.filter-checkbox input:checked + .checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.filter-label {
  font-size: 0.95rem;
  flex: 1;
}

.filter-count {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue-excellence) 0%, var(--prestige-red-dark) 100%);
  color: var(--white);
}

.sidebar-cta .sidebar-title {
  color: var(--white);
  border-bottom-color: var(--prestige-gold);
}

.sidebar-cta p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Programs Main */
.programs-main {
  min-width: 0;
}

.programs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 1rem;
}

.programs-count {
  font-size: 1rem;
  color: var(--gray-600);
}

.programs-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.btn-brochure svg {
  flex-shrink: 0;
}

.programs-view {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.programs-view span {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-right: 0.5rem;
}

.view-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition-fast);
}

.view-btn:hover {
  color: var(--gray-600);
  border-color: var(--gray-300);
}

.view-btn.active {
  background: var(--blue-excellence);
  border-color: var(--blue-excellence);
  color: var(--white);
}

/* Programs Sections */
.programs-section {
  margin-bottom: 4rem;
}

.programs-section:last-child {
  margin-bottom: 0;
}

.programs-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--blue-excellence);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.section-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--prestige-red) 0%, var(--prestige-red-dark) 100%);
  border-radius: 6px;
  color: var(--white);
}

.section-badge {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: auto;
}

/* Programs Grid */
.programs-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* Program Card Full */
.program-card-full {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.program-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(123, 30, 58, 0.15), 0 4px 10px rgba(123, 30, 58, 0.1);
}

.program-card-full .program-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-card-full .program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.program-card-full:hover .program-card-image img {
  transform: scale(1.05);
}

.program-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--prestige-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
}

.program-card-body {
  padding: 1.5rem;
}

.program-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 3px;
}

.tag-domain {
  background: rgba(3, 34, 76, 0.1);
  color: var(--blue-excellence);
}

.tag-level {
  background: rgba(123, 30, 58, 0.1);
  color: var(--prestige-red);
}

.program-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.program-card-excerpt {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.program-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.program-card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.program-card-features svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

.program-card-actions {
  display: flex;
  gap: 0.75rem;
}

.program-card-actions .btn {
  flex: 1;
}

.program-card-actions .btn-icon {
  flex: 0;
  width: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header Light (pour pages internes sans hero) */
.header-light {
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-light .header-top {
  background: var(--blue-excellence);
}

.header-light .header-top-link {
  color: rgba(255, 255, 255, 0.8);
}

.header-light .header-top-link:hover {
  color: var(--white);
}

.header-light .header-top-link::after {
  background: var(--prestige-gold);
}

.header-light .language-current {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.header-light .language-current:hover {
  border-color: var(--prestige-gold);
  color: var(--prestige-gold);
}

.header-light .language-current .chevron-down {
  stroke: var(--white);
}

.header-light .language-current:hover .chevron-down {
  stroke: var(--prestige-gold);
}

.header-light .header-main {
  background: var(--white);
}

.header-light .nav-link {
  color: var(--gray-700);
}

.header-light .nav-link:hover,
.header-light .nav-link.active {
  color: var(--prestige-red);
}

/* Responsive Programs Page */
@media (max-width: 1024px) {
  .programs-layout {
    grid-template-columns: 1fr;
  }

  .programs-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .sidebar-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 320px;
    margin-top: calc(var(--header-top-height) + 70px);
  }

  .page-title {
    font-size: 2rem;
  }

  .programs-grid-list {
    grid-template-columns: 1fr;
  }

  .programs-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .programs-header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .btn-brochure {
    width: 100%;
    justify-content: center;
    order: 2;
    margin-top: 0.5rem;
  }

  .programs-view {
    order: 1;
  }

  .programs-section-title {
    font-size: 1.35rem;
    flex-wrap: wrap;
  }

  .section-badge {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ============================================
   FORMATION DETAIL PAGE
   ============================================ */
.formation-breadcrumb {
  padding: 0.75rem 0;
  background: var(--white);
  margin-top: calc(var(--announcement-height) + var(--header-top-height) + var(--header-main-height));
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-dark {
  justify-content: flex-start;
}

.breadcrumb-dark a,
.breadcrumb-dark span {
  color: var(--gray-600);
}

.breadcrumb-dark a:hover {
  color: var(--prestige-red);
}

/* Formation Header */
.formation-header {
  padding: 2rem 0;
  background: var(--white);
}

.formation-header-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.formation-meta {
  margin-bottom: 0.5rem;
}

.formation-domain {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.formation-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--blue-excellence);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.formation-intro {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Formation Highlights */
.formation-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, rgba(123, 30, 58, 0.08), rgba(123, 30, 58, 0.04));
  border: 1px solid rgba(123, 30, 58, 0.15);
  border-radius: 100px;
  color: var(--prestige-red);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.highlight-badge svg {
  flex-shrink: 0;
}

.highlight-badge:hover {
  background: linear-gradient(135deg, rgba(123, 30, 58, 0.12), rgba(123, 30, 58, 0.08));
  border-color: rgba(123, 30, 58, 0.25);
  transform: translateY(-1px);
}

.formation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag-pill {
  padding: 0.3rem 0.7rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.tag-pill:hover {
  background: var(--gray-200);
}

/* Formation About in Header */
.formation-about-header {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.formation-about-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.formation-about-header p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.formation-about-header p:last-child {
  margin-bottom: 0;
}

/* Formation Card (sidebar) */
.formation-header-card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 160px;
}

.formation-card-image {
  height: 140px;
  overflow: hidden;
}

.formation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formation-card-info {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.formation-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.formation-info-item:last-child {
  border-bottom: none;
}

.formation-info-item svg {
  color: var(--prestige-red);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.info-label {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 0.15rem;
}

.info-value {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue-excellence);
}

.formation-card-actions {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.formation-card-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Formation Content */
.formation-content {
  padding: 4rem 0;
  background: var(--elite-white);
}

.formation-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.formation-main {
  min-width: 0;
}

/* Formation Sections */
.formation-section {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.formation-section:last-child {
  margin-bottom: 0;
}

.formation-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-excellence);
  margin-bottom: 1.5rem;
}

.title-line {
  width: 4px;
  height: 28px;
  background: var(--prestige-gold);
  border-radius: 2px;
}

.formation-text p {
  margin-bottom: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.formation-text p:last-child {
  margin-bottom: 0;
}

/* Resources List */
.resources-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}

.resources-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition-fast);
}

.resources-list li:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.resources-list li svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

/* Formation Section Grid (Prérequis + Public) */
.formation-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.prerequis-block,
.public-block {
  background: var(--white);
}

/* Check List (Prérequis) */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.check-list li svg {
  color: var(--prestige-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Arrow List (Public cible) */
.arrow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.arrow-list li svg {
  color: var(--blue-excellence);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.objective-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 4px;
}

.objective-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--prestige-red);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

.objective-icon svg {
  width: 16px;
  height: 16px;
}

.objective-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
}

/* Program Accordion */
/* Program Timeline */
.program-accordion {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 40px;
}

/* Timeline vertical line */
.program-accordion::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--prestige-red), var(--blue-excellence));
  border-radius: 2px;
}

.accordion-item {
  position: relative;
  border: none;
  border-radius: 0;
  overflow: visible;
  padding-bottom: 0.75rem;
}

.accordion-item:last-child {
  padding-bottom: 0;
}

/* Timeline dot */
.accordion-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--gray-300);
  border-radius: 50%;
  z-index: 2;
  transition: var(--transition-fast);
}

.accordion-item:hover::before,
.accordion-item.active::before {
  border-color: var(--prestige-red);
  background: var(--prestige-red);
  box-shadow: 0 0 0 4px rgba(123, 30, 58, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateX(4px);
}

.accordion-item.active .accordion-header {
  background: var(--blue-excellence);
  color: var(--white);
  border-color: var(--blue-excellence);
  box-shadow: 0 4px 15px rgba(3, 34, 76, 0.2);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  text-align: left;
}

.bloc-number {
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, var(--prestige-red), #a02a4c);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.accordion-item.active .bloc-number {
  background: var(--prestige-gold);
  color: var(--blue-excellence);
}

.bloc-meta {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 0.5rem;
}

.accordion-item.active .bloc-meta {
  color: var(--blue-excellence);
  opacity: 0.7;
}

.accordion-icon {
  transition: var(--transition-fast);
  flex-shrink: 0;
  opacity: 0.7;
}

.accordion-header:hover .accordion-icon {
  opacity: 1;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.accordion-content {
  display: none;
  margin-top: 0.5rem;
  margin-left: 0;
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  border-left: 3px solid var(--prestige-red);
}

.program-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.program-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.program-list li:hover {
  color: var(--prestige-red);
  transform: translateX(4px);
}

.program-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--prestige-red);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.program-list li:hover::before {
  transform: scale(1.3);
}

/* Debouches Grid */
.debouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.debouche-card {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.debouche-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.debouche-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--prestige-gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: var(--prestige-red);
}

.debouche-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 0.5rem;
}

.debouche-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Formation Sidebar */
.formation-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--prestige-gold);
}

.sidebar-card-dark {
  background: linear-gradient(135deg, var(--blue-excellence) 0%, var(--prestige-red-dark) 100%);
  color: var(--white);
}

.sidebar-card-dark .sidebar-card-title {
  color: var(--white);
}

.points-forts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.points-forts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.points-forts-list svg {
  color: var(--prestige-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Admission Info */
.admission-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admission-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.admission-item:last-child {
  border-bottom: none;
}

.admission-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.admission-value {
  font-weight: 600;
}

.sidebar-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Other Programs Section */
.section-other-programs {
  background: var(--white);
}

.other-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Responsive Formation Page */
@media (max-width: 1024px) {
  .formation-header-grid {
    grid-template-columns: 1fr;
  }

  .formation-header-card {
    position: static;
  }

  .formation-content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .formation-breadcrumb {
    margin-top: calc(var(--header-top-height) + 70px);
  }

  .formation-header {
    padding: 2rem 0;
  }

  .formation-title {
    font-size: 1.75rem;
  }

  .formation-highlights {
    gap: 0.75rem;
  }

  .highlight-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .formation-section {
    padding: 1.5rem;
  }

  .objectives-grid,
  .debouches-grid {
    grid-template-columns: 1fr;
  }

  /* Section Grid responsive */
  .formation-section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .resources-list {
    grid-template-columns: 1fr;
  }

  /* Timeline responsive */
  .program-accordion {
    padding-left: 30px;
  }

  .program-accordion::before {
    left: 5px;
  }

  .accordion-item::before {
    left: -30px;
    width: 12px;
    height: 12px;
    top: 18px;
  }

  .accordion-header {
    padding: 0.875rem 1rem;
  }

  .accordion-header:hover {
    transform: none;
  }

  .accordion-title {
    font-size: 0.85rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .bloc-number {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }

  .accordion-content {
    padding: 1rem;
  }

  .program-list {
    grid-template-columns: 1fr;
  }

  .other-programs-grid {
    grid-template-columns: 1fr;
  }

  .formation-about-header {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

/* ============================================
   VIE ÉTUDIANTE PAGE
   ============================================ */

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-total-height);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 34, 76, 0.85) 0%, rgba(123, 30, 58, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 4rem 2rem;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  margin-bottom: 1.5rem;
  justify-content: center;
}

.page-hero .breadcrumb a,
.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Introduction Section */
.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.intro-text .section-title {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--gray-600);
  line-height: 1.8;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--prestige-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Section Alternate Background */
.section-alt {
  background: var(--gray-50);
}

/* Section Header */
.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
}

.section-header .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-header .section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Campus Grid */
.campus-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.campus-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.campus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.campus-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.campus-image {
  position: relative;
  overflow: hidden;
}

.campus-card-featured .campus-image {
  min-height: 100%;
}

.campus-card:not(.campus-card-featured) .campus-image {
  height: 200px;
}

.campus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.campus-card:hover .campus-image img {
  transform: scale(1.05);
}

.campus-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--prestige-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}

.campus-content {
  padding: 2rem;
}

.campus-flag {
  margin-bottom: 1rem;
}

.campus-flag img {
  height: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.campus-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-excellence);
  margin-bottom: 0.5rem;
}

.campus-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.campus-location svg {
  color: var(--prestige-red);
}

.campus-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.campus-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.campus-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.campus-features svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.equipment-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.equipment-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.equipment-image {
  height: 200px;
  overflow: hidden;
}

.equipment-card-large .equipment-image {
  height: 100%;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.05);
}

.equipment-content {
  padding: 1.5rem;
}

.equipment-card-large .equipment-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equipment-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--prestige-red), var(--prestige-red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.equipment-icon svg {
  color: var(--white);
}

.equipment-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.equipment-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.equipment-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.equipment-features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 1rem;
  position: relative;
}

.equipment-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--prestige-red);
  border-radius: 50%;
}

/* Housing Grid */
.housing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.housing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.housing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.housing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(123, 30, 58, 0.1), rgba(123, 30, 58, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.housing-icon svg {
  color: var(--prestige-red);
}

.housing-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.housing-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.housing-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.housing-features li {
  font-size: 0.8rem;
  color: var(--prestige-red);
  background: rgba(123, 30, 58, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.housing-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.housing-cta p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* Associations Grid */
.associations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.association-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.association-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.association-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.association-icon svg {
  color: var(--white);
}

.association-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.association-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.quote-icon {
  color: var(--prestige-red);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.95rem;
  color: var(--blue-excellence);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Vie Étudiante Responsive */
@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .campus-grid {
    grid-template-columns: 1fr;
  }

  .campus-card-featured {
    grid-template-columns: 1fr;
  }

  .campus-card-featured .campus-image {
    height: 250px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-card-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .equipment-card-large .equipment-image {
    height: 250px;
  }

  .associations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    margin-top: calc(var(--header-top-height) + var(--header-main-height));
  }

  .page-hero-content {
    padding: 3rem 1.5rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card-large {
    grid-column: span 1;
  }

  .housing-grid {
    grid-template-columns: 1fr;
  }

  .associations-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   VIE ÉTUDIANTE - NOUVEAUX COMPOSANTS DYNAMIQUES
   ============================================ */

/* Page Hero Tall */
.page-hero-tall {
  min-height: 60vh;
}

/* Galerie Strip Animation */
.gallery-strip {
  overflow: hidden;
  background: var(--blue-excellence);
  padding: 1rem 0;
}

.gallery-strip-track {
  display: flex;
  gap: 1rem;
  animation: scrollGallery 30s linear infinite;
  width: max-content;
}

.gallery-strip-item {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip-item:hover img {
  transform: scale(1.1);
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Intro Split Layout */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-split-content .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.intro-split-content .section-title {
  margin-bottom: 1.5rem;
}

.intro-split-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.intro-highlight {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.highlight-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--prestige-red);
  line-height: 1.2;
}

.highlight-label {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Image Collage */
.image-collage {
  position: relative;
  height: 500px;
}

.collage-main {
  position: absolute;
  width: 85%;
  height: 70%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.collage-small {
  position: absolute;
  width: 45%;
  height: 35%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}

.collage-top {
  top: -20px;
  right: 0;
}

.collage-bottom {
  bottom: 20px;
  right: 0;
}

/* Section Dark */
.section-dark {
  background: linear-gradient(135deg, var(--blue-excellence) 0%, var(--prestige-red-dark) 100%);
  padding: 5rem 0;
}

.section-label-light {
  color: var(--prestige-gold) !important;
}

.section-title-light {
  color: var(--white) !important;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Events Timeline */
.events-timeline {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.events-timeline::-webkit-scrollbar {
  height: 6px;
}

.events-timeline::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.events-timeline::-webkit-scrollbar-thumb {
  background: var(--prestige-gold);
  border-radius: 3px;
}

.event-card {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.event-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 1.5rem;
}

.event-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prestige-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Campus Showcase */
.campus-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.campus-showcase:last-child {
  margin-bottom: 0;
}

.campus-showcase-reverse {
  grid-template-columns: 1fr 1.2fr;
}

.campus-showcase-reverse .campus-showcase-images {
  order: 2;
}

.campus-showcase-reverse .campus-showcase-content {
  order: 1;
}

.campus-showcase-images {
  display: grid;
  gap: 1rem;
}

.campus-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

.campus-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--prestige-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.campus-secondary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.campus-secondary-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.campus-flag-large {
  width: 60px;
  margin-bottom: 1rem;
}

.campus-flag-large img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.campus-showcase-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--blue-excellence);
  margin-bottom: 0.5rem;
}

.campus-showcase-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.campus-showcase-location svg {
  color: var(--prestige-red);
}

.campus-showcase-description {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.campus-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.campus-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.campus-features-list li:last-child {
  border-bottom: none;
}

.campus-features-list svg {
  color: var(--prestige-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.campus-features-list span {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.campus-features-list strong {
  color: var(--blue-excellence);
}

/* Equipment Showcase */
.equipment-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.equipment-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.equipment-feature-image {
  position: relative;
  min-height: 400px;
}

.equipment-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-feature-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--prestige-red);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.equipment-feature-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equipment-feature-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
}

.equipment-feature-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.equipment-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equipment-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--gray-700);
}

.equipment-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--prestige-red);
  border-radius: 50%;
}

/* Equipment Grid Compact */
.equipment-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.equipment-card-compact {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.equipment-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.equipment-card-image {
  height: 140px;
  overflow: hidden;
}

.equipment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-card-compact:hover .equipment-card-image img {
  transform: scale(1.1);
}

.equipment-card-content {
  padding: 1.5rem;
}

.equipment-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--prestige-red), var(--prestige-red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.equipment-card-icon svg {
  color: var(--white);
}

.equipment-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--blue-excellence);
  margin-bottom: 0.5rem;
}

.equipment-card-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Wellbeing Split */
.wellbeing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wellbeing-content .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.wellbeing-content .section-title {
  margin-bottom: 1rem;
}

.wellbeing-content > p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wellbeing-activities {
  display: grid;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.activity-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.activity-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--prestige-red), var(--blue-excellence));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon svg {
  color: var(--white);
}

.activity-text strong {
  display: block;
  color: var(--blue-excellence);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.activity-text span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Wellbeing Image Grid */
.wellbeing-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 1rem;
}

.wellbeing-img-1 {
  grid-row: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.wellbeing-img-2,
.wellbeing-img-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Associations Showcase */
.associations-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.association-card-large {
  display: flex;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.association-card-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.association-card-image {
  width: 40%;
  min-height: 220px;
  overflow: hidden;
}

.association-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.association-card-large:hover .association-card-image img {
  transform: scale(1.1);
}

.association-card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.association-card-content .association-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.association-card-content .association-icon svg {
  color: var(--white);
}

.association-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 0.5rem;
}

.association-card-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.association-members {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  background: rgba(123, 30, 58, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

/* Testimonials Showcase */
.testimonials-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.testimonial-large {
  display: flex;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.testimonial-large-image {
  width: 40%;
  min-height: 350px;
  overflow: hidden;
}

.testimonial-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-large-content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.testimonial-large-content .quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--prestige-red);
}

.testimonial-large-content blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  padding: 0;
  border: none;
}

.testimonial-author-info strong {
  display: block;
  color: var(--blue-excellence);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-info span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.testimonials-grid-small {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-small {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial-small-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-small-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-small-header strong {
  display: block;
  color: var(--blue-excellence);
  font-size: 0.95rem;
}

.testimonial-small-header span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.testimonial-small p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* CTA with Background Image */
.section-cta-image {
  position: relative;
  padding: 6rem 0;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 34, 76, 0.9) 0%, rgba(123, 30, 58, 0.85) 100%);
}

.section-cta-image .container {
  position: relative;
  z-index: 1;
}

/* Responsive for new components */
@media (max-width: 1024px) {
  .intro-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .image-collage {
    height: 400px;
  }

  .campus-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .campus-showcase-reverse {
    grid-template-columns: 1fr;
  }

  .campus-showcase-reverse .campus-showcase-images,
  .campus-showcase-reverse .campus-showcase-content {
    order: unset;
  }

  .equipment-feature {
    grid-template-columns: 1fr;
  }

  .equipment-feature-image {
    min-height: 300px;
  }

  .equipment-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .wellbeing-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .associations-showcase {
    grid-template-columns: 1fr;
  }

  .testimonials-showcase {
    grid-template-columns: 1fr;
  }

  .testimonial-large {
    flex-direction: column;
  }

  .testimonial-large-image {
    width: 100%;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .page-hero-tall {
    min-height: 50vh;
  }

  .gallery-strip-item {
    width: 220px;
    height: 150px;
  }

  .intro-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-collage {
    height: 350px;
  }

  .collage-main {
    width: 100%;
    height: 60%;
    position: relative;
  }

  .collage-small {
    display: none;
  }

  .events-timeline {
    gap: 1rem;
  }

  .event-card {
    flex: 0 0 250px;
  }

  .campus-secondary-images {
    grid-template-columns: 1fr;
  }

  .equipment-grid-compact {
    grid-template-columns: 1fr;
  }

  .equipment-feature-content {
    padding: 2rem;
  }

  .wellbeing-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wellbeing-img-1 {
    grid-row: span 1;
    height: 250px;
  }

  .wellbeing-img-2,
  .wellbeing-img-3 {
    height: 180px;
  }

  .association-card-large {
    flex-direction: column;
  }

  .association-card-image {
    width: 100%;
    min-height: 180px;
  }

  .testimonial-large-content {
    padding: 1.5rem;
  }

  .testimonial-large-content blockquote {
    font-size: 1.1rem;
  }
}

/* ============================================
   À PROPOS PAGE
   ============================================ */

/* Mission Section */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.mission-text .section-title {
  margin-bottom: 1.5rem;
}

.mission-text .lead-text {
  font-size: 1.15rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.mission-text p {
  color: var(--gray-600);
  line-height: 1.8;
}

.mission-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--prestige-red);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.badge-year {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.25rem;
}

/* Director Section */
.director-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: center;
}

.director-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.director-image img {
  width: 100%;
  height: auto;
  display: block;
}

.director-text .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.director-text .section-title {
  margin-bottom: 1.5rem;
}

.director-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  padding-left: 2rem;
  border-left: 4px solid var(--prestige-red);
}

.director-info {
  display: flex;
  flex-direction: column;
}

.director-info strong {
  font-size: 1.1rem;
  color: var(--blue-excellence);
}

.director-info span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--prestige-red);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(123, 30, 58, 0.1), rgba(123, 30, 58, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--prestige-red), var(--prestige-red-dark));
}

.value-icon svg {
  color: var(--prestige-red);
  transition: var(--transition);
}

.value-card:hover .value-icon svg {
  color: var(--white);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.value-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--prestige-red);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-600);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--blue-excellence);
  color: var(--white);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--prestige-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.stat-item .stat-sublabel {
  display: block;
}

/* Partners Section */
.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.partner-category h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-logo {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.logo-placeholder {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Director Placeholder Image */
.director-image-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.director-placeholder-icon {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.director-placeholder-icon svg {
  color: var(--gray-400);
}

/* Director Contact */
.director-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.director-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.director-contact-item svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

.director-contact-item a {
  color: var(--prestige-red);
  text-decoration: none;
  transition: var(--transition);
}

.director-contact-item a:hover {
  color: var(--prestige-red-dark);
}

/* Team Grid 2 columns */
.team-grid-two {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card-large {
  display: grid;
  grid-template-columns: 280px 1fr;
  text-align: left;
  overflow: visible;
}

.team-card-large .team-image {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}

.team-card-large .team-content {
  text-align: left;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card-large .team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card-large .team-role {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.team-card-large .team-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Team Placeholder */
.team-image-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.team-placeholder svg {
  color: var(--gray-400);
}

/* Team Contact Info */
.team-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.team-contact-item svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

.team-contact-item a {
  color: var(--prestige-red);
  text-decoration: none;
  transition: var(--transition);
}

.team-contact-item a:hover {
  color: var(--prestige-red-dark);
}

/* Section Dark Blue */
.section-dark-blue {
  background: var(--blue-excellence);
  padding: 5rem 0;
}

/* Partners Showcase */
.partners-showcase {
  margin-bottom: 4rem;
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.partner-logo-large {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner-logo-large:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.partner-logo-large img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-mel img {
  max-height: 60px;
  max-width: 250px;
}

/* Partners Academic Section */
.partners-academic {
  text-align: center;
}

.partners-academic-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.partner-academic-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-academic-logo {
  width: 200px;
  height: 120px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.partner-academic-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-academic-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.partner-academic-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Responsive for Team and Partners */
@media (max-width: 1024px) {
  .team-grid-two {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-card-large {
    grid-template-columns: 1fr;
  }

  .team-card-large .team-image {
    height: 300px;
    border-radius: 20px 20px 0 0;
  }

  .team-card-large .team-content {
    text-align: center;
  }

  .team-contact-info {
    align-items: center;
  }

  .partners-row {
    gap: 1.5rem;
  }

  .partner-logo-large {
    padding: 1rem 1.5rem;
    height: 60px;
  }

  .partner-logo-large img {
    max-height: 35px;
    max-width: 120px;
  }

  .partner-academic-card {
    flex-direction: column;
    text-align: center;
  }

  .partner-academic-logo {
    width: 100%;
    max-width: 300px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .director-image-placeholder {
    min-height: 300px;
  }

  .director-placeholder-icon {
    width: 120px;
    height: 120px;
  }

  .director-placeholder-icon svg {
    width: 60px;
    height: 60px;
  }

  .partner-logo-large {
    padding: 0.75rem 1rem;
    height: 50px;
  }

  .partner-logo-large img {
    max-height: 30px;
    max-width: 100px;
  }
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.certification-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.certification-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-excellence), var(--blue-excellence-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.certification-icon svg {
  color: var(--white);
}

.certification-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.certification-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* À Propos Responsive */
@media (max-width: 1024px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-image {
    order: -1;
  }

  .director-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .director-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .director-quote {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
}

/* ============================================
   ACTUALITÉS PAGE
   ============================================ */

/* Page Hero Small */
.page-hero-sm {
  min-height: 40vh;
}

/* News Filters */
.news-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--prestige-red);
  color: var(--prestige-red);
}

.filter-btn.active {
  background: var(--prestige-red);
  border-color: var(--prestige-red);
  color: var(--white);
}

/* News Featured */
.news-featured {
  margin-bottom: 3rem;
}

.news-card-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.news-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.news-featured-image {
  position: relative;
  min-height: 320px;
  max-height: 380px;
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card-featured:hover .news-featured-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--prestige-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.news-date,
.news-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.news-date svg,
.news-author svg {
  color: var(--prestige-red);
}

.news-featured-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-featured-excerpt {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 1.5rem;
}

.news-card-content .news-meta {
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--prestige-red);
  transition: var(--transition);
}

.news-link:hover {
  gap: 0.75rem;
}

.news-link svg {
  transition: var(--transition);
}

/* News Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover {
  border-color: var(--prestige-red);
  color: var(--prestige-red);
}

.pagination-btn.active {
  background: var(--prestige-red);
  border-color: var(--prestige-red);
  color: var(--white);
}

.pagination-next {
  width: auto;
  padding: 0 1rem;
}

/* Newsletter Section */
.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-text .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.newsletter-text .section-title {
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--prestige-red);
}

.newsletter-form .btn {
  white-space: nowrap;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Actualités Responsive */
@media (max-width: 1024px) {
  .news-card-featured {
    grid-template-columns: 1fr;
  }

  .news-featured-image {
    min-height: 250px;
    max-height: 300px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-image {
    min-height: 200px;
    max-height: 250px;
  }

  .news-featured-content {
    padding: 1.25rem;
  }

  .news-featured-title {
    font-size: 1.25rem;
  }

  .news-featured-excerpt {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prestige-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.contact-form-header .section-title {
  margin-bottom: 0.75rem;
}

.contact-form-header p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.contact-form .required {
  color: var(--prestige-red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--prestige-red);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--prestige-red);
  text-decoration: underline;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.campus-contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.campus-contact-flag {
  margin-bottom: 1rem;
}

.campus-contact-flag img {
  height: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.campus-contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 0.25rem;
}

.campus-contact-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prestige-red);
  background: rgba(123, 30, 58, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.campus-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-detail svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--gray-600);
}

.contact-detail a:hover {
  color: var(--prestige-red);
}

/* Quick Links */
.contact-quick-links {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.contact-quick-links h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.quick-link:hover {
  background: rgba(123, 30, 58, 0.1);
  color: var(--prestige-red);
}

.quick-link svg {
  width: 20px;
  height: 20px;
  color: var(--prestige-red);
}

/* Contact Social */
.contact-social {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.contact-social h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 12px;
  color: var(--gray-600);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue-excellence);
  color: var(--white);
}

/* Admission Steps */
.admission-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.admission-step {
  text-align: center;
  position: relative;
}

.admission-step::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -1rem;
  width: calc(100% - 70px);
  height: 2px;
  background: linear-gradient(to right, var(--prestige-red), var(--blue-excellence));
}

.admission-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--prestige-red), var(--prestige-red-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.admission-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.admission-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

.admission-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.admission-cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-excellence);
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  color: var(--prestige-red);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Map Section */
.map-section {
  height: 400px;
  background: var(--gray-200);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-excellence) 0%, var(--prestige-red) 100%);
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.map-content {
  text-align: center;
  color: var(--white);
}

.map-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.map-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .admission-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .admission-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }

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

  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }

  .admission-steps {
    grid-template-columns: 1fr;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ADMISSION TIMELINE - Visual Path
   ============================================ */

.admission-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin: 3rem 0;
  align-items: stretch;
}

.admission-timeline-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--prestige-red), var(--prestige-gold), var(--blue-excellence), #27ae60);
  border-radius: 4px;
  z-index: 0;
}

.admission-step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 4px solid var(--prestige-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prestige-red);
  box-shadow: 0 8px 30px rgba(123, 30, 58, 0.2);
  transition: var(--transition);
}

.admission-step-card:nth-child(3) .step-icon {
  border-color: var(--prestige-gold);
  color: var(--prestige-gold);
  box-shadow: 0 8px 30px rgba(229, 196, 137, 0.3);
}

.admission-step-card:nth-child(4) .step-icon {
  border-color: var(--blue-excellence);
  color: var(--blue-excellence);
  box-shadow: 0 8px 30px rgba(3, 34, 76, 0.2);
}

.admission-step-card:nth-child(5) .step-icon,
.step-icon-success {
  border-color: #27ae60 !important;
  color: #27ae60 !important;
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2) !important;
}

.step-number-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--prestige-red), #a02a4c);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(123, 30, 58, 0.3);
}

.admission-step-card:nth-child(3) .step-number-badge {
  background: linear-gradient(135deg, var(--prestige-gold), #d4a855);
  color: var(--blue-excellence);
}

.admission-step-card:nth-child(4) .step-number-badge {
  background: linear-gradient(135deg, var(--blue-excellence), #041d3d);
}

.admission-step-card:nth-child(5) .step-number-badge,
.step-number-success {
  background: linear-gradient(135deg, #27ae60, #1e8449) !important;
  color: var(--white) !important;
}

.step-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admission-step-card:hover .step-content {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.admission-step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-excellence);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.step-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.35rem 0;
}

.step-checklist li::before {
  content: '✓';
  color: var(--prestige-red);
  font-weight: bold;
}

.step-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 3px solid var(--prestige-red);
}

.step-highlight svg {
  color: var(--prestige-red);
  flex-shrink: 0;
}

.step-highlight span {
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 500;
}

.step-highlight-success {
  border-left-color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
}

.step-highlight-success svg,
.step-highlight-success span {
  color: #27ae60;
}

.admission-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border-radius: 16px;
  border: 2px dashed var(--prestige-gold);
}

.admission-cta p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* Responsive Admission Timeline */
@media (max-width: 1200px) {
  .admission-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .admission-timeline-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .admission-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .admission-step-card {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .step-icon-wrapper {
    margin-bottom: 0;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .step-number-badge {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    top: -5px;
    right: -5px;
  }

  .step-content {
    flex: 1;
    padding: 1rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }
}

/* ============================================
   CANDIDATURE WIZARD MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem 3rem;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--prestige-red);
  color: var(--white);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--blue-excellence);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Wizard Progress Steps */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--gray-200);
  z-index: 0;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.wizard-step-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  color: var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.wizard-step span {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
  transition: var(--transition);
}

.wizard-step.active .wizard-step-icon {
  background: var(--prestige-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(123, 30, 58, 0.3);
}

.wizard-step.active span {
  color: var(--prestige-red);
}

.wizard-step.completed .wizard-step-icon {
  background: #27ae60;
  color: var(--white);
}

.wizard-step.completed span {
  color: #27ae60;
}

/* Wizard Panels */
.wizard-form {
  position: relative;
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-excellence);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--prestige-gold);
}

/* Wizard Form Enhanced Styling */
.wizard-form .form-group {
  margin-bottom: 1.5rem;
}

.wizard-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.wizard-form .form-group input,
.wizard-form .form-group select,
.wizard-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  transition: var(--transition-fast);
}

.wizard-form .form-group input:focus,
.wizard-form .form-group select:focus,
.wizard-form .form-group textarea:focus {
  outline: none;
  border-color: var(--prestige-red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 30, 58, 0.1);
}

.wizard-form .form-group input::placeholder,
.wizard-form .form-group textarea::placeholder {
  color: var(--gray-400);
}

.wizard-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.wizard-form .form-row .form-group {
  margin-bottom: 1.5rem;
}

.wizard-form .form-row-three {
  grid-template-columns: repeat(3, 1fr);
}

/* Error state */
.wizard-form .form-group input.error,
.wizard-form .form-group select.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

/* Required asterisk */
.wizard-form .required {
  color: var(--prestige-red);
}

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* File Upload Styling */
.file-upload-group {
  margin-bottom: 0;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  min-height: 140px;
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.file-upload-label svg {
  color: var(--gray-400);
  transition: var(--transition);
}

.file-upload-label span {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.file-upload-wrapper:hover .file-upload-label {
  border-color: var(--prestige-red);
  background: rgba(123, 30, 58, 0.05);
}

.file-upload-wrapper:hover .file-upload-label svg {
  color: var(--prestige-red);
}

.file-upload-wrapper.has-file .file-upload-label {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

.file-upload-wrapper.has-file .file-upload-label svg {
  color: #27ae60;
}

.file-name {
  display: block;
  font-size: 0.85rem;
  color: #27ae60;
  margin-top: 0.5rem;
  font-weight: 500;
}

.form-help {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* Recap Sections */
.recap-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 12px;
}

.recap-section h4 {
  font-size: 0.95rem;
  color: var(--prestige-red);
  margin-bottom: 1rem;
  font-weight: 600;
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.recap-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.recap-item .recap-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recap-item .recap-value {
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}

.recap-files {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recap-file {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  border-radius: 6px;
}

.recap-file svg {
  color: #27ae60;
  flex-shrink: 0;
}

.recap-file span {
  font-size: 0.85rem;
  color: var(--gray-700);
}

/* Wizard Navigation */
.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.wizard-navigation .btn {
  min-width: 140px;
}

/* Wizard Success */
.wizard-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(39, 174, 96, 0);
  }
}

.wizard-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-excellence);
  margin-bottom: 1rem;
}

.wizard-success p {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.wizard-success .btn {
  margin-top: 1.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .wizard-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .file-upload-label {
    min-height: 100px;
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 640px) {
  .modal-header h2 {
    font-size: 1.4rem;
  }

  .wizard-progress::before {
    left: 20px;
    right: 20px;
  }

  .wizard-step-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .wizard-step span {
    font-size: 0.65rem;
  }

  .wizard-panel h3 {
    font-size: 1.1rem;
  }

  .recap-grid {
    grid-template-columns: 1fr;
  }

  .wizard-navigation {
    flex-direction: column;
  }

  .wizard-navigation .btn {
    width: 100%;
  }
}
