/* ===== VARIABLES CSS FASHION ===== */
:root {
  --primary-color: #0a0a0a;
  --primary-dark: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #ff881a;
  --gold: #ff881a;
  --gold-light: #ffe8cc;
  --green: #00FF01;
  --green-light: #ccffcc;
  --nude: #f4e4bc; /* Added nude tone */
  --white: #fcfcfc;
  --black: #0a0a0a;
  --gray-100: #f5f5f5; /* Chic Beige */
  --gray-600: #888888;
  --gray-800: #333333;
  --gray-900: #111111;
  --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: 6rem; /* Increased for breathing room */
  --transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-premium: 0 40px 100px rgba(0, 0, 0, 0.1);
  --radius-premium: 0px; /* Sharp modernist edges */
}

/* ===== 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: white;
  overflow-x: hidden;
  cursor: none;
}



/* ===== 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);
}

.section-padding {
  padding: 120px 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-premium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: var(--black);
  box-shadow: 0 5px 15px rgba(255, 136, 26, 0.3);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 1, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.text-reveal-mask {
  overflow: hidden;
  display: block;
}

.text-reveal-content {
  display: block;
  transform: translateY(110%);
  animation: revealText 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes revealText {
  to { transform: translateY(0); }
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

/* ==== PREMIUM SCROLL INDICATOR ==== */
.scroll-indicator-premium {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: fadeIn 1s forwards 2s;
}

.scroll-indicator-premium .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--green), var(--gold), transparent);
  animation: lineGrow 1.5s ease-in-out infinite;
}

.scroll-indicator-premium span {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

@keyframes lineGrow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ==== WHATSAPP BUTTON ==== */
.hero-whatsapp-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.hero-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.hero-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hero-premium {
  position: relative;
  height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(1.1);
  transition: transform 2s var(--transition);
}

.hero-premium:hover .hero-bg-wrapper {
  transform: scale(1);
}

.hero-overlay-cinematic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, transparent 60%, rgba(10,10,10,0.8) 100%);
  z-index: 2;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.85); /* Dark transparent */
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 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: 2rem;
  background: linear-gradient(45deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin: 0;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
  display: block;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-link {
  color: var(--white);
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 0;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 0;
}

.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;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  z-index: 2;
}

.hero.full-screen {
  height: 100vh;
  background: url("assets/images/bg.jpeg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 var(--spacing-md);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s forwards 0.5s;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s forwards 0.7s;
}

.gold-text {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s forwards 0.9s;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s forwards 1.1s;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 1s forwards 2s;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* End of Core Sections */

.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;
}

/* Bouton WhatsApp - hero section (sélecteur renforcé) */

section.hero .hero-whatsapp-btn,
.hero-whatsapp-btn {
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 1;
  transform: none;
  transition: box-shadow 0.3s, transform 0.3s;
}


section.hero .hero-whatsapp-btn:hover,
.hero .hero-whatsapp-btn:hover {
  background: #20bd5a !important;
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5) !important;
  color: #fff !important;
}

.hero .hero-whatsapp-btn svg {
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0;
}

@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;
}

/* ===== EDITORIAL ABOUT SECTION ===== */
.about-editorial {
  background: var(--white);
  color: var(--black);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.editorial-visual .image-wrapper {
  position: relative;
  overflow: hidden;
}

.editorial-visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  clip-path: inset(0 0 0 0);
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.editorial-visual:hover img {
  transform: scale(1.05);
}

.floating-label {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 30px;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right top;
}

.section-tag {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.editorial-title {
  margin-bottom: 30px;
}

.editorial-lead {
  font-size: 1.25rem;
  color: var(--gray-800);
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.7;
}

.editorial-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* ── Stats Strip ── */
.stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-600);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-100);
  flex-shrink: 0;
}

/* ── Edit Feature refined ── */
.edit-feature {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.edit-feature h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edit-feature p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.text-link {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--gold);
  padding-left: 10px;
}

.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;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 80px;
}

.title-with-line {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.title-with-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.premium-feature-card {
  position: relative;
  background: var(--white);
  padding: 40px 30px;
  border: 1px solid var(--gray-100);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  height: 100%;
  cursor: default;
}

.premium-feature-card:hover {
  border-top-color: var(--gold);
  border-color: var(--gray-100);
  border-top-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.07);
}

.card-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}

.card-icon-styled {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.premium-feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
}

.premium-feature-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.campus-locations-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}

.location-item span {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-800);
}

.location-sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.presentation-visual {
  position: relative;
}

.visual-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-fashion);
  overflow: hidden;
  box-shadow: var(--shadow-fashion);
  background: url("../ProjetMode/assets/images/bg1.jpeg") 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("./assets/images/bd.jpeg") center/cover;
}

.card-image.stylisme {
  background: url("./assets/images/WhatsApp\ Image\ 2026-02-20\ at\ 21.10.45.jpeg") center/cover;
}

