/* RESET ET STYLES GÉNÉRAUX */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  padding-top: 75px; /* Compensation pour le header fixe */
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #0f9b0f, #38ef7d) 1;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.site-name {
  color: #0f9b0f;
  font-size: 20px;
  font-weight: 700;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  color: #0f9b0f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  padding: 5px 0;
  position: relative;
}

.nav a:hover {
  color: #38ef7d;
}

/* Effet de soulignement au survol */
.nav a:not(.btn-consultation):hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0f9b0f, #38ef7d);
}

/* Bouton Consultation dans le header */
.btn-consultation {
  background: linear-gradient(135deg, #0f9b0f, #38ef7d);
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 3px 8px rgba(15, 155, 15, 0.2);
}

.btn-consultation:hover {
  background: linear-gradient(135deg, #0d850d, #2fd46d);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(15, 155, 15, 0.3);
}

/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
.hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background-image: url('images/7593946.jpg'); /* Remplacez par votre image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Effet parallaxe */
}

/* Overlay semi-transparent */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Overlay léger */
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end; /* Aligne le contenu à droite */
}

/* Contenu hero aligné à droite - style épuré sans carte */
.hero-content-right {
  max-width: 550px; /* Largeur plus étroite pour le texte */
  text-align: left;
  padding: 40px;
  background: transparent; /* Fond transparent */
  color: white; /* Texte en blanc pour contraster avec l'image */
}

/* Titre hero */
.hero-content-right h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Paragraphe hero */
.hero-content-right p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Conteneur des boutons hero - alignés à gauche dans le bloc de droite */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Adaptation des boutons pour fond sombre */
.btn-primary {
  background: linear-gradient(135deg, #0f9b0f 0%, #38ef7d 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #0d850d 0%, #2fd46d 100%);
}

/* Bouton outline adapté */
.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  border-color: #38ef7d;
  color: #38ef7d;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-container {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
    min-height: 70vh;
  }
  
  .hero-content-right {
    max-width: 500px;
    padding: 30px;
  }
  
  .hero-content-right h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }
  
  .hero-container {
    justify-content: center; /* Centre le texte sur mobile */
  }
  
  .hero-content-right {
    max-width: 100%;
    padding: 30px 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Fond légèrement plus sombre sur mobile */
    border-radius: 10px;
  }
  
  .hero-content-right h1 {
    font-size: 2.5rem;
  }
  
  .hero-content-right p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content-right h1 {
    font-size: 2.2rem;
  }
  
  .hero-content-right p {
    font-size: 1rem;
  }
  
  .hero-content-right {
    padding: 25px 20px;
  }
  
  .hero {
    min-height: 60vh;
  }
}
/* Bouton primaire */
.btn-primary {
  background: linear-gradient(135deg, #0f9b0f 0%, #38ef7d 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 155, 15, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(15, 155, 15, 0.3);
  background: linear-gradient(135deg, #0d850d 0%, #2fd46d 100%);
}

/* Effet de brillance au survol */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Bouton outline */
.btn-outline {
  background: transparent;
  color: #0f9b0f;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #0f9b0f;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(15, 155, 15, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 155, 15, 0.1);
  border-color: #38ef7d;
  color: #2e7d32;
}



/* SERVICES SECTION */
/* SERVICES SECTION */
/* SERVICES SECTION */
.services {
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f9b0f 0%, #1a1a1a 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(56, 239, 125, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(15, 155, 15, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Carte de service avec icône à droite */
.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 239, 125, 0.1), rgba(15, 155, 15, 0.05));
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(56, 239, 125, 0.4);
}

/* Icône à droite */
.service-icon {
  font-size: 3.5rem;
  color: #38ef7d;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(56, 239, 125, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
  border-color: #38ef7d;
  box-shadow: 0 0 20px rgba(56, 239, 125, 0.3);
}

/* Contenu du service */
.service-content {
  flex: 1;
}

.service-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}
.service-icon i {
  font-size: 2rem;
  color: white; /* vert foncé ou var(--accent) pour plus de pep */
  margin-bottom: 0.8rem;
}

