/* ============================================
   APPSM - SECTIONS PAGE D'ACCUEIL
   Fichier: css/sections.css
============================================ */

/* ============================================
   1. STYLES GLOBAUX DES SECTIONS
============================================ */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple);
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.section-title span {
  color: var(--purple);
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(232, 103, 42, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
}

.section-bg-gray {
  background: linear-gradient(135deg, #e8e4ef 0%, #ddd5e8 100%);
  position: relative;
}

.section-bg-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 45, 142, 0.25), transparent);
}

.section-bg-gray::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 45, 142, 0.25), transparent);
}

.section-bg-priorities {
  background: linear-gradient(135deg, #ede7f2 0%, #e4daee 100%);
  position: relative;
}

.section-bg-priorities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 45, 142, 0.2), transparent);
}

.section-bg-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 100%);
  color: var(--white);
}

.section-bg-purple {
  background: linear-gradient(135deg, #4a1e5c 0%, var(--purple) 100%);
  color: var(--white);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(91, 45, 142, 0.4);
}

.btn-purple:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(91, 45, 142, 0.5);
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   2. SECTION QUI SOMMES-NOUS
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-main::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* Photo secondaire (rectangle paysage) */
.about-img-secondary {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 280px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  background: var(--off-white);
}

.about-img-secondary:hover {
  transform: scale(1.05);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ✅ BADGE POSITIONNÉ EN HAUT AU MILIEU */
.about-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(232, 103, 42, 0.5);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
  border: 4px solid var(--white);
}

@keyframes floatBadge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.about-badge .badge-icon {
  font-size: 26px;
  margin-bottom: 4px;
}

.about-badge .badge-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  padding: 0 8px;
}

.about-content .section-label {
  justify-content: flex-start;
}

.about-content .section-label::before {
  display: none;
}

.about-content .section-title {
  text-align: left;
  font-size: 38px;
}

.about-content .about-text {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0 35px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.about-highlight:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-left-color: var(--orange);
  transform: translateX(5px);
}

.about-highlight i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.about-highlight:nth-child(1) i {
  background: rgba(91, 45, 142, 0.1);
  color: var(--purple);
}
.about-highlight:nth-child(2) i {
  background: rgba(232, 103, 42, 0.1);
  color: var(--orange);
}
.about-highlight:nth-child(3) i {
  background: rgba(27, 42, 74, 0.1);
  color: var(--navy);
}
.about-highlight:nth-child(4) i {
  background: rgba(91, 45, 142, 0.1);
  color: var(--purple);
}

.about-highlight span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
}

/* ============================================
   3. SECTION NOS PRIORITÉS
============================================ */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.priority-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(91, 45, 142, 0.08);
}

.priority-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(91, 45, 142, 0.25);
  border-color: transparent;
}

.priority-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.priority-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.priority-card:hover .priority-card-image img {
  transform: scale(1.1);
}

.priority-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 30, 92, 0.7) 0%, transparent 60%);
  z-index: 1;
}

.priority-card-icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(232, 103, 42, 0.5);
  transition: var(--transition);
}

.priority-card:hover .priority-card-icon {
  transform: rotate(-10deg) scale(1.1);
}

.priority-card-body {
  padding: 40px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.priority-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  transition: var(--transition);
}

.priority-card:hover .priority-card-body h3 {
  color: var(--purple);
}

.priority-card-body p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.priority-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.priority-card-btn:hover {
  background: var(--purple);
  color: var(--white);
  gap: 12px;
  box-shadow: 0 8px 20px rgba(91, 45, 142, 0.35);
}

.priority-card-btn i {
  font-size: 11px;
}

/* ============================================
   4. SECTION CHIFFRES CLÉS
============================================ */
.section-stats {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 103, 42, 0.08);
  pointer-events: none;
}

.section-stats::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(91, 45, 142, 0.1);
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.stats-header .section-label {
  color: var(--orange);
  margin-bottom: 10px;
}

.stats-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.stats-main-title span {
  color: var(--orange);
  position: relative;
}

.stats-main-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(232, 103, 42, 0.3);
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-orange);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.stat-item:hover::before {
  transform: scaleY(1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(232, 103, 42, 0.3);
}

.stat-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: rgba(232, 103, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-10deg) scale(1.1);
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-suffix {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
   5. SECTION PARTENAIRES (Carousel)
============================================ */
.section-partners {
  padding: 70px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.section-partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.section-partners .section-header {
  margin-bottom: 40px;
}

.section-partners .section-title {
  font-size: 32px;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin-bottom: 30px;
}

.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 30px;
  animation: scroll-partners 30s linear infinite;
  width: fit-content;
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  padding: 25px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  flex-shrink: 0;
}

.partner-slide:hover {
  background: var(--white);
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(91, 45, 142, 0.15);
}

.partner-slide img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  transition: var(--transition);
}

.partner-slide:hover img {
  transform: scale(1.1);
}

.partner-placeholder .placeholder-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91, 45, 142, 0.1) 0%, rgba(232, 103, 42, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 32px;
  border: 2px dashed rgba(91, 45, 142, 0.3);
  transition: var(--transition);
}