.card-image.couture {
  background: url("./assets/images/WhatsApp\ Image\ 2026-02-20\ at\ 21.10.35.jpeg") center/cover;
}

.card-image.accessoires {
  background: url("./assets/images/WhatsApp\ Image\ 2026-01-28\ at\ 16.10.11.jpeg") 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("./assets/images/WhatsApp\ Image\ 2026-02-20\ at\ 21.10.40.jpeg") center/cover;
  position: relative;
  color: var(--white);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  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;
  }

  .hero-whatsapp-btn {
    right: 1rem;
    bottom: 1.5rem;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .hero-whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }

  .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;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-top: 15px;
  font-weight: 300;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.catalogue-item {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.catalogue-visual {
  width: 100%;
  height: 100%;
  position: relative;
}

.catalogue-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.catalogue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
  transition: var(--transition);
}

.catalogue-item:hover img {
  transform: scale(1.1);
}

.item-meta {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.item-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.item-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  max-width: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.catalogue-item:hover .item-desc {
  opacity: 1;
  transform: translateY(0);
}

.catalogue-link {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  padding-bottom: 5px;
  align-self: flex-start;
}

.catalogue-link:hover {
  color: var(--gold);
}

/* ===== SIGNATURE GALLERY ===== */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 15px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.mosaic-item.tall {
  grid-row: span 2;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.mosaic-hover span {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid var(--white);
  padding: 10px 20px;
}

.mosaic-item:hover img {
  transform: scale(1.1);
}

.mosaic-item:hover .mosaic-hover {
  opacity: 1;
}

/* ===== TESTIMONIALS EDITORIAL ===== */
.testimonials-editorial {
  background: var(--white);
}

.testimonial-slider-minimal {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 40px;
  color: var(--black);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-status {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===== PREMIUM CTA ===== */
.cta-premium {
  position: relative;
  padding: 150px 0;
  background: url("assets/images/bg2.jpeg") center/cover fixed;
  color: var(--white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.cta-content-styled {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content-styled h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.cta-content-styled p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ===== 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;
  }
}

/* ===== CUSTOM PREMIUM CURSOR ===== */
.cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), height 0.35s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.35s, opacity 0.3s;
  opacity: 0.7;
  will-change: transform;
}
.cur-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cur-ring.hover {
  width: 58px;
  height: 58px;
  border-color: var(--accent, #00FF01);
  opacity: 0.4;
}

@media (hover: none), (pointer: coarse) {
  .cur-ring, .cur-dot {
    display: none;
  }
  * { cursor: auto !important; }
}


/* ===== PREMIUM RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-row: unset;
    grid-column: unset;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .editorial-visual img {
    height: 350px;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-item {
    height: 400px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-quote {
    font-size: 1.4rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== PREMIUM FOOTER ===== */
.footer {
  background: #060606;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-section h4 {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 25px;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: var(--gold);
}

.footer-section ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-logo-text h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 5px;
}

.footer-section > p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 15px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== WHY-PREMIUM DARK VARIANT ===== */
.why-premium {
  background: var(--black);
  color: var(--white);
}

.why-premium .title-with-line {
  color: var(--white);
}

.why-premium .section-tag {
  color: var(--gold);
}

.why-premium .premium-feature-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.why-premium .premium-feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.why-premium .premium-feature-card h3 {
  color: var(--white);
}

.why-premium .campus-locations-minimal {
  color: rgba(255,255,255,0.6);
}

.why-premium .campus-tag {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
}


/* ---------------------------------------------
   UNIFIED NAVIGATION (Premium)
--------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(15px);
  transition: all 0.4s var(--transition);
  border-bottom: 1px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav.scrolled {
  background: rgba(253, 250, 245, 0.99);
  height: 70px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.nav-brand-logo {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
}
.nav-brand-text h2 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0;
}
.nav-brand-text span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-800);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-actions {
 display: flex;
 align-items: center;
 gap: 20px;
}
.nav-cta {
 font-size: 0.7rem;
 text-transform: uppercase;
 letter-spacing: 2px;
 padding: 10px 25px;
 border: 1px solid var(--gold);
 color: var(--black);
 text-decoration: none;
 transition: all 0.4s;
}
.nav-cta:hover { background: var(--gold); color: white; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  margin-right: -10px;
  background: transparent;
  border: none;
}
.nav-burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
/* No need for distinct scrolled state if header is always light */



/* Mobile Menu Active States */
.nav-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
 .nav { padding: 0 30px; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 80%;
 height: 100vh;
 background: var(--white);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 40px;
 visibility: hidden;
 opacity: 0;
 transition: all 0.4s var(--transition);
 box-shadow: -10px 0 30px rgba(0,0,0,0.05);
 z-index: 2000;
 }
 .nav-links.active {
    right: 0 !important;
    visibility: visible;
    opacity: 1;
  }
 .nav-burger { display: flex; }
 .nav-link { font-size: 1.2rem; }
}

@media (max-width: 480px) {
 .nav-brand-text { display: none; }
 .nav-links { width: 100%; }
}

