/* ===== VARIABLES CSS FASHION ===== */
:root {
  --primary-color: #912976;
  --primary-dark: #7a2263;
  --secondary-color: #673ab7;
  --accent-color: #ff4081;
  --gold: #ffd700;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gray-900: #212529;
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Inter", sans-serif;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-fashion: 0 20px 40px rgba(145, 41, 118, 0.15);
  --radius-fashion: 25px;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  box-shadow: var(--shadow-fashion);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-800);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(233, 30, 99, 0.2);
}

.logo-text h2 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo-text span {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
  font-weight: 300;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-xl);
  list-style: none;
}

.nav-link {
  color: var(--gray-800);
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../images/two-african-dressmaker-woman-sews-clothes-sewing-machine-tailor-office-black-seamstress-girls.jpg") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 70%,
      rgba(255, 64, 129, 0.2) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 30%,
      rgba(233, 30, 99, 0.2) 0%,
      transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(233, 30, 99, 0.3) 100%);
  z-index: 1;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.03) 80px,
      rgba(255, 255, 255, 0.03) 160px);
  z-index: 1;
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--spacing-md);
  margin-top: 80px;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow:
    2px 2px 20px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(233, 30, 99, 0.3);
  line-height: 1.1;
  animation: titleGlow 4s ease-in-out infinite alternate;
  letter-spacing: -0.02em;
}

@keyframes titleGlow {
  0% {
    text-shadow:
      2px 2px 20px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(233, 30, 99, 0.3);
  }

  100% {
    text-shadow:
      2px 2px 20px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(233, 30, 99, 0.5);
  }
}

.hero-title .highlight {
  background: linear-gradient(45deg, var(--gold), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.hero-cta .btn-primary,
.hero-cta .btn-outline {
  padding: 14px 28px;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-fashion);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(233, 30, 99, 0.3);
  background: url("https://images.unsplash.com/photo-1594736797933-d0401ba2fe65?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80") center/cover;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(233, 30, 99, 0.4);
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }

  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(233, 30, 99, 0.15),
      rgba(255, 64, 129, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-fashion);
}

.hero-stats {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--spacing-lg);
  border-radius: var(--radius-fashion);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
  width: 90%;
  border: 1px solid rgba(233, 30, 99, 0.1);
  animation: statsFloat 6s ease-in-out infinite;
}

@keyframes statsFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== PRESENTATION ===== */
.presentation {
  padding: calc(var(--spacing-xxl) * 2) 0;
  background: var(--white);
}

.presentation-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.presentation-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xxl) * 1.5);
}

.presentation-header h2 {
  color: var(--black);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.presentation-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.presentation-header p {
  font-size: 1.3rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-xxl) * 1.5);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: var(--spacing-xl);
}

.feature-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg,
      rgba(233, 30, 99, 0.05),
      rgba(255, 64, 129, 0.05));
  border-radius: var(--radius-fashion);
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: var(--white);
  box-shadow: var(--shadow-fashion);
}

.feature-text h3 {
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.feature-text p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.presentation-visual {
  position: relative;
}

.visual-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-fashion);
  overflow: hidden;
  box-shadow: var(--shadow-fashion);
  background: url("") center/cover;
  position: relative;
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--spacing-xl);
  color: var(--white);
}

.visual-overlay h4 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.visual-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.visual-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  box-shadow: var(--shadow-fashion);
}

/* ===== FORMATIONS ===== */
.formations-preview {
  padding: calc(var(--spacing-xxl) * 2) 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.formations-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.formation-card {
  background: var(--white);
  border-radius: var(--radius-fashion);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.formation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-fashion);
}

.formation-card.featured {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
  transform: scale(1.05);
}

.formation-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image.modelisme {
  background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80") center/cover;
}

.card-image.stylisme {
  background: url("https://images.unsplash.com/photo-1509631179647-0177331693ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80") center/cover;
}

.card-image.couture {
  background: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80") center/cover;
}

.card-image.accessoires {
  background: url("https://images.unsplash.com/photo-1553062407-98eeb64c6a62?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80") center/cover;
}

.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(233, 30, 99, 0.3),
      rgba(255, 64, 129, 0.3));
}

.card-content {
  padding: var(--spacing-xl);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.card-icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: var(--white);
  box-shadow: var(--shadow-fashion);
}

.formation-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.card-header h3 {
  flex: 1;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
}

.formation-card.featured .card-header h3 {
  color: var(--white);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: var(--gray-600);
}

.formation-card.featured .card-content p {
  color: rgba(255, 255, 255, 0.9);
}

.card-content ul {
  margin-bottom: var(--spacing-lg);
  list-style: none;
}

.card-content li {
  padding: 8px 0;
  position: relative;
  padding-left: var(--spacing-md);
  font-size: 1rem;
  color: var(--gray-600);
}

.formation-card.featured .card-content li {
  color: rgba(255, 255, 255, 0.9);
}

