/* Reset et styles de base modernes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Barre de contact adaptée aux couleurs AMONH */
.top-bar {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  gap: 30px;
}

.contact-info span {
  align-items: center;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fbbf24;
}

/* Header avec logo AMONH et couleurs adaptées */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;

}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #1e40af;
}

.logo-img,
.footer-logo-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 8px;
}

.logo i {
  font-size: 32px;
  color: #fbbf24;
}

.nav {
  display: flex;
  position: static;
  width: auto;
  background: transparent;
  border-radius: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1e40af;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fbbf24;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Bouton inscription avec couleurs AMONH */
.login-btn {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.login-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
}

/* Section hero avec couleurs AMONH */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 64, 175, 0.8) 50%, rgba(251, 191, 36, 0.6) 100%), 
              url('asset/img/WhatsApp Image 2025-08-12 at 10.03.33 AM.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  color: white;
  max-width: 600px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .highlight {
  color: #fbbf24;
}

/* Ajout du sous-titre pour AMONH */
.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Boutons avec couleurs AMONH */
.btn-primary {
  background-color: #fbbf24;
  color: #000;
  border: 2px solid #fbbf24;
}

.btn-primary:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid #fbbf24;
}

.btn-outline:hover {
  background-color: #fbbf24;
  color: #000;
  transform: translateY(-2px);
}

/* Section statistiques moderne */
.stats {
  background-color: #f8f9fa;
  padding: 80px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 40px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 32px;
  color: #1e40af;
  margin-bottom: 10px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* Sections avec headers modernes */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #fbbf24;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 48px;
  color: #1e40af;
  margin-bottom: 25px;
}

.feature-card h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* News Section */
.news {
  padding: 100px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.news-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.news-item:hover {
  transform: translateY(-5px);
}

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

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  opacity: 0.9;
  background-color: #f3f4f6;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
  opacity: 1;
}

.news-content {
  padding: 30px;
}