/* RESPONSIVE pour services */
@media (max-width: 900px) {
  .services h2 {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .service-card {
    padding: 25px;
    gap: 20px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 15px;
  }
  
  .services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-card h3 {
    font-size: 1.6rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.8rem;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
}
/* Partie 2 : Pourquoi nous choisir - Version SANS CARTES */
.why-section {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 2.8rem;
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.why-header .subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contenu sans cartes */
.why-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 0;
  transition: all 0.3s ease;
}

.why-feature:hover {
  transform: translateX(10px);
}

.why-icon {
  font-size: 3rem;
  color: #38ef7d;
  flex-shrink: 0;
  background: rgba(56, 239, 125, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(56, 239, 125, 0.3);
  transition: all 0.3s ease;
}

.why-feature:hover .why-icon {
  transform: scale(1.1);
  background: rgba(56, 239, 125, 0.2);
  border-color: #38ef7d;
}

.why-text {
  flex: 1;
  padding-top: 10px;
}

.why-text h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.why-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* RESPONSIVE pour version sans cartes */
@media (max-width: 1024px) {
  .why-section {
    max-width: 900px;
    padding: 60px 20px 0 20px;
  }
  
  .why-header h2 {
    font-size: 2.5rem;
  }
  
  .why-header .subtitle {
    font-size: 1.2rem;
  }
  
  .why-content {
    gap: 35px;
  }
  
  .why-feature {
    gap: 25px;
  }
  
  .why-icon {
    width: 65px;
    height: 65px;
    font-size: 2.8rem;
  }
  
  .why-text h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding-top: 60px;
  }
  
  .why-header {
    margin-bottom: 50px;
  }
  
  .why-header h2 {
    font-size: 2.2rem;
  }
  
  .why-header .subtitle {
    font-size: 1.1rem;
  }
  
  .why-content {
    gap: 30px;
  }
  
  .why-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .why-feature:hover {
    transform: translateY(-5px);
  }
  
  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .why-text {
    padding-top: 0;
  }
  
  .why-text h3 {
    font-size: 1.6rem;
  }
  
  .why-text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .why-header h2 {
    font-size: 2rem;
  }
  
  .why-header .subtitle {
    font-size: 1rem;
  }
  
  .why-content {
    gap: 25px;
  }
  
  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 2.2rem;
  }
  
  .why-text h3 {
    font-size: 1.5rem;
  }
  
  .why-text p {
    font-size: 1rem;
  }
}



/* CTA SECTION */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f9b0f 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(56, 239, 125, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(15, 155, 15, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.btn-consultation-large {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #38ef7d);
  color: #0f9b0f;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
}

.btn-consultation-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #38ef7d, #ffffff);
  color: #1a1a1a;
  border-color: white;
}




/* RESPONSIVE pour services et CTA */
@media (max-width: 900px) {
  .services h2 {
    font-size: 2.2rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 15px;
  }
  
  .services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
  
  .cta {
    padding: 60px 15px;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.8rem;
  }
  
  .service-card h3 {
    font-size: 1.6rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  .cta h2 {
    font-size: 1.6rem;
  }
  
  .btn-consultation-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    gap: 15px;
  }
  
  .site-name {
    font-size: 17px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .nav a {
    font-size: 14px;
  }
  
  body {
    padding-top: 120px;
  }
  
  .hero {
    min-height: 70vh;
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2rem;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .site-name {
    font-size: 16px;
  }
  
  .services h2 {
    font-size: 1.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-consultation-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}
/* Style */
/* BÉTHEL SANTÉ EN ACTION SECTION - Image à gauche */
/* BÉTHEL SANTÉ EN ACTION SECTION - Version équilibrée */
/* BÉTHEL SANTÉ EN ACTION SECTION - Version cadre ajusté */
/* Statistique sur l'image, en bas à droite, textes centrés */
.about-image .image-stat {
  position: absolute;
  bottom: 10px;      /* légèrement au-dessus du bas */
  right: 10px;       /* légèrement à l'intérieur à droite */
  background: rgba(15, 155, 15, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  color: #0f9b0f;
  display: flex;
  flex-direction: column;
  align-items: center;   /* CENTRER horizontalement */
  justify-content: center;
  z-index: 3;        /* au-dessus de l'image et du cadre */
  text-align: center; /* CENTRER le texte */
}

.about-image .image-stat .stat-number {
  font-size: 1.8rem;
}

.about-image .image-stat .stat-label {
  font-size: 0.85rem;
}

.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9f5 100%);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(15, 155, 15, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(56, 239, 125, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Image à GAUCHE */
.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* décaler image légèrement à droite */
  padding: 15px;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: white;
  z-index: 2;
  position: relative;
  transform: translateX(10px); /* Décalage à droite */
}

.about-image:hover img {
  transform: translateX(10px) scale(1.02); /* garder le décalage au hover */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Cadre vert plus grand, haut et bas */
.about-image::before {
  content: '';
  position: absolute;
  top: -5px;  /* remonter le cadre */
  left: 55%;
  width: calc(75% + 5px);  /* élargir le cadre horizontalement */
  height: calc(100% + 5px); /* augmenter la hauteur du cadre */
  transform: translate(-50%, 0); /* centrer horizontalement */
  border: 2px solid #0f9b0f;
  border-radius: 15px;
  z-index: 1;
  opacity: 0.15;
  box-sizing: border-box;
}

/* Contenu à DROITE */
.about-content {
  padding-right: 0;
}

.about-header {
  margin-bottom: 30px;
}

.about-header h2 {
  font-size: 2.2rem;
  color: #0f9b0f;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f9b0f;
  line-height: 1;
  background: linear-gradient(135deg, #0f9b0f, #38ef7d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  color: #2e7d32;
  font-weight: 500;
  margin-top: 3px;
}

/* Notre histoire */
.about-story {
  margin-bottom: 30px;
}

.about-story h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-story p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Mission & Vision */
.mission-vision-container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.mission, .vision {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 20px;
  background: rgba(15, 155, 15, 0.05);
  border-left: 3px solid #0f9b0f; /* BORDURE GAUCHE verte */
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.mission h4, .vision h4 {
  font-size: 1.1rem;
  color: #0f9b0f;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission h4::before {
  content: "\f024"; /* icône cible 🎯 Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--secondary); /* vert */
}

.vision h4::before {
  content: "\f06e"; /* icône œil 👁️ Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--secondary); /* vert */
}

.mission p, .vision p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

/* Features avec bordure droite verte et coins arrondis à droite */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 155, 15, 0.1);
  border-right: 3px solid #0f9b0f;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-right-color: #38ef7d;
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #0f9b0f;
}

.feature-text h5 {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

/* Bouton */
.btn-about {
  display: inline-block;
  background: linear-gradient(135deg, #0f9b0f, #38ef7d);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(15, 155, 15, 0.15);
  border: none;
}

.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 155, 15, 0.25);
  background: linear-gradient(135deg, #0d850d, #2fd46d);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .about-container { gap: 40px; }
  .about-image img { max-height: 320px; max-width: 350px; }
}

@media (max-width: 992px) {
  .about-section { padding: 60px 20px; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 400px; justify-content: center; }
  .about-image img { max-height: 280px; transform: translateX(0); }
  .mission-vision-container { flex-direction: column; }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-section { padding: 50px 15px; }
  .about-header h2 { font-size: 2rem; }
  .stat-number { font-size: 2.2rem; }
  .about-story h3 { font-size: 1.4rem; }
  .features { grid-template-columns: 1fr; gap: 12px; }
  .feature { flex-direction: row; text-align: left; align-items: center; gap: 12px; padding: 15px; }
  .feature-icon { margin-bottom: 0; font-size: 1.5rem; }
  .feature-text h5 { font-size: 0.95rem; }
  .btn-about { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .about-header h2 { font-size: 1.8rem; }
  .stat-number { font-size: 2rem; }
  .about-story h3 { font-size: 1.3rem; }
  .feature { padding: 12px; }
  .about-image img { max-height: 250px; }
}

/* ============================================
   SECTION FONDATEUR
   ============================================ */

.founder-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #7cb342, #2e7d32);
}

.founder-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo du fondateur */
.founder-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.founder-photo:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.founder-photo:hover img {
  transform: scale(1.05);
}

/* Badge expérience sur la photo */
.founder-photo::after {
  content: '10+ années';
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #2e7d32;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  z-index: 2;
}

/* Biographie */
.founder-bio {
  padding: 2rem;
}

.founder-bio h2 {
  font-size: 2.5rem;
  color: #1a472a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.founder-bio h3 {
  font-size: 1.3rem;
  color: #2e7d32;
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}

.founder-bio h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #7cb342;
  border-radius: 50%;
}

.founder-bio p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 2rem;
  text-align: justify;
}

/* Certifications */
.certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.certifications i {
  color: #2e7d32;
  font-size: 1.2rem;
}
.certifications span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #2e7d32;
}

.certifications span:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left-color: #7cb342;
}


/* Bouton en savoir plus */
.founder-bio .btn-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  cursor: pointer;
}

.founder-bio .btn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.founder-bio .btn-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.founder-bio .btn-more:hover i {
  transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablettes */
@media (max-width: 992px) {
  .founder-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .founder-photo {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .founder-bio h2 {
    font-size: 2.2rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .founder-section {
    padding: 3rem 1.5rem;
  }
  
  .founder-photo {
    transform: none;
  }
  
  .founder-photo:hover {
    transform: none;
  }
  
  .founder-bio {
    padding: 1rem 0;
  }
  
  .founder-bio h2 {
    font-size: 1.8rem;
  }
  
  .founder-bio h3 {
    font-size: 1.1rem;
  }
  
  .founder-bio p {
    font-size: 1rem;
  }
  
  .certifications {
    grid-template-columns: 1fr;
  }
  
  .certifications span {
    padding: 0.8rem 1rem;
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .founder-photo::after {
    bottom: 10px;
    left: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .founder-bio .btn-more {
    width: 100%;
    text-align: center;
  }
}

/* Animation d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-section .container > * {
  animation: fadeInUp 0.8s ease-out;
}

.founder-photo {
  animation-delay: 0.2s;
}

.founder-bio {
  animation-delay: 0.4s;
}

.certifications {
  animation-delay: 0.6s;
}
/* Ajoutez cette classe à .founder-photo */
.founder-photo.pro-card {
  border: 15px solid white;
  position: relative;
}

.founder-photo.pro-card::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid #2e7d32;
  border-radius: 30px;
  z-index: -1;
}

/* ============================================
   SECTION FORMATIONS POPULAIRES
   ============================================ */
.popular-courses {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.popular-courses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #7cb342, #ff9800, #2e7d32);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #1a472a;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #7cb342;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grille des formations */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Carte de formation */
.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #7cb342);
  z-index: 2;
}

/* Badge */
.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.course-badge.paid {
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
}

.course-badge.free {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: white;
}

/* Image de la formation */
.course-image {
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.course-category {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2e7d32;
}

/* Contenu de la carte */
.course-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  font-size: 1.5rem;
  color: #1a472a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.course-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Métadonnées - MODIFIÉ POUR CENTRER LES ICÔNES */
.course-meta {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  text-align: center;
  min-height: 70px;
  padding: 0.5rem;
}

.meta-item i {
  color: #7cb342;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.meta-item span {
  color: #666;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  width: 100%;
}

/* Version alternative avec flex en colonne */
.meta-item.column-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Prix et durée */
.course-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e7d32;
}

.price small {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
  display: block;
  margin-top: 0.2rem;
}

.duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

.duration i {
  color: #7cb342;
  font-size: 1.2rem;
}

/* Boutons */
.btn-course {
  display: inline-block;
  padding: 0.9rem 2rem;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-course:hover::before {
  left: 100%;
}

.btn-course.primary {
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-course.primary:hover {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.btn-course.secondary {
  background: white;
  color: #2e7d32;
  border: 2px solid #2e7d32;
}

.btn-course.secondary:hover {
  background: #2e7d32;
  color: white;
  transform: translateY(-2px);
}

/* Section "Voir toutes les formations" */
.all-courses {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #2e7d32;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* Décorations */
.course-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.course-decoration.leaf {
  top: 10%;
  left: 5%;
  font-size: 8rem;
}

.course-decoration.herb {
  bottom: 10%;
  right: 5%;
  font-size: 6rem;
  transform: rotate(45deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablettes */
@media (max-width: 992px) {
  .popular-courses {
    padding: 4rem 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2.3rem;
  }
  
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .meta-item i {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .popular-courses {
    padding: 3rem 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0;
  }
  
  .course-card {
    max-width: 100%;
  }
  
  .course-info {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .price {
    font-size: 1.6rem;
  }
  
  .meta-item {
    min-height: 60px;
  }
  
  .meta-item i {
    font-size: 1.4rem;
    height: 35px;
    width: 35px;
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .course-content {
    padding: 1.5rem;
  }
  
  .course-content h3 {
    font-size: 1.3rem;
  }
  
  .course-meta {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .meta-item {
    padding: 0.3rem;
  }
  
  .meta-item i {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .meta-item span {
    font-size: 0.8rem;
  }
  
  .btn-course {
    padding: 0.8rem 1.5rem;
  }
  
  .course-decoration {
    display: none;
  }
}

/* Très petits mobiles */
@media (max-width: 380px) {
  .course-meta {
    gap: 0.8rem;
  }
  
  .meta-item {
    min-height: 50px;
  }
  
  .meta-item i {
    font-size: 1.1rem;
    height: 30px;
    width: 30px;
  }
  
  .meta-item span {
    font-size: 0.75rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.course-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.course-decoration.leaf {
  animation: float 6s ease-in-out infinite;
}

.course-decoration.herb {
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

/* Animation pour les icônes */
.meta-item i {
  transition: all 0.3s ease;
}

.course-card:hover .meta-item i {
  color: #2e7d32;
  transform: scale(1.1);
}


/* ============================================
   SECTION TÉMOIGNAGES
   ============================================ */

/* ============================================
   SECTION TÉMOIGNAGES - VERSION SIMPLIFIÉE
   ============================================ */

/* ============================================
   SECTION TÉMOIGNAGES - VERSION CENTRÉE
   ============================================ */

/* ============================================
   SECTION TÉMOIGNAGES - CAROUSEL AUTOMATIQUE SIMPLE
   ============================================ */

.testimonials-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32 0%, #7cb342 50%, #2e7d32 100%);
}

/* En-tête de section */
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  color: #1a472a;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  padding-top: 1rem;
}

.testimonials-header p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #7cb342;
}

/* Conteneur du carousel */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

/* Wrapper pour les cartes */
.testimonials-wrapper {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
  padding: 0 1rem;
}

/* Carte de témoignage */
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.67rem);
  min-width: 350px;
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0.95;
  transform: scale(0.95);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
  border-color: rgba(124, 179, 66, 0.3);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32, #7cb342);
  z-index: 2;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: #f1f8e9;
  opacity: 0.8;
  line-height: 1;
  z-index: 0;
}

/* En-tête de carte */
.testimonial-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  z-index: 1;
  position: relative;
}

/* Avatar stylé */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2e7d32, #7cb342);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-card.active .testimonial-avatar {
  transform: scale(1.05);
}

/* Infos du client */
.testimonial-client-info {
  flex: 1;
}

.testimonial-client-info h4 {
  font-size: 1.2rem;
  color: #1a472a;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.testimonial-client-profession {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Note/étoiles */
.testimonial-rating {
  display: flex;
  gap: 0.15rem;
}

.star {
  color: #ffd700;
  font-size: 1rem;
}

/* Contenu du témoignage */
.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  font-style: normal;
  position: relative;
  padding-left: 1.2rem;
  margin: 0;
}

.testimonial-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #2e7d32, #7cb342);
  border-radius: 3px;
}

/* Pied de carte */
.testimonial-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1;
  position: relative;
}

/* Type de consultation */
.consultation-type {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(124, 179, 66, 0.1);
  color: #2e7d32;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.consultation-type i {
  font-size: 0.9rem;
}

/* Date */
.testimonial-date {
  color: #888;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonial-date i {
  font-size: 0.9rem;
  color: #7cb342;
}

/* Contrôles du carousel simplifiés */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #2e7d32;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: #2e7d32;
  color: white;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn:disabled:hover {
  background: white;
  color: #2e7d32;
}

/* Indicateurs de pagination */
.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-dot.active {
  background: #2e7d32;
  transform: scale(1.2);
}

.carousel-dot.active::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid #2e7d32;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Statistiques */
.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(124, 179, 66, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(124, 179, 66, 0.2);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2e7d32;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Arial', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Bouton principal */
.all-testimonials {
  text-align: center;
  margin-top: 4rem;
}

.btn-view-all-testimonials {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: white;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-view-all-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-view-all-testimonials:hover {
  background: #2e7d32;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}

.btn-view-all-testimonials:hover::before {
  left: 100%;
}

.btn-view-all-testimonials i {
  transition: transform 0.3s ease;
}

.btn-view-all-testimonials:hover i {
  transform: translateX(5px);
}

/* Décorations */
.testimonial-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
  font-size: 10rem;
}

.deco-leaf-1 {
  top: 10%;
  left: 5%;
}

.deco-leaf-2 {
  bottom: 10%;
  right: 5%;
  transform: rotate(180deg);
}

/* Badge top-right */
.testimonial-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 193, 7, 0.1);
  color: #ff9800;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1.25rem);
    min-width: 300px;
  }
}

@media (max-width: 992px) {
  .testimonials-section {
    padding: 4rem 1.5rem;
  }
  
  .testimonials-header h2 {
    font-size: 2.2rem;
  }
  
  .testimonial-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1rem;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 280px;
    padding: 2rem;
  }
  
  .testimonial-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .carousel-controls {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .carousel-dots {
    order: 1;
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .testimonial-avatar {
    margin-right: 0;
  }
  
  .testimonial-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .testimonial-content p {
    padding-left: 0.8rem;
    font-size: 1rem;
  }
}


/* ============================================
   SECTION BLOG PREVIEW
   ============================================ */

/* ============================================
   MASONRY LAYOUT - DESIGN ASYMÉTRIQUE
   ============================================ */

/* ============================================
   TIMELINE COMPACTE - EXCERPT FIXED
   ============================================ */

.blog-preview-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fbf8 100%);
  position: relative;
}

/* En-tête compact */
.blog-preview-header {
  text-align: center;
  margin-bottom: 2.5rem;
}


/* H2 avec trait en dessous */
.blog-preview-header h2 {
   font-size: 2.1rem; /* avant 1.8rem */ 
  color: #1a472a;
  margin-bottom: 0.8rem; /* Espace entre h2 et trait */
  font-weight: 700;
  display: inline-block; /* Pour que le trait s'aligne sur la largeur du texte */
  position: relative;
  padding-bottom: 0.8rem; /* Espace pour le trait */
}

/* Trait en dessous du h2 */
.blog-preview-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* Longueur du trait */
  height: 3px; /* Épaisseur du trait */
  background: linear-gradient(90deg, #7cb342, #2e7d32); /* Couleur du trait */
  border-radius: 2px;
}
.blog-preview-header p {
  font-size: 1.5rem; /* avant 0.9rem */
  color: #5a6c5d;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Container plus étroit */
.articles-container {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* Timeline discrète */
.articles-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(124, 179, 66, 0.2);
  z-index: 0;
}

/* Article item compact */
.article-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

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

/* Point de timeline - position ajustée */
.article-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid #2e7d32;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.article-item:hover::before {
  background: #2e7d32;
  transform: translateX(-50%) scale(1.1);
}

/* Carte plus étroite et plus courte */
.article-card {
  width: calc(50% - 30px);
  max-width: 380px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 179, 66, 0.1);
  min-height: 340px; /* Augmenté pour accommoder 2 lignes */
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.12);
  border-color: rgba(124, 179, 66, 0.2);
}

/* Image complètement visible - format carré */
.card-image {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
  transform: scale(1.05);
}

/* Badge minimaliste */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: #2e7d32;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  backdrop-filter: blur(5px);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.article-card:hover .card-badge {
  background: #2e7d32;
  color: white;
  transform: translateY(-1px);
}

/* Badge Nouveau petit */
.new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  background: #ff6b6b;
  color: white;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Contenu compact */
.card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 140px); /* Prend le reste de la hauteur après l'image */
}

/* Date discrète */
.card-date {
  font-size: 0.75rem;
  color: #8a9b8f;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.card-date::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #7cb342;
  border-radius: 2px;
}

/* Titre compact */
.card-content h3 {
   font-size: 1.15rem; /* avant 1rem */
  color: #1a472a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-weight: 600;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.article-card:hover .card-content h3 {
  color: #2e7d32;
}

/* Auteur compact */
.card-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.author-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #7cb342, #2e7d32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.8rem;
  color: #1a472a;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.7rem;
  color: #8a9b8f;
  margin: 0;
}

/* EXCERPT CORRIGÉ - 2 lignes visibles */
.card-excerpt {
  font-size: 0.9rem; /* avant 0.8rem */
  color: #5a6c5d;
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em; /* Hauteur minimale pour 2 lignes */
  max-height: 2.8em; /* Hauteur maximale pour 2 lignes */
  flex: 1; /* Prend l'espace disponible */
}

/* Version alternative sans line-clamp */
.card-excerpt p {
  font-size: 0.8rem;
  color: #5a6c5d;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em;
  max-height: 2.8em;
}

/* Stats compactes */
.card-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto; /* Pousse vers le bas */
  flex-shrink: 0;
}

.read-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-dots {
  display: flex;
  gap: 2px;
}

.read-dots span {
  width: 3px;
  height: 3px;
  background: #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.article-card:hover .read-dots span {
  background: #7cb342;
}

.read-dots span:nth-child(1) { animation: pulse 1s infinite; }
.read-dots span:nth-child(2) { animation: pulse 1s infinite 0.2s; }
.read-dots span:nth-child(3) { animation: pulse 1s infinite 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.read-time {
  font-size: 0.75rem;
  color: #8a9b8f;
  font-weight: 500;
}

/* Bouton d'action mini */
.action-btn {
  width: 30px;
  height: 30px;
  background: white;
  border: 1px solid #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.action-btn:hover {
  background: #2e7d32;
  color: white;
  transform: rotate(45deg);
}

/* Bouton Voir tous compact */
.all-articles {
  text-align: center;
  margin-top: 2rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: #2e7d32;
  border: 1px solid #2e7d32;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.btn-view-all:hover {
  background: #2e7d32;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.15);
}

.btn-view-all i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.btn-view-all:hover i {
  transform: translateX(3px);
}

/* Newsletter compacte */
.newsletter-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-content h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.newsletter-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: white;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  outline: none;
}

.newsletter-button {
  padding: 0.6rem 1.5rem;
  background: white;
  color: #2e7d32;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: #f1f8e9;
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1100px) {
  .article-item {
    flex-direction: column !important;
    margin-bottom: 1.5rem;
  }
  
  .article-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    min-height: 330px;
  }
  
  .articles-container::before {
    left: 20px;
  }
  
  .article-item::before {
    left: 20px;
    top: 15px;
  }
}

@media (max-width: 768px) {
  .blog-preview-section {
    padding: 2.5rem 1rem;
  }
  
  .blog-preview-header h2 {
    font-size: 1.6rem;
  }
  
  .blog-preview-header p {
    font-size: 0.85rem;
    max-width: 90%;
  }
  
  .card-image {
    height: 120px;
  }
  
  .card-content {
    padding: 1rem;
    height: calc(100% - 120px);
  }
  
  .card-content h3 {
    font-size: 0.95rem;
  }
  
  .card-excerpt {
    min-height: 2.6em;
    max-height: 2.6em;
  }
  
  .article-card {
    min-height: 320px;
  }
  
  .newsletter-section {
    padding: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .newsletter-content h3 {
    font-size: 1.2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .blog-preview-section {
    padding: 2rem 0.8rem;
  }
  
  .blog-preview-header {
    margin-bottom: 2rem;
  }
  
  .blog-preview-header h2 {
    font-size: 1.4rem;
  }
  
  .article-card {
    max-width: 100%;
    min-height: 310px;
  }
  
  .card-excerpt {
    font-size: 0.75rem;
    line-height: 1.3;
    min-height: 2.4em;
    max-height: 2.4em;
  }
  
  .card-author {
    flex-direction: row;
    text-align: left;
    gap: 0.5rem;
  }
  
  .card-stats {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
  
  .btn-view-all {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .newsletter-section {
    padding: 1.2rem;
  }
  
  .newsletter-button {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   SECTION CONTACT COMPLÈTE
   ============================================ */

.contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237cb342' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* En-tête contact */
.contact-header {
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.2rem;
  color: #1a472a;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7cb342, #2e7d32);
  border-radius: 2px;
}

.contact-header p {
  font-size: 1rem;
  color: #5a6c5d;
  line-height: 1.6;
  max-width: 500px;
}

/* Formulaire de contact */
.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-form-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  color: #1a472a;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #8a9b8f;
  font-size: 0.9rem;
}

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #1a472a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: #7cb342;
  font-size: 0.9rem;
}

.form-input {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e0e6dd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1a472a;
  transition: all 0.3s ease;
  background: #f9fbf8;
}

.form-input:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  background: white;
}

.form-input::placeholder {
  color: #a3b5a7;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Bouton de soumission */
.submit-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2e7d32, #7cb342);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: auto;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Carte et informations à droite */
.contact-info-map {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
}

/* Carte Google Maps */
.map-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.1);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Informations de contact */
.contact-details {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.1);
  flex: 1;
}

.contact-details h3 {
  font-size: 1.5rem;
  color: #1a472a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

/* Liste des informations */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(46, 125, 50, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #2e7d32, #7cb342);
  color: white;
  transform: scale(1.1);
}

.contact-content h4 {
  font-size: 1rem;
  color: #1a472a;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-content p {
  font-size: 0.95rem;
  color: #5a6c5d;
  line-height: 1.5;
  margin: 0;
}

.contact-content a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

/* Horaires */
.contact-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.contact-hours h4 {
  font-size: 1rem;
  color: #1a472a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hours h4 i {
  color: #7cb342;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
}

.hours-day {
  color: #5a6c5d;
  font-size: 0.9rem;
}

.hours-time {
  color: #1a472a;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Réseaux sociaux */
.contact-social {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.contact-social h4 {
  font-size: 1rem;
  color: #1a472a;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(46, 125, 50, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #2e7d32, #7cb342);
  color: white;
  transform: translateY(-3px);
}

/* Message de confirmation */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
  display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-section {
    padding: 4rem 1.5rem;
  }
  
  .map-container {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1rem;
  }
  
  .contact-form-container,
  .contact-details {
    padding: 2rem;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .form-header h3,
  .contact-details h3 {
    font-size: 1.3rem;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2.5rem 0.8rem;
  }
  
  .contact-form-container,
  .contact-details {
    padding: 1.5rem;
  }
  
  .contact-header h2 {
    font-size: 1.6rem;
  }
  
  .submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .contact-list {
    gap: 1.5rem;
  }
  
  .hours-item {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Animation pour les champs */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-input.error {
  border-color: #f44336;
  animation: shake 0.3s ease;
}

/* Loading state pour le bouton */
.submit-btn.loading {
  opacity: 0.8;
  cursor: not-allowed;
}

.submit-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ============================================
   FOOTER STYLES
   ============================================ */

.main-footer {
  background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
  color: white;
   padding: 1.0rem 2rem 0;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section principale du footer */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
    padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Logo et description */
.footer-about {
  grid-column: span 1;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
   margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: #2e7d32;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Titres des colonnes */
.footer-title {
  font-size: 1.3rem;
  color: white;
 margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  position: relative;
  font-weight: 600;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #7cb342;
}

/* Listes de liens */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
 gap: 0.5rem;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-list li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-list li a i {
  font-size: 0.8rem;
  color: #7cb342;
}

/* Informations de contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(124, 179, 66, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7cb342;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #7cb342;
}

/* Horaires */
.footer-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 8px;
}

.footer-hours h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-hours h4 i {
  color: #7cb342;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.hours-grid span {
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.hours-grid span:nth-child(even) {
  text-align: right;
  color: white;
  font-weight: 500;
}

/* Section bas du footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
  text-decoration: underline;
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #1b5e20;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 3rem 1.5rem 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 2.5rem 1rem 0;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Animation pour le footer */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }