
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* About Section - Stylisation moderne et élégante */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 101, 132, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/* Wrapper d'image */
.about-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 50px 100px rgba(108, 99, 255, 0.2);
}

.about-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.05);
}

/* Badge d'expérience */
.about-experience {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  color: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrapper:hover .about-experience {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(108, 99, 255, 0.4);
}

.experience-years {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.experience-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Formes décoratives */
.decorative-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  z-index: 1;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Contenu texte */
.about-content {
  padding-left: 60px;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #1a202c 0%, #6C63FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #6C63FF, #FFD700);
  border-radius: 3px;
}

.about-description {
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #6C63FF;
}

/* Liste des caractéristiques */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #6C63FF, #FFD700);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-features li:hover {
  transform: translateX(15px);
  border-color: #c3cfe2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-features li:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 242, 101, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 1.8rem;
  color: #6C63FF;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-features li:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  color: white;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 80%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
}

.about-features li:hover .feature-icon::after {
  transform: rotate(30deg) translateX(100%);
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a202c;
  transition: all 0.4s ease;
}

.about-features li:hover .feature-text h4 {
  color: #6C63FF;
}

.feature-text p {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.4s ease;
}

.about-features li:hover .feature-text p {
  color: #4a5568;
}

/* Boutons CTA */
.about-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.cta-button-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.4);
}

.cta-button-primary:hover::before {
  left: 100%;
}

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #6C63FF;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #6C63FF;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.cta-button-outline:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
}

.cta-button-outline:hover::before {
  opacity: 1;
}

.cta-button-primary i,
.cta-button-outline i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button-primary:hover i {
  transform: translateX(5px);
}

.cta-button-outline:hover i {
  transform: translateX(5px);
}

/* Animation d'apparition */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-content {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-img-wrapper {
  animation: slideInLeft 0.8s ease-out;
}



/* Responsive */
@media (max-width: 1200px) {
  .about-title {
    font-size: 3rem;
  }
  
  .about-img {
    height: 500px;
  }
  
  .experience-years {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 100px 0;
  }
  
  .about-content {
    padding-left: 0;
    padding-top: 60px;
  }
  
  .about-img-wrapper {
    max-width: 600px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .about-features li {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-description {
    font-size: 1.1rem;
    padding-left: 15px;
  }
  
  .about-img {
    height: 400px;
  }
  
  .about-experience {
    padding: 20px;
    min-width: 130px;
  }
  
  .experience-years {
    font-size: 2.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.5rem;
    margin-right: 20px;
  }
  
  .about-features li {
    padding: 20px;
  }
  
  .cta-button-primary,
  .cta-button-outline {
    padding: 15px 30px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-button-primary,
  .cta-button-outline {
    text-align: center;
    justify-content: center;
  }
}

/* Effet de parallaxe sur l'image */
@media (min-width: 992px) {
  .about-img-wrapper {
    will-change: transform;
  }
  
  .about-section:hover .about-img-wrapper {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  }
}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* Team Section - Stylisation élégante et moderne */
.team-section {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 242, 101, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.team-section .container {
  position: relative;
  z-index: 2;
}

/* Titre de section */
.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-header h2 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #6C63FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.team-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #6C63FF, #FFD700);
  border-radius: 3px;
}

.team-header p {
  font-size: 1.3rem;
  color: #a0aec0;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
}

/* Grille des membres */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Carte membre */
.team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-25px);
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(108, 99, 255, 0.2),
    inset 0 0 50px rgba(108, 99, 255, 0.1);
}

/* Image du membre */
.member-photo-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}

.team-card:hover .member-photo {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.member-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-card:hover .member-photo-overlay {
  opacity: 1;
}

/* Badge de rôle */
.role-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.team-card:hover .role-badge {
  transform: translateY(0);
  opacity: 1;
}

/* Réseaux sociaux */
.social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
}

.team-card:hover .social-overlay {
  transform: translateY(0);
  opacity: 1;
}

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

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

/* Informations du membre */
.member-details {
  padding: 35px;
  text-align: center;
}

.member-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.team-card:hover .member-name {
  background: linear-gradient(135deg, #6C63FF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-role {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
  transition: all 0.4s ease;
}

.team-card:hover .member-role {
  color: #ffffff;
}

/* Tags de compétences */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.team-card:hover .skill-tags {
  opacity: 1;
  transform: translateY(0);
}

.skill-tag {
  background: rgba(108, 99, 255, 0.1);
  color: #a5b4fc;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(108, 99, 255, 0.3);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(108, 99, 255, 0.2);
  transform: translateY(-2px);
}

/* Animation d'apparition */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.team-card {
  animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform-style: preserve-3d;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.3s; }
.team-card:nth-child(3) { animation-delay: 0.5s; }

/* Effet de brillance sur les cartes */
.team-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 80%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.team-card:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* Section d'appel à l'action */
.team-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 80%
  );
  transform: rotate(30deg);
  animation: ctaShine 8s linear infinite;
}

