/* ========================================
   FEMINA WORLD - STYLE COMPLET
   ======================================== */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #341814;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }

/* === COLORS === */
:root {
  --primary: #CD43AC;
  --secondary: #CD43AC;
  --accent: #CD43AC;
  --dark: #341814;
  --light: rgba(205,67,172,0.06);
}

/* === TYPOGRAPHY === */
.section-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-label::before { content: ''; margin-right: 0; }
.section-label--center { text-align: center; }
.section-label--center::after { content: ''; margin-left: 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #341814;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title * { text-transform: uppercase; }
.amp { font-family: 'Poppins', sans-serif !important; text-transform: none !important; font-weight: 500; }

/* Tous les titres de sections en majuscules */
.programs h2, .about h2, .womenup h3, .womenup h4,
.mission h3, .alumni h2, .sororite h2, .gallery h2,
.testimonials h2, .partners h2, .team h2, .faq h2,
.contact h2, .news h2 {
  text-transform: uppercase;
}
.section-title--center { text-align: center; }
.accent { color: var(--primary); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}
.btn--purple { background: var(--primary); color: #fff; box-shadow: 0 5px 20px rgba(205, 67, 172, 0.3); }
.btn--purple:hover { background: var(--secondary); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(205, 67, 172, 0.4); }
.btn--full { width: 100%; justify-content: center; }

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}
.header.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header__nav { display: flex; gap: 12px; }
.header__nav-link { padding: 10px 0; }
.header__logo-img { height: 38px; width: 38px; border-radius: 50%; object-fit: cover; }
.header__logo-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; }
.header.scrolled .header__logo-text { color: #341814; }
.header__logo-accent { color: var(--secondary); }
.header__nav { display: flex; flex: 1; justify-content: center; gap: 12px; }
.header__link { font-family: 'Playfair Display', serif; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.9); transition: color 0.3s; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.3px; }
.header.scrolled .header__link { color: #341814; }
.header__link:hover { color: var(--secondary) !important; }
.header__btn {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: #fff;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 12px;
  transition: all 0.3s;
}
.header__btn:hover { background: var(--secondary); color: #fff; }
.header__burger { display: none; font-size: 24px; color: #fff; padding: 8px; }
.header.scrolled .header__burger { color: #341814; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--primary);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #1a1a2e;
  z-index: 2;
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 42% 100%);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 40%);
  pointer-events: none;
  z-index: 2;
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.9s ease;
  background-color: #1a1a2e;
}
.hero__slide.active { opacity: 1; transform: translateX(0); z-index: 2; }
.hero__slide.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  background-color: var(--primary);
}
.hero__content-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75,29,107,0.93) 0%, rgba(205,67,172,0.85) 100%);
}
.hero__content-inner {
  position: relative;
  z-index: 3;
  max-width: clamp(320px, 40vw, 440px);
  margin-left: 7%;
  margin-right: auto;
  padding: 40px 0;
}
.floating-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatShape 15s ease-in-out infinite;
}
.floating-shape--1 { width: 320px; height: 320px; background: var(--secondary); top: -8%; right: -6%; animation-delay: 0s; }
.floating-shape--2 { width: 220px; height: 220px; background: #fff; bottom: -10%; left: -8%; animation-delay: -5s; }
.floating-shape--3 { width: 140px; height: 140px; background: var(--secondary); bottom: 18%; right: 12%; animation-delay: -10s; }
.floating-shape--4 { width: 90px; height: 90px; background: #fff; top: 22%; left: 10%; animation-delay: -15s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-40px) rotate(180deg); }
}

.hero__sub {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.95;
}
.hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}
.text-gradient {
  background: linear-gradient(45deg, #fff, #FF5FA2, #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* === TITRES PRINCIPAUX - EFFET BRILLANT ROSE === */
.section-title,
.hero__title,
.contact__title,
.womenup__approach-title,
.womenup__poles-title,
.womenup__timeline-title,
.womenup__results-title,
.womenup__cta h3,
.womenup__alumni-exp h3 {
  position: relative;
  overflow: hidden;
}

.section-title::after,
.hero__title::after,
.contact__title::after,
.womenup__approach-title::after,
.womenup__poles-title::after,
.womenup__timeline-title::after,
.womenup__results-title::after,
.womenup__cta h3::after,
.womenup__alumni-exp h3::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 95, 162, 0.45) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: titleShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes titleShine {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__desc { font-family: 'Playfair Display', serif; font-size: 17px; line-height: 1.8; margin-bottom: 32px; opacity: 0.95; font-style: italic; }
.hero__cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s;
}
.hero__cta--primary { background: #fff; color: #000; }
.hero__cta--primary:hover { background: rgba(255,255,255,0.85); transform: translateY(-3px); }
.hero__cta--secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.hero__cta--secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

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

.hero__arrows { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; left: 50%; right: 0; display: flex; justify-content: space-between; padding: 0 16px; }
.hero__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
.hero__arrow:hover { background: var(--primary); }
.hero__dots { position: absolute; bottom: 30px; left: 50%; right: 0; z-index: 6; display: flex; gap: 10px; justify-content: center; }
.hero__dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s; cursor: pointer; }
.hero__dot.active { background: #fff; transform: scale(1.2); }

/* === MARQUEE BANNER === */
.marquee-banner {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  padding: 12px 0;
  animation: gradientShift 5s ease infinite;
  overflow: hidden;
}
.marquee-banner__track { display: flex; gap: 50px; width: max-content; animation: marquee 20s linear infinite; }
.marquee-banner__track span { color: #fff; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === STATS === */
.stats { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); padding: 80px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-10px); background: #f0f0f0; }
.stat-card__icon { font-size: 36px; color: var(--secondary); margin-bottom: 15px; animation: bounce 2s infinite; }
.stat-card__number { font-family: 'Poppins', sans-serif; font-size: 48px; font-weight: 700; color: #000; }
.stat-card__label { font-family: 'Poppins', sans-serif; font-size: 14px; color: #000; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* === SLIDE IN ANIMATIONS === */
.animate-from-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-from-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-from-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animated {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

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

/* === NEWS SECTION === */
.news { background: var(--light); padding: 100px 0; }
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.news__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.news__card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(205,67,172,0.15); }
.news__image { position: relative; overflow: hidden; height: 200px; }
.news__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news__card:hover .news__image img { transform: scale(1.1); }
.news__date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
}
.news__date span { display: block; font-size: 20px; }
.news__date small { font-size: 11px; font-weight: 400; }
.news__content { padding: 25px; }
.news__category {
  display: inline-block;
  background: rgba(205,67,172,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.news__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #341814;
  margin-bottom: 10px;
}
.news__content p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 15px; }
.news__link { color: var(--accent); font-weight: 600; font-size: 14px; }
.news__link:hover { color: var(--secondary); }

/* === TESTIMONIALS SECTION === */
.testimonials { background: #fff; padding: 100px 0; }
.testimonials .section-title { text-align: center; }
.testimonials__slider { position: relative; max-width: 900px; margin: 50px auto 0; overflow: hidden; }
.testimonials__track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 0 20px; }
.testimonial-card__content {
  background: var(--light);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 4px solid var(--primary);
}
.testimonial-card__content p { font-size: 18px; line-height: 1.8; color: #555; font-style: italic; }
.testimonial-card__content strong { color: var(--primary); }
.testimonial-card__footer { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-card__avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.testimonial-card__footer h4 { font-size: 16px; font-weight: 600; color: var(--primary); }
.testimonial-card__footer p { font-size: 14px; color: #888; }
.testimonials__nav { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.testimonials__prev, .testimonials__next { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.testimonials__prev:hover, .testimonials__next:hover { background: var(--secondary); transform: scale(1.1); }

@media (max-width: 1024px) {
  .news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .news__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .news__card { padding: 15px; }
  .news__title { font-size: 18px; }
}

/* === ABOUT === */
.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__badges { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
.about__founder-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(205,67,172,0.1); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 50px; }
.about__line { width: 80px; height: 3px; background: var(--primary); margin: 20px 0; border-radius: 2px; }
.about__desc { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 15px; }
.about__quote { font-style: italic; color: var(--primary); border-left: 4px solid var(--primary); padding-left: 20px; margin-bottom: 35px; }

/* Round image with animated border */
.about__right { position: relative; display: flex; justify-content: center; align-items: center; padding: 40px; }

.about__image-container {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 200%;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about__image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Dashed rotating border */
.about__image-container::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 3px dashed var(--secondary);
  animation: spin 15s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating icons */
.about__image-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(205,67,172,0.3);
  animation: float 3s ease-in-out infinite;
}

.about__image-icon--1 { top: -5px; right: -5px; animation-delay: 0s; }
.about__image-icon--2 { bottom: 20px; left: -25px; animation-delay: 1s; }
.about__image-icon--3 { bottom: -5px; right: 20px; animation-delay: 2s; }

.about__right:hover .about__image-container {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .about__image-container { width: 250px; height: 250px; }
  .about__image-icon { width: 40px; height: 40px; font-size: 14px; }
}

/* === TYPEWRITER ANIMATION === */
.typewriter {
  width: 100%;
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}

.about__desc {
  min-height: 3.6em;
}

.about__quote {
  min-height: 1.8em;
}

/* === MISSION === */
.mission { background: var(--light); }
.mission__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.mission__card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s;
  transform-style: preserve-3d;
}
.mission__card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(205,67,172,0.15); }
.mission__icon { width: 70px; height: 70px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: rgba(205,67,172,0.1); border-radius: 50%; color: var(--accent); font-size: 28px; transition: all 0.3s; }
.mission__card:hover .mission__icon { background: var(--primary); color: #fff; transform: scale(1.1); }
.mission__title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.mission__desc { font-size: 15px; color: #666; line-height: 1.7; }

/* === PROGRAMS - ANIMATED CARDS === */
.programs { background: #fff; padding-bottom: 80px; }
.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.program-card {
  height: 320px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.program-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.program-card:hover .program-card__inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.program-card__front,
.program-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.program-card__front {
  background: #341814;
}

.program-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
}

.program-card:hover .program-card__bg {
  opacity: 1;
  transform: scale(1.1);
}

.program-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  color: #fff;
}

.program-card__icon {
  font-size: 40px;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
  color: var(--accent);
}

.program-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  right: 20px;
}

.program-card__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.program-card__content p {
  font-size: 14px;
  opacity: 0.9;
}

.program-card__back {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-transform: rotateY(180deg) translateZ(1px);
  transform: rotateY(180deg) translateZ(1px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card__back-content {
  padding: 30px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.program-card__back-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.program-card__back-content p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 15px;
  line-height: 1.6;
}

.program-card__back-content ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.program-card__back-content ul li {
  font-size: 12px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-card__back-content ul li i {
  color: #FFD700;
}

.btn--small {
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .programs__grid { grid-template-columns: 1fr; }
  .program-card { height: auto; aspect-ratio: 788/900; }
}

/* === GALLERY === */
.gallery { background: #fff; padding: 100px 0; }
.gallery__subtitle { text-align: center; font-size: 16px; color: #666; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.gallery__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery__cat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

.gallery__cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.gallery__cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__cat-card:hover .gallery__cat-bg {
  transform: scale(1.08);
}

.gallery__cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52,24,20,0.85) 0%, rgba(52,24,20,0.1) 50%, transparent 100%);
  transition: background 0.4s;
}

.gallery__cat-card:hover::after {
  background: linear-gradient(to top, rgba(205,67,172,0.85) 0%, rgba(205,67,172,0.2) 50%, transparent 100%);
}

.gallery__cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__cat-card:hover .gallery__cat-content {
  transform: translateY(0);
}

.gallery__cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.3s, transform 0.3s;
  color: #fff;
  font-size: 20px;
}

.gallery__cat-card:hover .gallery__cat-icon {
  background: #fff;
  transform: scale(1.1);
  color: var(--primary);
}

.gallery__cat-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.gallery__cat-count {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(52,24,20,0.95);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gallery-modal__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
}

.gallery-modal__header h3 span {
  color: var(--primary);
}

.gallery-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-modal__close:hover {
  background: var(--primary);
}

.gallery-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-modal__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

.gallery-modal__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(205,67,172,0);
  transition: background 0.3s;
}

.gallery-modal__item:hover::after {
  background: rgba(205,67,172,0.2);
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.gallery-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(205,67,172,0.8);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10002;
  transition: background 0.3s;
}

.gallery-lightbox__close:hover {
  background: var(--primary);
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(205,67,172,0.8);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10002;
  transition: background 0.3s;
}

.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  background: var(--primary);
}

.gallery-lightbox__prev {
  left: 20px;
}

.gallery-lightbox__next {
  right: 20px;
}

.gallery-lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  z-index: 10002;
}

@media (max-width: 1024px) {
  .gallery__categories { grid-template-columns: repeat(2, 1fr); }
  .gallery-modal__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .gallery__categories { grid-template-columns: repeat(2, 1fr); }
  .gallery-modal__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .gallery__categories { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .gallery-modal__grid { grid-template-columns: repeat(2, 1fr); }
}

/* === SORORITÉ === */
.sororite { background: linear-gradient(135deg, #CD43AC 0%, #3a1752 100%); }
.sororite .section-title { color: #fff; }
.sororite .section-label { color: rgba(255,255,255,0.75); }
.sororite__content { max-width: 800px; margin: 0 auto; text-align: center; }
.sororite__line { width: 80px; height: 3px; background: rgba(255,255,255,0.5); margin: 20px auto; border-radius: 2px; }
.sororite__desc { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 30px; }
.sororite__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.sororite__feature { display: flex; align-items: flex-start; gap: 15px; background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.sororite__feature-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(205,67,172,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 20px; flex-shrink: 0; }
.sororite__feature h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.sororite__feature p { font-size: 14px; color: #666; line-height: 1.6; }
.sororite .btn--purple { background: #fff; color: #CD43AC; box-shadow: 0 5px 20px rgba(0,0,0,0.25); }
.sororite .btn--purple:hover { background: #f3e8ff; color: #CD43AC; }

.sororite__gallery { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin-top: 60px; }
.sororite__gallery-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.sororite__gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sororite__gallery-item:hover img { transform: scale(1.1); }
.sororite__gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(205,67,172,0); transition: background 0.3s; }
.sororite__gallery-item:hover::after { background: rgba(205,67,172,0.2); }

.sororite-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10001; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.sororite-lightbox.open { opacity: 1; visibility: visible; }
.sororite-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 10px 50px rgba(0,0,0,0.5); }
.sororite-lightbox__close { position: fixed; top: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%; background: rgba(205,67,172,0.8); border: none; color: #fff; font-size: 24px; cursor: pointer; z-index: 10002; transition: background 0.3s; }
.sororite-lightbox__close:hover { background: var(--primary); }
.sororite-lightbox__prev, .sororite-lightbox__next { position: fixed; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(205,67,172,0.8); border: none; color: #fff; font-size: 24px; cursor: pointer; z-index: 10002; transition: background 0.3s; }
.sororite-lightbox__prev:hover, .sororite-lightbox__next:hover { background: var(--primary); }
.sororite-lightbox__prev { left: 20px; }
.sororite-lightbox__next { right: 20px; }
.sororite-lightbox__counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.7); color: #fff; padding: 10px 25px; border-radius: 25px; font-size: 14px; z-index: 10002; }

@media (max-width: 1024px) {
  .sororite__gallery { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 768px) {
  .sororite__gallery { grid-template-columns: repeat(4, 1fr); }
  .sororite__features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sororite__gallery { grid-template-columns: repeat(3, 1fr); }
}
/* === WOMEN UP === */
.womenup { background: linear-gradient(180deg, #fff 0%, rgba(205,67,172,0.06) 50%, #fff 100%); }

.womenup__intro { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.womenup__subtitle { font-size: 18px; font-weight: 500; color: var(--primary); font-style: italic; margin-bottom: 25px; }
.womenup__quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--dark);
  border-left: 4px solid #CD43AC;
  padding: 15px 25px;
  margin: 25px 0;
  background: rgba(205,67,172,0.06);
  border-radius: 0 12px 12px 0;
  text-align: left;
}
.womenup__desc { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 12px; }

/* Conviction & Vision */
.womenup__pillars-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.womenup__conviction, .womenup__vision {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.womenup__conviction:hover, .womenup__vision:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(205,67,172,0.12); }
.womenup__conviction-icon, .womenup__vision-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(205,67,172,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px; margin-bottom: 18px;
}
.womenup__conviction h3, .womenup__vision h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.womenup__conviction p, .womenup__vision p { font-size: 15px; color: #666; line-height: 1.8; }

/* Approche */
.womenup__approach {
  background: linear-gradient(135deg, #CD43AC 0%, #CD43AC 100%);
  border-radius: 24px; padding: 50px 40px; margin-bottom: 60px;
  text-align: center; color: #fff;
}
.womenup__approach-title {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.womenup__approach-desc { font-size: 16px; opacity: 0.9; line-height: 1.7; max-width: 700px; margin: 0 auto 35px; }
.womenup__approach-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.womenup__step { text-align: center; }
.womenup__step-icon {
  width: 55px; height: 55px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 22px; transition: all 0.3s;
}
.womenup__step:hover .womenup__step-icon { background: #fff; color: var(--primary); transform: scale(1.1); }
.womenup__step h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.womenup__step p { font-size: 12px; opacity: 0.8; line-height: 1.5; }

/* Piliers */
.womenup__poles { margin-bottom: 60px; }
.womenup__poles-title {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
  text-align: center; color: var(--dark); margin-bottom: 35px;
  text-transform: uppercase;
}
.womenup__poles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.womenup__pole {
  background: #fff; padding: 30px 20px; border-radius: 16px; text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06); transition: all 0.3s;
  border-top: 4px solid transparent;
}
.womenup__pole:hover { transform: translateY(-8px); border-top-color: #CD43AC; box-shadow: 0 15px 40px rgba(205,67,172,0.15); }
.womenup__pole-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(205,67,172,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px; margin: 0 auto 15px; transition: all 0.3s;
}
.womenup__pole:hover .womenup__pole-icon { background: var(--primary); color: #fff; }
.womenup__pole h4 {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px; line-height: 1.3;
}
.womenup__pole p { font-size: 13px; color: #666; line-height: 1.6; }

/* Timeline */
.womenup__timeline {
  background: #fff; border-radius: 24px; padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06); margin-bottom: 60px;
}
.womenup__timeline-title {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
  text-align: center; color: var(--dark); margin-bottom: 40px;
  text-transform: uppercase;
}
.womenup__timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.womenup__timeline-grid::before {
  content: ''; position: absolute; top: 30px; left: 15%; right: 15%;
  height: 3px; background: linear-gradient(90deg, #CD43AC, #CD43AC);
  z-index: 0;
}
.womenup__timeline-step { text-align: center; position: relative; z-index: 1; }
.womenup__timeline-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #CD43AC, #CD43AC);
  color: #fff; font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 5px 20px rgba(205,67,172,0.3);
}
.womenup__timeline-content h4 {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.womenup__timeline-content p { font-size: 14px; color: #666; line-height: 1.7; }

/* Résultats */
.womenup__results { text-align: center; margin-bottom: 60px; }
.womenup__results-title {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
  text-transform: uppercase;
}
.womenup__results-desc { font-size: 16px; color: #666; margin-bottom: 30px; }
.womenup__results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; max-width: 900px; margin: 0 auto; }
.womenup__result {
  display: flex; align-items: center; gap: 12px; background: #fff;
  padding: 16px 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left; transition: all 0.3s;
}
.womenup__result:hover { transform: translateX(5px); box-shadow: 0 6px 20px rgba(205,67,172,0.1); }
.womenup__result i { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.womenup__result span { font-size: 15px; color: var(--dark); font-weight: 500; }

/* Alumni Experience */
.womenup__alumni-exp {
  background: linear-gradient(135deg, #EDE7F6 0%, #fff 100%);
  border-radius: 24px; padding: 50px 40px; text-align: center; margin-bottom: 50px;
}
.womenup__alumni-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px; box-shadow: 0 8px 25px rgba(205,67,172,0.3);
}
.womenup__alumni-exp h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.womenup__alumni-exp p { font-size: 16px; color: #555; line-height: 1.7; max-width: 700px; margin: 0 auto 30px; }
.womenup__alumni-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.womenup__alumni-feat {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 500; color: var(--dark);
  box-shadow: 0 3px 12px rgba(0,0,0,0.06); transition: all 0.3s;
}
.womenup__alumni-feat:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.womenup__alumni-feat i { color: var(--primary); font-size: 14px; }
.womenup__alumni-feat:hover i { color: #fff; }

/* CTA */
.womenup__cta {
  text-align: center; background: linear-gradient(135deg, #CD43AC, #CD43AC);
  border-radius: 24px; padding: 50px 40px; color: #fff;
}
.womenup__cta h3 {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
  margin-bottom: 15px;
}
.womenup__cta p { font-size: 16px; opacity: 0.9; line-height: 1.7; max-width: 700px; margin: 0 auto 30px; }
.womenup__cta .btn--purple { background: #fff; color: #CD43AC; box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
.womenup__cta .btn--purple:hover { background: #CD43AC; color: #fff; transform: translateY(-3px); }

/* Women Up Toggle Button */
.womenup__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #CD43AC, #CD43AC);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(123, 47, 212, 0.35);
  font-family: inherit;
}
.womenup__toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 47, 212, 0.5);
}
.womenup__toggle-icon {
  transition: transform 0.35s ease;
  font-size: 14px;
}
.womenup__toggle-btn.is-open .womenup__toggle-icon {
  transform: rotate(180deg);
}

/* Women Up Hidden Details */
.womenup__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease 0.1s;
}
.womenup__details.is-visible {
  max-height: 5000px;
  opacity: 1;
}

/* Women Up Responsive */
@media (max-width: 1024px) {
  .womenup__poles-grid { grid-template-columns: repeat(3, 1fr); }
  .womenup__approach-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .womenup__pillars-intro { grid-template-columns: 1fr; }
  .womenup__poles-grid { grid-template-columns: repeat(2, 1fr); }
  .womenup__timeline-grid { grid-template-columns: 1fr; }
  .womenup__timeline-grid::before { display: none; }
  .womenup__approach-steps { grid-template-columns: repeat(2, 1fr); }
  .womenup__approach { padding: 35px 25px; }
  .womenup__timeline { padding: 35px 25px; }
}
@media (max-width: 480px) {
  .womenup__poles-grid { grid-template-columns: 1fr; }
  .womenup__approach-steps { grid-template-columns: 1fr; }
  .womenup__results-grid { grid-template-columns: 1fr; }
}

.partnership { background: linear-gradient(135deg, #CD43AC 0%, #3a1752 100%); position: relative; overflow: hidden; }
.partnership .section-title { color: #fff; }
.partnership__header { text-align: center; max-width: 900px; margin: 0 auto 40px; }
.partnership__intro { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.85); margin-top: 15px; }
.partnership .btn--purple { background: #fff; color: #CD43AC; box-shadow: 0 5px 20px rgba(0,0,0,0.25); }
.partnership .btn--purple:hover { background: #f3e8ff; color: #CD43AC; }
.partnership__pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 50px; }
.partnership__pillar { text-align: center; padding: 30px 20px; background: #fff; border-radius: 15px; box-shadow: 0 8px 25px rgba(0,0,0,0.06); transition: all 0.3s; }
.partnership__pillar:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(205,67,172,0.2); }
.partnership__pillar i { font-size: 36px; color: var(--primary); margin-bottom: 15px; }
.partnership__pillar h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.partnership__pillar p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.partnership__cta { text-align: center; margin-top: 30px; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.gallery__item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; aspect-ratio: 1; min-height: 200px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery__item:hover img { transform: scale(1.1); }
.gallery__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(205,67,172,0.9) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 20px; }
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span { color: #fff; font-weight: 600; font-size: 16px; transform: translateY(20px); transition: transform 0.4s; }
.gallery__item:hover .gallery__overlay span { transform: translateY(0); }
.gallery__zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; transition: transform 0.4s; }
.gallery__item:hover .gallery__zoom { transform: translate(-50%, -50%) scale(1); }
@media (max-width: 992px) {
  .partnership__gallery { grid-template-columns: repeat(3, 1fr); }
  .partnership__pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .partnership__gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .partnership__pillars { grid-template-columns: 1fr; }
}

/* === PARTNERS === */
.partners { background: var(--light); }
.partners__track-wrapper { margin-top: 50px; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.partners__track { display: flex; gap: 25px; animation: marquee 25s linear infinite; width: max-content; padding: 10px 0; }
.partners__track:hover { animation-play-state: paused; }
.partners__item { background: #fff; border-radius: 14px; padding: 14px 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); flex-shrink: 0; transition: transform 0.4s, box-shadow 0.4s; }
.partners__item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(205,67,172,0.18); }
.partners__logo { height: 45px; width: auto; max-width: 160px; object-fit: contain; opacity: 1; transition: transform 0.4s; }
.partners__item:hover .partners__logo { transform: scale(1.06); }

.admin-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10003; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.admin-lightbox.open { opacity: 1; visibility: visible; }
.admin-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 10px 50px rgba(0,0,0,0.5); transform: scale(0.85); transition: transform 0.3s ease; }
.admin-lightbox.open img { transform: scale(1); }
.admin-lightbox__close { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%; background: rgba(205,67,172,0.8); border: none; color: #fff; font-size: 24px; cursor: pointer; z-index: 10004; transition: background 0.3s; }
.admin-lightbox__close:hover { background: var(--primary); }

/* === ALUMNI === */
.alumni { background: var(--light); padding: 100px 0; }
.alumni__intro { max-width: 900px; margin: 0 auto 20px; text-align: center; }
.alumni__intro p { font-size: 16px; line-height: 1.8; color: var(--dark); }
.alumni__subtitle { text-align: center; font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 40px; font-style: italic; }

.alumni__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.alumni__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

.alumni__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.alumni__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.alumni__card:hover .alumni__card-bg {
  transform: scale(1.08);
}

.alumni__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52,24,20,0.85) 0%, rgba(52,24,20,0.1) 50%, transparent 100%);
  transition: background 0.4s;
}

.alumni__card:hover::after {
  background: linear-gradient(to top, rgba(205,67,172,0.85) 0%, rgba(205,67,172,0.2) 50%, transparent 100%);
}

.alumni__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.alumni__card:hover .alumni__card-content {
  transform: translateY(0);
}

.alumni__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.3s, transform 0.3s;
  color: #fff;
  font-size: 20px;
}

.alumni__card:hover .alumni__card-icon {
  background: #fff;
  transform: scale(1.1);
  color: var(--primary);
}

.alumni__card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.alumni__card-count {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.alumni__card--coming {
  opacity: 0.7;
}

.alumni__card--coming .alumni__card-bg {
  background: linear-gradient(135deg, #341814 0%, #5a3a2e 100%);
}

.alumni__card--coming:hover::after {
  background: linear-gradient(to top, rgba(150,150,150,0.85) 0%, rgba(150,150,150,0.2) 50%, transparent 100%) !important;
}

.alumni__card--coming .alumni__card-icon {
  background: rgba(255,255,255,0.2);
}

.alumni__card--coming:hover .alumni__card-icon {
  background: rgba(255,255,255,0.3);
}

/* Alumni Modal */
.alumni-modal {
  position: fixed;
  inset: 0;
  background: rgba(52,24,20,0.95);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.alumni-modal.open {
  opacity: 1;
  visibility: visible;
}

.alumni-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.alumni-modal__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
}

.alumni-modal__header h3 span {
  color: var(--primary);
}

.alumni-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.alumni-modal__close:hover {
  background: var(--primary);
}

.alumni-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

.alumni-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.alumni-modal__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.alumni-modal__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.alumni-modal__item:hover img {
  transform: scale(1.05);
}

.alumni-modal__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(205,67,172,0);
  transition: background 0.3s;
}

.alumni-modal__item:hover::after {
  background: rgba(205,67,172,0.2);
}

/* Alumni Lightbox */
.alumni-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.alumni-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.alumni-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.alumni-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(205,67,172,0.8);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10002;
  transition: background 0.3s;
}

.alumni-lightbox__close:hover {
  background: var(--primary);
}

.alumni-lightbox__prev,
.alumni-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(205,67,172,0.8);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10002;
  transition: background 0.3s;
}

.alumni-lightbox__prev:hover,
.alumni-lightbox__next:hover {
  background: var(--primary);
}

.alumni-lightbox__prev {
  left: 20px;
}

.alumni-lightbox__next {
  right: 20px;
}

.alumni-lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  z-index: 10002;
}

@media (max-width: 1024px) {
  .alumni__grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-modal__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .alumni__grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-modal__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .alumni__grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .alumni-modal__grid { grid-template-columns: repeat(2, 1fr); }
}

/* === ADMINISTRATION === */
.team { background: #fff; }
.admin-featured { display: grid; grid-template-columns: 340px 1fr; background: linear-gradient(135deg, #9B26B6 0%, #CD43AC 60%, #FF5FA2 100%); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(205,67,172,0.28); margin-top: 50px; margin-bottom: 40px; }
.admin-featured__media { position: relative; }
.admin-featured__photo { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center; display: block; cursor: zoom-in; transition: transform 0.4s ease; }
.admin-featured__photo:hover { transform: scale(1.04); }
.admin-featured__index { position: absolute; top: 16px; left: 18px; font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 700; color: #fff; opacity: 0.92; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.admin-featured__content { padding: 46px 48px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.admin-featured__label { display: inline-block; align-self: flex-start; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.38); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; padding: 9px 20px; border-radius: 50px; margin-bottom: 20px; }
.admin-featured__name { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.admin-featured__line { width: 60px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, #FF5FA2, #fff); margin-bottom: 20px; }
.admin-featured__desc { font-size: 15px; line-height: 1.75; opacity: 0.92; max-width: 540px; }
.admin-featured__bio-btn { align-self: flex-start; margin-top: 8px; background: #fff; color: #CD43AC; border: none; font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; padding: 6px 12px; border-radius: 50px; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.admin-featured__bio-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.3); }
.admin-featured__bio { max-height: 0; opacity: 0; overflow: hidden; margin: 0; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.92); transition: max-height 0.45s ease, opacity 0.45s ease, margin 0.45s ease, padding 0.45s ease; }
.admin-featured.open .admin-featured__bio { max-height: 10000px; opacity: 1; margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,0.35); }
.admin-featured__bio p { margin: 0 0 12px; }
.admin-featured__bio p:last-child { margin-bottom: 0; }
.admin-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.admin-item { background: #fff; border: 1px solid rgba(205,67,172,0.1); border-radius: 16px; padding: 16px 18px; box-shadow: 0 4px 16px rgba(205,67,172,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.admin-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(205,67,172,0.14); }
.admin-item__row { display: flex; align-items: center; gap: 18px; }
.admin-item__index { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: rgba(205,67,172,0.2); align-self: flex-start; }
.admin-item__photo { width: 76px; height: 96px; object-fit: cover; object-position: top center; border-radius: 12px; flex-shrink: 0; cursor: zoom-in; transition: transform 0.3s ease; }
.admin-item:hover .admin-item__photo { transform: scale(1.06); }
.admin-item__info { flex: 1; min-width: 0; }
.admin-item__name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #341814; margin-bottom: 4px; }
.admin-item__role { font-size: 12.5px; color: #CD43AC; font-weight: 600; line-height: 1.45; }
.admin-item__bio-btn { margin-left: auto; flex-shrink: 0; background: #CD43AC; color: #fff; border: none; font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.4px; padding: 6px 12px; border-radius: 50px; cursor: pointer; transition: opacity 0.3s ease, transform 0.3s ease; }
.admin-item__bio-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.admin-item__bio { max-height: 0; opacity: 0; overflow: hidden; margin: 0; padding-top: 0; color: #5a4b5e; font-size: 13px; line-height: 1.6; transition: max-height 0.45s ease, opacity 0.45s ease, padding 0.45s ease, margin 0.45s ease; }
.admin-item.open .admin-item__bio { max-height: 2000px; opacity: 1; margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(205,67,172,0.18); }

/* === FORMATEURS === */
.formateurs__subtitle { text-align: center; color: rgba(52,24,20,0.65); max-width: 560px; margin: 0 auto 50px; font-size: 15px; }
.formateurs__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.formateur-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 26px rgba(205,67,172,0.12); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.formateur-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(205,67,172,0.2); }
.formateur-card__media { aspect-ratio: 3 / 4; overflow: hidden; background: #fdf0fb; }
.formateur-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.formateur-card:hover .formateur-card__photo { transform: scale(1.06); }
.formateur-card__body { padding: 18px 20px 22px; text-align: center; }
.formateur-card__name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #341814; margin-bottom: 5px; }
.formateur-card__role { font-size: 12.5px; color: #CD43AC; font-weight: 600; line-height: 1.4; }

/* === AMBASSADRICES === */
.ambassadrices__subtitle { text-align: center; color: rgba(52,24,20,0.65); max-width: 560px; margin: 0 auto 50px; font-size: 15px; }
.ambassadrices__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1140px; margin: 0 auto; }
.ambassadrice-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(205,67,172,0.12); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.ambassadrice-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(205,67,172,0.2); }
.ambassadrice-card__media { aspect-ratio: 3 / 4; overflow: hidden; background: #fdf0fb; }
.ambassadrice-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.ambassadrice-card:hover .ambassadrice-card__photo { transform: scale(1.06); }
.ambassadrice-card__body { padding: 20px 22px 24px; text-align: center; }
.ambassadrice-card__name { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: #341814; margin-bottom: 8px; }
.ambassadrice-card__role { font-size: 13px; color: #CD43AC; font-weight: 600; line-height: 1.6; }

/* === FAQ === */
.faq { background: var(--light); }
.faq__list { max-width: 800px; margin: 50px auto 0; }
.faq__item { background: #fff; border-radius: 15px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; font-size: 16px; font-weight: 500; color: #341814; text-align: left; transition: color 0.3s; }
.faq__question:hover { color: var(--primary); }
.faq__question i { color: var(--accent); transition: transform 0.3s; }
.faq__item.active .faq__question i { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; }
.faq__item.active .faq__answer { max-height: 200px; padding: 0 25px 20px; }
.faq__answer p { font-size: 15px; color: #666; line-height: 1.7; }

/* === CONTACT === */
.contact { position: relative; padding: 100px 0; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.contact__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(205,67,172,0.95) 0%, rgba(155,38,182,0.95) 100%); }
.contact__inner { position: relative; z-index: 2; }
.contact__logo { width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; object-fit: cover; }
.contact__title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 10px; }
.contact__subtitle { text-align: center; color: rgba(255,255,255,0.8); margin-bottom: 50px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact__form { display: flex; flex-direction: column; gap: 15px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }
.form-group select option { color: #341814; background: #fff; }
.contact__info-wrap { display: flex; flex-direction: column; gap: 25px; }
.contact__info-item { display: flex; align-items: flex-start; gap: 15px; color: #fff; }
.contact__info-item i { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 50%; color: #fff; font-size: 16px; flex-shrink: 0; }
.contact__info-item h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.contact__info-item p, .contact__info-item a { font-size: 15px; color: #fff; }
.contact__info-item a:hover { color: #fff; }
.contact__social { display: flex; gap: 12px; margin-top: 20px; }
.contact__social a { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.3s; }
.contact__social a:hover { background: var(--secondary); color: #fff; transform: translateY(-5px); }

/* === FOOTER === */
.footer { background: var(--dark); }
.footer__top { padding: 60px 0 40px; }
.footer__top-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer__logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #fff; }
.footer__logo .accent { color: #fff; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 10px; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer__social a:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.footer__links h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer__links a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); padding: 5px 0; transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.5px; }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.4); }

/* === BACK TO TOP === */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; visibility: hidden; transition: all 0.3s; box-shadow: 0 5px 20px rgba(205,67,172,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); transform: translateY(-5px); }

/* === STICKY BOOK === */
.sticky-book { position: fixed; bottom: 30px; left: 30px; z-index: 998; opacity: 0; transform: translateX(-100px); transition: all 0.4s; }
.sticky-book.visible { opacity: 1; transform: translateX(0); }
.sticky-book__btn { display: flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; padding: 14px 25px; border-radius: 50px; font-size: 15px; font-weight: 600; box-shadow: 0 5px 25px rgba(205,67,172,0.4); transition: all 0.3s; }
.sticky-book__btn:hover { background: var(--secondary); transform: scale(1.05); }
.sticky-book__btn i { animation: bounce 1s infinite; }

/* === WHATSAPP === */
.whatsapp-btn { position: fixed; bottom: 100px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; z-index: 999; box-shadow: 0 5px 25px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37,211,102,0.6); }

@media (max-width: 768px) {
  .whatsapp-btn { bottom: 30px; right: 20px; width: 55px; height: 55px; }
}
 


/* === SCROLL PROGRESS === */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); width: 0%; z-index: 10001; transition: width 0.1s; box-shadow: 0 0 10px rgba(205,67,172,0.5); }

/* === RESPONSIVE === */
@media (max-width: 1340px) {
  .header__nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .header__nav.open { display: flex; }
  .header__btn { display: none; }
  .header__burger { display: block; }
}
@media (max-width: 1024px) {
  .hero { display: flex; flex-direction: column; height: auto; }
  .hero__media { position: relative; inset: auto; width: 100%; height: 55vh; clip-path: none; z-index: 1; }
  .hero__content { position: relative; inset: auto; justify-content: center; }
  .hero__content-inner { max-width: 640px; margin: 0 auto; padding: 50px 30px; }
  .hero__arrows, .hero__dots { left: 0; right: 0; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .mission__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .services__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .admin-featured { grid-template-columns: 1fr; }
  .admin-featured__content { padding: 34px 28px; }
  .admin-featured__name { font-size: 28px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top-inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero__media { height: 50vh; }
  .hero__title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .hero__desc { font-size: 16px; }
  .services__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .admin-list { grid-template-columns: 1fr; }
  .ambassadrices__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__arrows { display: none; }
  .sticky-book, .floating-phone { display: none; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .partners { padding: 40px 0; }
  .partners__track { gap: 15px; }
  .partners__item { padding: 10px 14px; border-radius: 10px; }
  .partners__logo { height: 38px; max-width: 110px; }
  .testimonials__slider { padding: 0 20px; }
  .faq__list { padding: 0; }
  .contact__info-wrap { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .hero__sub { font-size: 14px; letter-spacing: 2px; }
  .hero__sub2 { font-size: 10px; letter-spacing: 1.5px; }
  .section-title { font-size: 26px; }
  .section { padding: 60px 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .footer__bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .whatsapp-btn { bottom: 30px; right: 20px; width: 55px; height: 55px; }
  .sticky-book { display: none !important; }
  .programs__grid { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; gap: 10px; }
  .hero__cta { width: 100%; text-align: center; }
  .about__desc, .about__quote { font-size: 14px; }
  .contact__logo { max-width: 120px; }
  .partnership__intro, .partnership__subintro { font-size: 14px; }
  .header__logo-text { display: none; }
}

/* Extra small screens */
@media (max-width: 360px) {
  .container { padding: 0 15px; }
  .section-title { font-size: 22px; }
  .stats__grid { grid-template-columns: 1fr; }
  .partnership__pillars { gap: 15px; }
  .partnership__pillar { padding: 20px 15px; }
}

/* Mobile floating buttons - always visible */
@media (max-width: 768px) {
  .back-to-top {
    opacity: 1 !important;
    visibility: visible !important;
    bottom: 95px !important;
    right: 20px !important;
  }
  .whatsapp-btn {
    bottom: 30px !important;
    right: 20px !important;
  }
}

/* === CONTACT FORM STATUS === */
.contact__form-status {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: none;
}
.contact__form-status.show {
  display: block;
  animation: contactStatusIn 0.3s ease;
}
.contact__form-status--success {
  background: rgba(40, 167, 69, 0.12);
  color: #1e7e34;
  border: 1px solid rgba(40, 167, 69, 0.35);
}
.contact__form-status--error {
  background: rgba(220, 53, 69, 0.10);
  color: #c82333;
  border: 1px solid rgba(220, 53, 69, 0.35);
}
@keyframes contactStatusIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}