/* ===== UCARE Teaching School — CSS Premium ===== */

:root {
  --violet: #6B21A8;
  --violet-light: #7C3AED;
  --violet-dark: #4C1D95;
  --pink: #EC4899;
  --pink-light: #F472B6;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-50: #F8F8FC;
  --gray-100: #F0EFF8;
  --gray-200: #E5E3F0;
  --gray-600: #6B6B8A;
  --gray-800: #2A2A40;
  --gradient: linear-gradient(135deg, #6B21A8, #EC4899);
  --gradient-r: linear-gradient(135deg, #EC4899, #6B21A8);
  --shadow-sm: 0 2px 8px rgba(107,33,168,0.12);
  --shadow-md: 0 8px 32px rgba(107,33,168,0.18);
  --shadow-lg: 0 24px 64px rgba(107,33,168,0.24);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* ===== UTILITIES ===== */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-light {
  background: linear-gradient(135deg, #F472B6, #E9D5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-desc { color: rgba(255,255,255,0.8); }

.section-tag {
  display: inline-block;
  background: rgba(107,33,168,0.1);
  color: var(--violet);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.2);
  color: white;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.animate-fade-left { opacity: 0; animation: fadeLeft 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--violet); line-height: 1.1; }
.logo-sub { font-size: 11px; color: var(--gray-600); font-weight: 500; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-800);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--violet); background: rgba(107,33,168,0.08); }
.btn-nav {
  background: var(--gradient) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}
.btn-nav:hover { box-shadow: 0 4px 16px rgba(107,33,168,0.4) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 5% 80px;
  gap: 60px;
  overflow: hidden;
  position: relative;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--violet);
  top: -200px; right: -100px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -150px; left: -100px;
}
.hero-shape-3 {
  width: 300px; height: 300px;
  background: #7C3AED;
  top: 40%; left: 30%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-subtitle strong { color: var(--pink-light); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.stat-card { flex: 1; text-align: center; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(107,33,168,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(107,33,168,0.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
/* Hero visual */
.hero-visual {
  position: relative;
  flex: 1;
  max-width: 500px;
  z-index: 2;
}
.hero-card { position: relative; }
.main-card {
  border-radius: 24px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.school-illustration { width: 100%; height: 100%; }
.card-badge-float {
  position: absolute;
  bottom: -16px;
  right: 24px;
}
.float-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.float-badge.success { background: #10B981; color: white; }
.mini-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}
.card-top-right { top: -20px; right: -30px; animation: float 5s ease-in-out infinite 1s; }
.card-bottom-left { bottom: 40px; left: -40px; animation: float 5s ease-in-out infinite 2s; }
.mini-icon { font-size: 28px; }
.mini-title { font-size: 13px; font-weight: 700; color: var(--black); }
.mini-sub { font-size: 11px; color: var(--gray-600); }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: float 1.5s ease-in-out infinite;
  margin: 0 auto;
}

/* ===== CYCLES ===== */
.cycles { background: var(--gray-50); }
.cycles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cycle-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cycle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.cycle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cycle-card:hover::before { opacity: 1; }
.cycle-card.featured {
  background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 100%);
  border-color: transparent;
  color: white;
}
.cycle-card.featured::before { opacity: 1; background: linear-gradient(135deg, #EC4899, #F59E0B); }
.cycle-badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.cycle-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cycle-badge {
  display: inline-block;
  background: rgba(107,33,168,0.08);
  color: var(--violet);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.featured .cycle-badge { background: rgba(255,255,255,0.15); color: white; }
.cycle-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.cycle-card p { font-size: 14px; line-height: 1.7; color: var(--gray-600); margin-bottom: 20px; }
.featured p { color: rgba(255,255,255,0.8); }
.cycle-features { list-style: none; margin-bottom: 24px; }
.cycle-features li { display: flex; gap: 8px; font-size: 13px; color: var(--gray-600); margin-bottom: 8px; align-items: flex-start; }
.featured .cycle-features li { color: rgba(255,255,255,0.8); }
.check { color: var(--violet); font-weight: 700; flex-shrink: 0; }
.featured .check { color: #F472B6; }
.cycle-btn {
  display: block;
  text-align: center;
  background: var(--gradient);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.featured .cycle-btn { background: white; color: var(--violet); }
.cycle-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,33,168,0.35); }

/* ===== RÉSULTATS ===== */
.resultats {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0533 50%, #0A0A0A 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.resultats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(107,33,168,0.3) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(236,72,153,0.2) 0%, transparent 60%);
}
.resultats .container { position: relative; z-index: 1; }
.resultats-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.result-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}
.result-trophy { font-size: 64px; margin-bottom: 16px; }
.result-number-big {
  font-size: 96px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.result-text-big { font-size: 20px; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.result-exam { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.result-rate { display: flex; align-items: center; gap: 12px; flex-direction: column; }
.rate-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.rate-fill { height: 100%; background: var(--gradient); border-radius: 100px; width: 0; transition: width 1.5s ease; }
.result-rate span { font-size: 16px; font-weight: 700; color: var(--pink-light); }
.resultats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.result-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.result-stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.rstat-icon { font-size: 32px; margin-bottom: 12px; }
.rstat-number { font-size: 40px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.rstat-number span { font-size: 24px; }
.rstat-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===== ACTIVITÉS ===== */
.activites { background: white; }
.activites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activite-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.activite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activite-card.featured-activite {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  grid-row: 1;
}
.activite-emoji { font-size: 40px; margin-bottom: 16px; }
.activite-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.activite-card p { font-size: 14px; line-height: 1.7; color: var(--gray-600); margin-bottom: 16px; }
.featured-activite p { color: rgba(255,255,255,0.85); }
.activite-tag {
  display: inline-block;
  background: rgba(107,33,168,0.1);
  color: var(--violet);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.featured-activite .activite-tag { background: rgba(255,255,255,0.2); color: white; }

/* ===== GALERIE ===== */
.galerie { background: var(--gray-50); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.galerie-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.galerie-item:hover { transform: scale(1.02); }
.galerie-item.large { grid-column: span 2; }
.galerie-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galerie-item:hover img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,33,168,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-weight: 600;
  font-size: 15px;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-icon { font-size: 28px; }

/* ===== TÉMOIGNAGES ===== */
.temoignages { background: white; }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.temoignage-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.temoignage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.temoignage-card.featured-temo {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: scale(1.02);
}
.stars { color: #F59E0B; font-size: 20px; margin-bottom: 16px; }
.featured-temo .stars { color: #FDE68A; }
.temoignage-text { font-size: 15px; line-height: 1.75; color: var(--gray-600); margin-bottom: 24px; font-style: italic; }
.featured-temo .temoignage-text { color: rgba(255,255,255,0.9); }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--gray-600); }
.featured-temo .author-role { color: rgba(255,255,255,0.7); }

/* ===== INSCRIPTION ===== */
.inscription { background: var(--gray-50); }
.inscription-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.inscription-info .section-tag { text-align: left; }
.inscription-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.inscription-info p { color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.inscription-steps { margin-bottom: 32px; }
.step { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.step-num {
  width: 36px; height: 36px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text { display: flex; flex-direction: column; gap: 2px; }
.step-text strong { font-size: 15px; font-weight: 700; }
.step-text span { font-size: 13px; color: var(--gray-600); }
.inscription-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-item.whatsapp { background: #25D366; color: white; }
.contact-item.whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
/* Form */
.inscription-form-wrapper { background: white; border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md); }
.inscription-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  transition: all 0.2s;
  background: white;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(107,33,168,0.1); }
.form-group textarea { resize: vertical; }
.btn-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-form:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ===== CONTACT ===== */
.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.contact-card:hover { border-color: var(--violet); box-shadow: var(--shadow-sm); }
.contact-icon { font-size: 28px; flex-shrink: 0; }
.contact-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--violet); }
.contact-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.contact-card a { color: var(--gray-600); text-decoration: none; }
.contact-card a:hover { color: var(--violet); }
.map-wrapper { position: sticky; top: 100px; }
.map-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
  border: 2px dashed var(--gray-200);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.map-pin-animation { position: relative; width: 60px; height: 60px; }
.map-pin { font-size: 48px; position: relative; z-index: 1; }
.map-ripple {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  animation: ripple 2s infinite;
}
.map-info { display: flex; flex-direction: column; gap: 6px; }
.map-info strong { font-size: 18px; color: var(--black); }
.map-info span { font-size: 14px; color: var(--gray-600); }
.map-link {
  display: inline-block;
  margin-top: 8px;
  background: var(--gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.map-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,33,168,0.35); }

/* ===== FOOTER ===== */
.footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-desc { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--violet); color: white; border-color: var(--violet); }
.footer-links-col h4,
.footer-contact-col h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a,
.footer-contact-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links-col a:hover,
.footer-contact-col a:hover { color: var(--pink-light); }
.footer-contact-col p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s;
}
.footer-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-credit a { color: var(--violet); text-decoration: none; }

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.chat-bubble { position: relative; }
.chat-toggle {
  width: 60px; height: 60px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(107,33,168,0.5);
  transition: all 0.3s;
}
.chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(107,33,168,0.6); }
.chat-notification {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: #EF4444;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}
.chat-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}
.chat-window.open { display: flex; animation: fadeUp 0.3s ease; }
.chat-header {
  background: var(--gradient);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.chat-avatar {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-name { font-size: 15px; font-weight: 700; }
.chat-status { font-size: 12px; opacity: 0.9; display: flex; align-items: center; gap: 4px; }
.status-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; }
.chat-close-btn { background: none; border: none; color: white; font-size: 22px; cursor: pointer; padding: 0 4px; opacity: 0.8; }
.chat-close-btn:hover { opacity: 1; }
.chat-messages {
  padding: 16px;
  overflow-y: auto;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.bot .msg-bubble { background: var(--gray-100); color: var(--black); border-bottom-left-radius: 4px; }
.user .msg-bubble { background: var(--gradient); color: white; border-bottom-right-radius: 4px; }
.chat-quick-btns { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.quick-btn {
  background: rgba(107,33,168,0.08);
  color: var(--violet);
  border: 1px solid rgba(107,33,168,0.15);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.quick-btn:hover { background: var(--violet); color: white; }
.typing-dots { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.typing-dots span {
  width: 8px; height: 8px;
  background: var(--gray-600);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  background: white;
}
.chat-input-area input {
  flex: 1;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input-area input:focus { border-color: var(--violet); }
.chat-send {
  width: 42px; height: 42px;
  background: var(--gradient);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.08); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resultats-main { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 99; justify-content: center; align-items: center; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 100; }
  .cycles-grid { grid-template-columns: 1fr; }
  .activites-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-item.large { grid-column: span 1; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .inscription-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .chat-window { width: 320px; right: -8px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .activites-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80%; height: 1px; }
}