@keyframes ctaShine {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6C63FF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-text {
  color: #a0aec0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.join-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(108, 99, 255, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.join-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.join-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(108, 99, 255, 0.4);
}

.join-button:hover::before {
  left: 100%;
}

.join-button i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.join-button:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .team-header h2 {
    font-size: 3.5rem;
  }
  
  .member-photo-container {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .team-header h2 {
    font-size: 3rem;
  }
  
  .team-cta {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 100px 0;
  }
  
  .team-header h2 {
    font-size: 2.5rem;
  }
  
  .team-header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .member-photo-container {
    height: 300px;
  }
  
  .member-details {
    padding: 25px;
  }
  
  .member-name {
    font-size: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
}

/* Animation des cartes au scroll */
@media (prefers-reduced-motion: no-preference) {
  .team-card {
    will-change: transform, opacity;
  }
}

/* Particules animées en arrière-plan */
.team-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.team-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  border-radius: 50%;
  animation: teamParticleFloat 15s infinite linear;
}

@keyframes teamParticleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}


/* Why Choose Us Section - Extension du style précédent */
.choose-us-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.choose-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 242, 101, 0.15) 0%, transparent 40%);
  z-index: 1;
}

.choose-us-section .container {
  position: relative;
  z-index: 2;
}

/* Titre de section */
.choose-header {
  text-align: center;
  margin-bottom: 80px;
}

.choose-header h2 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #6C63FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.choose-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #6C63FF, #FFD700);
  border-radius: 3px;
}

.choose-header p {
  font-size: 1.3rem;
  color: #a0aec0;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
}

/* Grille des raisons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Carte de raison */
.reason-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6C63FF, #FFD700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.reason-card:hover {
  transform: translateY(-20px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(108, 99, 255, 0.2),
    inset 0 0 40px rgba(108, 99, 255, 0.1);
}

.reason-card:hover::before {
  transform: scaleX(1);
}

/* Icône de raison */
.reason-icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.reason-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(255, 242, 101, 0.2));
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.5s ease;
  filter: blur(15px);
  opacity: 0.5;
}

.reason-card:hover .reason-icon-bg {
  transform: scale(1.2);
  opacity: 0.8;
}

.reason-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: 2;
}

.reason-card:hover .reason-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.5);
}

.reason-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

.reason-card:hover .reason-icon {
  background: linear-gradient(135deg, #6C63FF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contenu de la raison */
.reason-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

.reason-card:hover .reason-content h3 {
  background: linear-gradient(135deg, #6C63FF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reason-content p {
  color: #a0aec0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.5s ease;
}

.reason-card:hover .reason-content p {
  color: #ffffff;
}

/* Badge de raison */
.reason-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.reason-card:hover .reason-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Statistiques supplémentaires */
.reason-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.reason-card:hover .reason-stats {
  opacity: 1;
  transform: translateY(0);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 5px;
}

/* Section d'excellence */
.excellence-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.excellence-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 80%
  );
  transform: rotate(30deg);
  animation: excellenceShine 6s linear infinite;
}

@keyframes excellenceShine {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.excellence-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6C63FF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.excellence-subtitle {
  color: #a0aec0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Animation d'apparition */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reason-card {
  animation: fadeInScale 0.6s ease-out forwards;
  opacity: 0;
}

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

/* Effet de particules pour cette section */
.choose-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.choose-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #6C63FF, #FFD700);
  border-radius: 50%;
  animation: floatParticle 8s infinite linear;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .choose-header h2 {
    font-size: 3.5rem;
  }
  
  .excellence-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .choose-header h2 {
    font-size: 3rem;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .excellence-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .choose-header h2 {
    font-size: 2.5rem;
  }
  
  .choose-header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .excellence-title {
    font-size: 1.8rem;
  }
  
  .excellence-subtitle {
    font-size: 1.1rem;
  }
}

/* Effet de connexion entre les cartes */
.reason-connection {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(108, 99, 255, 0.5), rgba(255, 101, 132, 0.5));
  opacity: 0.3;
  transition: all 0.4s ease;
  z-index: 1;
}

.reason-card:hover .reason-connection {
  opacity: 0.8;
  width: 40px;
}

/* Indicateur de succès */
.success-indicator {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: all 0.4s ease;
}

.reason-card:hover .success-indicator {
  opacity: 1;
  bottom: -25px;
}

.success-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: successPulse 1.5s ease-in-out infinite;
}

.success-dot:nth-child(2) { animation-delay: 0.2s; }
.success-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}