
/* ===== SECTION QUI SOMMES-NOUS ? - DESIGN MODERNE ===== */

.who-we-are-section {
  padding: 120px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.who-we-are-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.who-we-are-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ===== HEADER SECTION ===== */
.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

/* ===== VISION BLOCK ===== */
.vision-block {
  margin-bottom: 8rem;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.vision-content h3::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2E86DE 0%, #1e40af 100%);
  border-radius: 2px;
}

.modern-quote {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.modern-quote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(46, 134, 222, 0.1);
  line-height: 1;
}

.modern-quote p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.modern-quote cite {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  font-style: normal;
}

/* ===== TEAM BLOCK ===== */
.team-block h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.team-block h3::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2E86DE 0%, #1e40af 100%);
  border-radius: 2px;
}

.team-intro {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.modern-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== TEAM MEMBERS ===== */
.modern-team-member {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.modern-team-member:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(46, 134, 222, 0.3);
}

.modern-team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 134, 222, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-team-member:hover::before {
  opacity: 1;
}

.member-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  position: relative;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(46, 134, 222, 0.2);
  transition: all 0.3s ease;
}

.modern-team-member:hover .member-avatar img {
  border-color: rgba(46, 134, 222, 0.5);
  transform: scale(1.05);
}

.member-details h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.member-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .who-we-are-section {
    padding: 80px 0;
  }
  
  .who-we-are-container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .vision-content h3,
  .team-block h3 {
    font-size: 2rem;
  }
  
  .modern-quote {
    padding: 2.5rem;
  }
  
  .modern-quote p {
    font-size: 1.2rem;
  }
  
  .modern-team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modern-team-member {
    padding: 2rem;
  }
  
  .member-avatar {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .modern-quote {
    padding: 2rem;
  }
  
  .modern-quote p {
    font-size: 1.1rem;
  }
  
  .modern-team-member {
    padding: 1.5rem;
  }
}