.news-date {
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content h3 {
  color: #333;
  margin: 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.news-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease
}

.read-more:hover {
  gap: 12px;
}

/* Section À propos preview */
.about-preview {
  padding: 100px 0;
  background-color: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 30px auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  color: #1e40af;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #555;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.values-list li::before {
  content: "★";
  color: #ffd700;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.stats.about-stats {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  border: 3px solid #ffd700;
  margin-top: 0;
}

.stats.about-stats h2 {
  color: #dc143c;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.8rem;
}

.stats.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stats.about-stats .stat-item {
  background: none;
  padding: 15px 10px;
  text-align: center;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
}

.highlight-item i {
  color: #22c55e;
  font-size: 24px;
}

.highlight-item span {
  font-weight: 500;
  color: #333;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

/* Section Programmes */
.programs {
  padding: 100px 0;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 15px;
}

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

.program-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #dc2626;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.program-icon i {
  color: white;
  font-size: 2rem;
}

.program-card h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.program-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.program-card ul li {
  color: #555;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.program-card ul li::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Section Partenaires */
.partners {
  padding: 100px 0;
  background-color: #f8fafc;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.partner-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.partner-item:hover {
  transform: translateY(-5px);
  border-color: #fbbf24;
}

.partner-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.partner-icon i {
  color: white;
  font-size: 2rem;
}

.partner-item:hover .partner-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.partner-item h4 {
  color: #1e40af;
  font-weight: 600;
}

/* Section FAQ Preview */
.faq-preview {
  padding: 100px 0;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 25px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* Contact Page */
.contact-content {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2,
.contact-form h2 {
  color: #dc143c;
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-item {
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
}

.contact-item h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Page d'inscription */
.page-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.inscription-form {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #dc143c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

.form-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  color: #dc143c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h3 i {
  color: #ffd700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.checkbox-label:hover {
  background-color: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label.required {
  margin-bottom: 15px;
}

.link {
  color: #dc143c;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.inscription-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
}

.info-card h3 {
  color: #dc143c;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h3 i {
  color: #ffd700;
}

.info-card ol,
.info-card ul {
  padding-left: 20px;
  color: #555;
}

.info-card li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.info-card small {
  color: #666;
  font-style: italic;
}

/* Footer avec couleurs AMONH et logo */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-logo i {
  font-size: 32px;
}

.footer-section h4 {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-section p {
  margin-bottom: 10px;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

/* Contact Page Styles */
.contact-content {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  color: #1e40af;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

.contact-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  border-left: 4px solid #3b82f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
}

.contact-item h3 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item h3 i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.contact-item p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.contact-form h2 {
  color: #1e40af;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Multi-step Form Styles */
.progress-indicator {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 50px 0;
  padding: 0 20px;
}

.progress-indicator .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.progress-indicator .step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.progress-indicator .step.active:not(:last-child)::after,
.progress-indicator .step.completed:not(:last-child)::after {
  background: #3b82f6;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: #3b82f6;
  color: white;
}

.step.completed .step-number {
  background: #10b981;
  color: white;
}

.step-title {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  font-weight: 500;
}

.step.active .step-title {
  color: #3b82f6;
  font-weight: 600;
}

.step.completed .step-title {
  color: #10b981;
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.step-navigation .btn {
  min-width: 120px;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .header-content {
    flex-wrap: nowrap;
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 10px 10px;
  }

  .nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.5rem;
  }

  /* About Page Extended Styles */
.about-intro {
  margin-bottom: 60px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  border-left: 4px solid #3b82f6;
}

.info-item h3 {
  color: #1e40af;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item h3 i {
  color: #3b82f6;
}

.mission-vision {
  margin: 60px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.mission-card h3, .vision-card h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.slogan {
  text-align: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.slogan h3 {
  color: white;
  margin-bottom: 20px;
}

.slogan-text {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
}

.objectives {
  margin: 60px 0;
}

.objectives-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.objective-general, .objectives-specific {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #10b981;
}

.objective-general h3, .objectives-specific h3 {
  color: #10b981;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.values-philosophy {
  margin: 60px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  color: #1e40af;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.value-item h3 i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.programs-levels {
  margin: 60px 0;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.level-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  border-top: 4px solid #fbbf24;
  transition: transform 0.3s ease;
}

.level-card:hover {
  transform: translateY(-5px);
}

.level-card h3 {
  color: #1e40af;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.level-card h3 i {
  color: #fbbf24;
}

.why-choose {
  margin: 60px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.reason-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-5px);
}

.reason-item i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 20px;
}

.reason-item h3 {
  color: #1e40af;
  margin-bottom: 15px;
}

.founder-message {
  margin: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 50px;
  border-radius: 20px;
}

.message-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.message-text h3 {
  color: #1e40af;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.founder-info {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  text-align: center;
}

.founder-info h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Multi-step Form Mobile Styles */
  .progress-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .progress-indicator .step {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .progress-indicator .step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 15px;
  }

  .step-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .step-navigation .btn {
    width: 100%;
  }

  /* About Page Mobile Styles */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .objectives-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .message-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founder-message {
    padding: 30px 20px;
  }

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

  .category-list {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

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

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .form-container {
    padding: 30px 20px;
    margin: 0 20px 40px;
  }

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: center;
  }

  .inscription-info {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .page-hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

 

  .features,
  .news,
  .about-content,
  .contact-content,
  .faq-content {
    padding: 60px 0;
  }

  .about-highlights {
    gap: 10px;
  }

  .highlight-item {
    padding: 10px;
  }

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

/* Styles pour formulaire multi-étapes */
.multi-step-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: #1e40af;
  margin-bottom: 10px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #fbbf24;
  z-index: 2;
  transition: width 0.3s ease;
}

.progress-bar.step-1::after {
  width: 0%;
}
.progress-bar.step-2::after {
  width: 33.33%;
}
.progress-bar.step-3::after {
  width: 66.66%;
}
.progress-bar.step-4::after {
  width: 100%;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6b7280;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background: #fbbf24;
  color: white;
}

.step-indicator.completed {
  background: #22c55e;
  color: white;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-prev,
.btn-next {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-prev {
  background: #6b7280;
  color: white;
}

.btn-prev:hover {
  background: #4b5563;
}

.btn-next {
  background: #1e40af;
  color: white;
}

.btn-next:hover {
  background: #1e3a8a;
}

.btn-submit {
  background: #22c55e;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #16a34a;
}

@media (max-width: 768px) {
  .multi-step-form {
    padding: 20px;
    margin: 20px 10px;
  }

  .progress-bar {
    margin-bottom: 20px;
  }

  .step-indicator {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