.card-content li::before {
  content: "✨";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.card-footer {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.formation-card.featured .card-footer {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: calc(var(--spacing-xxl) * 2) 0;
  background: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80") center/cover;
  position: relative;
  color: var(--white);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7),
      rgba(233, 30, 99, 0.8));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.cta-content p {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  color: var(--white);
  padding: calc(var(--spacing-xxl) * 1.5) 0 var(--spacing-lg);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--accent-color),
      var(--gold));
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

/* 
.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
} */

.footer-logo-text h3 {
  font-size: 2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.footer-logo-text p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-contact {
  margin-top: var(--spacing-md);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--spacing-sm);
}

/* ===== TÉMOIGNAGES ===== */
.temoignages {
  padding: calc(var(--spacing-xxl) * 2) 0;
  background: var(--white);
}

.temoignages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

.temoignage-card {
  background: linear-gradient(135deg,
      rgba(233, 30, 99, 0.05),
      rgba(255, 64, 129, 0.05));
  border-radius: var(--radius-fashion);
  padding: var(--spacing-xl);
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: var(--transition);
  position: relative;
}

.temoignage-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-fashion);
}

.temoignage-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: var(--font-primary);
  opacity: 0.3;
}

.temoignage-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.author-info h4 {
  color: var(--black);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.author-info p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== FORMATIONS RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-grid {
    gap: var(--spacing-lg);
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  .logo-text h2 {
    font-size: 1.5rem;
  }

  .logo-text span {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-image {
    height: 400px;
    transform: perspective(1000px) rotateY(0deg);
  }

  .hero-cta {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

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

  .stat-label {
    font-size: 0.8rem;
  }

  .presentation-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .presentation-visual {
    order: -1;
  }

  .formations-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .formation-card {
    margin: 0 auto;
    max-width: 400px;
  }

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-xl);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .nav-cta {
    display: none;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .formations-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== STYLES PAGE ÉCOLE ===== */
.header-stats {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.header-stats .stat {
  text-align: center;
  color: var(--white);
}

.header-stats .stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-primary);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom,
      var(--primary-color),
      var(--accent-color));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xxl);
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-primary);
  box-shadow: var(--shadow-fashion);
  z-index: 2;
  position: relative;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-fashion);
  box-shadow: var(--shadow-elegant);
  margin: 0 var(--spacing-lg);
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.timeline-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-date {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .timeline-content {
    margin-left: var(--spacing-lg);
    margin-right: 0;
  }

  .header-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* ===== HERO ÉCOLE UNIQUE ===== */
.hero-ecole {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
  padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-ecole::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%,
      rgba(233, 30, 99, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(103, 58, 183, 0.1) 0%,
      transparent 50%);
  pointer-events: none;
}

.hero-ecole-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.hero-text-center h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 800;
}

.hero-text-center h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.hero-text-center p {
  font-size: 1.3rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
  line-height: 1.6;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.stat-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-fashion);
  box-shadow: var(--shadow-elegant);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(233, 30, 99, 0.1);
}

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

.stat-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-primary);
  margin-bottom: var(--spacing-xs);
}

.stat-text {
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* ===== MISSION VISION UNIQUE ===== */
.mission-vision {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg,
      rgba(233, 30, 99, 0.05),
      rgba(255, 64, 129, 0.05));
  padding: var(--spacing-xxl);
  border-radius: var(--radius-fashion);
  border: 2px solid rgba(233, 30, 99, 0.1);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-fashion);
  border-color: var(--primary-color);
}

.card-icon-large {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
  display: block;
}

.mission-card h3,
.vision-card h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.mission-card p,
.vision-card p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.mission-points {
  list-style: none;
  text-align: left;
}

.mission-points li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: var(--spacing-lg);
  color: var(--gray-700);
  font-weight: 500;
}

.mission-points li::before {
  content: "✨";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .mission-card,
  .vision-card {
    padding: var(--spacing-lg);
  }
}

/* =================================
   FORMATIONS PAGE STYLES
   ================================= */

/* Hero Formations */
.hero-formations {
  position: relative;
  height: 80vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-formations .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-formations .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-formations .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(233, 30, 99, 0.7) 0%,
      rgba(103, 58, 183, 0.6) 100%);
}

.hero-formations .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-formations .hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.hero-formations .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-formations h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.hero-formations .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-formations .hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 30px 50px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-formations .stat-item {
  text-align: center;
}

.hero-formations .hero-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 30px 50px;
  border-radius: 25px;
  border: 1px solid rgba(233, 30, 99, 0.1);
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
  z-index: 10;
}

.hero-formations .stat-item {
  text-align: center;
}

.hero-formations .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-primary);
  margin-bottom: 8px;
}