.partner-placeholder:hover .placeholder-logo {
  color: var(--orange);
  border-color: var(--orange);
  transform: rotate(10deg);
}

.partner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-placeholder .partner-name {
  color: var(--gray-400);
}

.partners-cta-mini {
  text-align: center;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-300);
}

.partners-cta-mini p {
  font-size: 15px;
  color: var(--gray-600);
}

.partners-cta-mini a {
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 5px;
  transition: var(--transition);
}

.partners-cta-mini a:hover {
  color: var(--purple);
  gap: 10px;
}

/* ============================================
   6. SECTION ACTUALITÉS
============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.news-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(232, 103, 42, 0.4);
}

.news-card-date .day {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.news-card-date .month {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.news-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 30, 92, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.news-card:hover .news-card-image::after {
  opacity: 1;
}

.news-card-body {
  padding: 25px;
}

.news-card-category {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: rgba(91, 45, 142, 0.1);
  color: var(--purple);
}

.news-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.news-card:hover .news-card-body h3 {
  color: var(--purple);
}

.news-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.news-card-link:hover {
  gap: 12px;
  color: var(--purple);
}

/* ============================================
   7. SECTION CTA (Version compacte)
============================================ */
.cta-section-mini {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-mini::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 103, 42, 0.1);
  pointer-events: none;
}

.cta-section-mini::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-section-mini .cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  color: var(--white);
}

.cta-section-mini .cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  color: #ffffff;
}

.cta-section-mini .cta-content h2 span {
  color: var(--orange);
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.cta-section-mini .cta-content h2 span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(232, 103, 42, 0.6);
}

.cta-section-mini .cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
}

.cta-section-mini .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   8. FOOTER
============================================ */
.footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #0a1225 100%);
  color: var(--white);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--purple) 50%, var(--orange) 100%);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-about {
  padding-right: 25px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 55px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
}

.footer-logo .footer-logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
}

.footer-about > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(232, 103, 42, 0.4);
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-col ul li a i {
  font-size: 10px;
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 103, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item div {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p a {
  color: var(--orange);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ============================================
   9. BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(232, 103, 42, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 103, 42, 0.6);
}

/* ============================================
   10. ANIMATIONS AU SCROLL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   11. RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-label {
    justify-content: center;
  }

  .about-content .section-label::before {
    display: block;
  }

  .about-content .about-text {
    text-align: center;
  }

  .about-content .about-highlights {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-cta {
    text-align: center;
  }

  .priorities-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section-mini .cta-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-stats,
  .section-partners,
  .cta-section-mini {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .stats-main-title {
    font-size: 26px;
  }

  .section-desc {
    font-size: 15px;
  }

  .about-img-main img {
    height: 300px;
  }

  .about-img-secondary {
    width: 200px;
    height: 130px;
    bottom: -15px;
    right: -15px;
  }

  /* ✅ Badge responsive : reste en haut au milieu */
  .about-badge {
    width: 90px;
    height: 90px;
    top: -30px;
  }

  .about-badge .badge-icon {
    font-size: 22px;
  }

  .about-badge .badge-text {
    font-size: 9px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .partner-slide {
    min-width: 150px;
    padding: 20px 15px;
  }

  .partner-slide img,
  .partner-placeholder .placeholder-logo {
    width: 60px;
    height: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cta-section-mini .cta-content h2 {
    font-size: 22px;
  }

  .cta-section-mini .cta-content p {
    font-size: 14px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-suffix {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   12. CTA INTÉGRÉE AU FOOTER
============================================ */
.footer-cta {
  padding: 45px 0;
  background: linear-gradient(135deg, #4a1e5c 0%, var(--purple) 100%);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(232, 103, 42, 0.1);
  pointer-events: none;
}

.footer-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.footer-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.footer-cta h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  color: var(--white);
}

.footer-cta h2 span {
  color: var(--orange);
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.footer-cta h2 span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(232, 103, 42, 0.6);
}

.footer-cta p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 22px;
  line-height: 1.6;
}

.footer-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 35px 0;
  }

  .footer-cta h2 {
    font-size: 22px;
  }

  .footer-cta p {
    font-size: 14px;
  }

  .footer-cta .cta-buttons {
    flex-direction: column;
  }

  .footer-cta .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}