.hero-formations .stat-label {
  font-size: 1rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Formations Quick Nav CSS moved to formations.php as requested */

/* Enhanced Formation Sections */
.formations-detailed {
  padding: 100px 0;
}

.formation-section {
  margin-bottom: 100px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.formation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
}

.formation-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.formation-icon {
  font-size: 4rem;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.formation-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.formation-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

.formation-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--primary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.formation-content {
  padding: 50px;
}

.formation-description h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 20px;
}

.formation-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Enhanced Curriculum Grid */
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.year-block {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 30px;
  border-left: 5px solid var(--primary-color);
}

.year-block h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.semester {
  margin-bottom: 25px;
}

.semester h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.semester ul {
  list-style: none;
  padding: 0;
}

.semester li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.5;
}

.semester li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Skills and Techniques Grids */
.skills-grid,
.techniques-showcase,
.specializations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.skill-category,
.technique-item,
.specialization {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.skill-category:hover,
.technique-item:hover,
.specialization:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.1);
}

.skill-category h4,
.technique-item h4,
.specialization h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.skill-category ul {
  list-style: none;
  padding: 0;
}

.skill-category li {
  padding: 5px 0;
  color: var(--text-light);
}

/* Formation CTA */
.formation-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

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

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter {
  display: inline-block;
}

.btn-scroll {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-scroll:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Enhanced Navigation Cards */
.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-intro p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.nav-card.featured {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  color: white;
  transform: scale(1.05);
}

.nav-card.featured h3,
.nav-card.featured p {
  color: white;
}

.nav-card.featured .nav-features span {
  color: rgba(255, 255, 255, 0.9);
}

.nav-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  font-size: 0.9rem;
}

.nav-features span {
  color: var(--text-light);
  font-weight: 500;
}

/* Interactive Formation Cards */
.formation-section {
  position: relative;
  overflow: visible;
}

.formation-section::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(233, 30, 99, 0.1),
      rgba(103, 58, 183, 0.1));
  border-radius: 25px;
  z-index: -1;
  transition: all 0.3s ease;
}

.formation-section:hover::after {
  transform: translate(-10px, -10px);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

/* Progress Indicators */
.formation-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-light);
}

.progress-step.active {
  color: var(--primary-color);
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.progress-step.active .progress-dot {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Enhanced Testimonial Cards */
.formation-testimonial {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
  border-left: 5px solid var(--primary-color);
  position: relative;
}

.formation-testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.author-info h5 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Enhanced Hero Formations - School Style */
.hero-formations {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-formations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
  animation: float 25s infinite linear;
}

.hero-formations-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-formations .hero-text-center {
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

.hero-formations .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-formations h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-formations h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0.95;
}

.hero-formations p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Premium Advantages Section */
.advantages-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.advantage-premium-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 30px;
}

.advantage-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-premium-card:hover::before {
  transform: scaleX(1);
}

.advantage-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(233, 30, 99, 0.15);
}

.advantage-visual {
  flex-shrink: 0;
  position: relative;
}

.advantage-icon-large {
  font-size: 4rem;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.advantage-badge {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--primary-color));
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advantage-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.advantage-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.advantage-features li {
  padding: 5px 0;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.advantage-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .advantages-premium-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advantage-premium-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-formations h1 {
    font-size: 2.8rem;
  }

  .hero-formations h2 {
    font-size: 1.4rem;
  }

  .hero-formations p {
    font-size: 1.1rem;
  }

  .advantage-premium-card {
    padding: 30px 20px;
  }
}

/* Premium Advantages Section */
.advantages-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.advantage-premium {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.advantage-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-premium:hover::before {
  transform: scaleX(1);
}

.advantage-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(233, 30, 99, 0.15);
}

.advantage-visual {
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

.advantage-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
}

.advantage-icon-xl {
  font-size: 5rem;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.advantage-content {
  flex: 1;
}

.advantage-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.advantage-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.advantage-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight {
  background: linear-gradient(135deg,
      rgba(233, 30, 99, 0.1),
      rgba(103, 58, 183, 0.1));
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(233, 30, 99, 0.2);
}

@media (max-width: 1024px) {
  .advantages-premium {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .advantage-premium {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }

  .advantage-number {
    position: static;
    margin: 0 auto 15px;
  }

  .advantage-highlights {
    justify-content: center;
  }
}

/* Hero Galerie Enhanced */
.hero-galerie {
  background: linear-gradient(135deg, #e91e63 0%, #673ab7 100%);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-galerie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
  animation: float 25s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

.hero-galerie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-galerie .hero-text-center {
  text-align: center;
  color: white;
}

.hero-galerie .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 15px 30px;
  border-radius: 35px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-galerie h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
}

.hero-galerie h2 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0.95;
  font-style: italic;
}

.hero-galerie p {
  font-size: 1.4rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Galerie Photos */
.galerie-photos {
  padding: 100px 0;
}

.galerie-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e91e63;
  color: #e91e63;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #e91e63, #ff4081);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.galerie-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
}

.galerie-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
}

.galerie-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.galerie-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-galerie h1 {
    font-size: 3rem;
  }

  .hero-galerie h2 {
    font-size: 1.6rem;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}