/* ===== HOME PAGE STYLES ===== */

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: var(--color-white);
  padding: 80px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background-image: url('/assets/img/hero-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.hero-card__content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 704px;
}

.hero-cta {
  margin-top: 30px;
}

.hero-cta .btn {
  font-size: 24px;
  padding: 15px 30px;
}

/* ===== SPONSORS SECTION ===== */
.sponsors-section {
  background-color: var(--color-white);
  padding: 80px 0;
  overflow: hidden;
}

/* ===== SEARCH ACTIVITY SECTION ===== */
.search-activity-section {
  background-color: var(--color-white);
  padding: 40px 0;
}

.search-activity-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== CONTRATS PRO SECTION ===== */
.contrats-pro-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.contrats-pro-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contrats-pro-card {
  background-color: var(--color-white-blue);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.contrats-pro-content {
  flex: 1;
  max-width: 500px;
}

.contrats-pro-title {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}

.contrats-pro-description {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
}

.contrats-pro-checklist {
  margin-bottom: 40px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.checklist-item:last-child {
  margin-bottom: 0;
}

.checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.checklist-icon--blue {
  background-color: var(--color-blue-sky);
}

.checklist-icon--green {
  background-color: var(--color-green-water);
}

.checklist-icon--orange {
  background-color: var(--color-beige);
}

.checklist-item span {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-dark-blue);
}

.profile-card {
  position: absolute;
  background-color: var(--color-white);
  border-radius: var(--border-radius) 0 var(--border-radius)var(--border-radius);
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.profile-card--top {
  bottom: 20px;
  left: -100px;
}

.profile-card--bottom {
  top: 130px;
  right: 191px;
}



.profile-name {
  font-family: var(--font-avenir);
  font-size: 20px;
  color: var(--color-dark-blue);
  margin-bottom: 5px;
}

.profile-role {
  font-family: var(--font-avenir);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-black);
}

.contrats-pro-cta {
  margin-top: 30px;
}

.contrats-pro-images {
  flex: 1;
  position: relative;
  height: 500px;
}

.contrat-image {
  position: absolute;
  border-radius: 20px;
  width: 85%;  
}

.contrat-image--top {
  top: 0;
  right: -26px;
  z-index: 2;
}

.contrat-image--bottom {
  bottom: -3px;
  left: 0;
  z-index: 1;
}

.contrat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsors-section__container {
  margin: 0 auto;
  text-align: center;
}



.sponsors-carousel-container {
  background-color: var(--color-white-blue);
  border-radius: var(--border-radius);
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.sponsors-carousel {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-sponsors 20s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-sponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsors-carousel:hover {
  animation-play-state: paused;
}

.sponsor-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.sponsor-logo {
  max-height: 60px;
  width: auto;
  transition: filter 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 0;
  }
  
  
  .hero-card__content {
    padding: 40px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-title-accent {
    font-size: 62px;
  }
  
  .sponsors-carousel-container {
    padding: 30px;
  }
  
  .sponsors-carousel {
    gap: 50px;
  }
  
  .sponsor-logo {
    max-height: 50px;
  }

  .contrats-pro-card {
    padding: 40px 30px;
    gap: 40px;
  }

  .contrats-pro-title {
    font-size: 28px;
  }

  .contrats-pro-description {
    font-size: 16px;
  }

  .contrats-pro-images {
    height: 355px;
  }

  

  

  .comment-ca-marche-card {
    height: auto !important;
    padding: 50px 30px;
    gap: 40px;
  }

  .comment-ca-marche-title {
    font-size: 36px;
  }

  .comment-ca-marche-intro {
    font-size: 18px;
  }

  .comment-ca-marche-card-title {
    font-size: 28px;
  }

  .comment-ca-marche-card-text {
    font-size: 16px;
  }

  .comment-ca-marche-highlight {
    font-size: 18px;
  }

  .expert-card {
    height: auto !important;
    padding: 50px 30px;
    gap: 40px;
  }

  .expert-title {
    font-size: 28px;
  }

  .expert-text {
    font-size: 16px;
  }

  .expert-text--highlight {
    font-size: 18px;
  }

  .expert-main-image {
    max-height: 350px;
  }

  .controle-card,
  .suivi-card {
    height: auto !important;
    padding: 50px 30px;
    gap: 40px;
  }

  .controle-title,
  .suivi-title {
    font-size: 28px;
  }

  .controle-text,
  .suivi-text {
    font-size: 16px;
  }

  .controle-highlight,
  .suivi-highlight {
    font-size: 18px;
  }

  .controle-illustration img,
  .suivi-illustration img {
    max-height: 350px;
  }

  .controle-feather {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }
  
  .hero-section__container {
    padding: 0 20px;
  }
  
  .hero-card {
    background-position: 83% center;
  }
  
  .hero-card__content {
    padding: 5px;
    max-width: 100%;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-title-accent {
    font-size: 48px;
    margin: 8px 0;
  }
  
  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 1px;
  }
  
  .hero-cta .btn {
    font-size: 20px;
    padding: 12px 24px;
    width: 100%;
    max-width: 300px;
  }
  
  .sponsors-section {
    padding: 60px 0;
  }
  
  .sponsors-section__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .sponsors-carousel-container {
    padding: 25px;
  }
  
  .sponsors-carousel {
    gap: 40px;
    animation-duration: 15s;
  }
  
  .sponsor-logo {
    max-height: 45px;
  }

  .contrats-pro-section__container {
    padding: 0 20px;
  }

  .contrats-pro-card {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
    border-radius: 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .contrats-pro-content {
    margin-top: 150px;
    max-width: 100%;
    text-align: center;
    order: 2;
  }

  .contrats-pro-title {
    font-size: 28px;
  }

  .contrats-pro-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contrats-pro-checklist {
    margin-bottom: 30px;
  }

  .checklist-item {
    justify-content: center;
    text-align: center;
  }

  .contrats-pro-images {
    width: 100%;
    flex: auto;
    order: 1;
  }
  .contrat-image--bottom{
    bottom: -74px;
  }
  

  

  

  .profile-name{
    font-size: 16px;
  }
  .profile-role{
    font-size: 14px;
  }
  .profile-card--top{
    bottom:23px;
    left: -61px;

  }
  .profile-card--bottom {
    right: -62px;
  }

  .comment-ca-marche-section__container {
    padding: 0 20px;
  }

  .comment-ca-marche-header {
    text-align: left !important;
    margin-bottom: 40px;
  }

  .comment-ca-marche-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .comment-ca-marche-intro {
    font-size: 16px;
  }

  .comment-ca-marche-card {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
    border-radius: 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .comment-ca-marche-content {
    max-width: 100%;
    order: 2;
  }

  .comment-ca-marche-card-title {
    font-size: 28px;
  }

  .comment-ca-marche-card-text {
    font-size: 16px;
  }

  .comment-ca-marche-highlight {
    font-size: 18px;
  }

  .comment-ca-marche-illustration {
    order: 1;
  }

  .comment-ca-marche-illustration img {
    max-height: 366px;
  }

  .expert-section__container {
    padding: 0 20px;
  }

  .expert-card {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
    border-radius: 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .expert-illustration {
    order: 1;
  }

  .expert-content {
    max-width: 100%;
    order: 2;
  }

  .expert-title {
    font-size: 28px;
  }

  .expert-text {
    font-size: 16px;
  }

  .expert-text--highlight {
    font-size: 18px;
  }

  .expert-main-image {
    max-height: 300px;
  }

  .expert-message {
    top: 10px;
    left: 10px;
    padding: 12px 16px;
    font-size: 14px;
    max-width: 200px;
  }

  .expert-sticky-note img {
    width: 60px;
  }

  .controle-section__container,
  .suivi-section__container {
    padding: 0 20px;
  }

  .controle-card,
  .suivi-card {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
    border-radius: 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .controle-content,
  .suivi-content {
    max-width: 100%;
    order: 2;
  }

  .controle-illustration,
  .suivi-illustration {
    order: 1;
  }

  .controle-title,
  .suivi-title {
    font-size: 28px;
  }

  .controle-text,
  .suivi-text {
    font-size: 16px;
  }

  .controle-highlight,
  .suivi-highlight {
    font-size: 18px;
  }

  .controle-illustration img,
  .suivi-illustration img {
    max-height: 300px;
  }

  .controle-feather img {
    width: 50px;
  }

  .controle-feather {
    display: none;
  }
}

/* ===== COMMENT ÇA MARCHE SECTION ===== */
.comment-ca-marche-section {
  background-color: var(--color-white);
  padding: 80px 0;
  position: relative;
}

.comment-ca-marche-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.comment-ca-marche-header {
  text-align: center;
  margin-bottom: 60px;
}

.comment-ca-marche-title {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
}

.comment-ca-marche-intro {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  max-width: 800px;
  margin: 0 auto;
}

.comment-ca-marche-card {
  background: linear-gradient(135deg, #A4E1D4 0%, #D1F5E1 100%);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.comment-ca-marche-content {
  flex: 1;
  max-width: 600px;
}

.comment-ca-marche-card-title {
  font-family: var(--font-avenir);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 25px;
}

.comment-ca-marche-card-text {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}

.comment-ca-marche-highlight {
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
  padding: 15px 0;
}

.comment-ca-marche-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-ca-marche-illustration img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

/* ===== STICKY STACKING EFFECT ===== */
.sticky-stacking-container {
  position: relative;
  z-index: 1;
}

.comment-ca-marche-card {
  height:500px;
  position: sticky;
  top: 100px;
  z-index: 10;
  transition: all 0.3s ease;
  margin-bottom: 80px; /* Espacement entre les cartes */
}

.expert-card {
  height:500px;
  position: sticky;
  top: 100px;
  z-index: 20;
  transition: all 0.3s ease;
  margin-bottom: 80px; /* Espacement entre les cartes */
}

.controle-card {
  height:500px;
  position: sticky;
  top: 100px;
  z-index: 30;
  transition: all 0.3s ease;
  margin-bottom: 80px; /* Espacement entre les cartes */
}

.suivi-card {
  height:500px;
  position: sticky;
  top: 100px;
  z-index: 40;
  transition: all 0.3s ease;
  margin-bottom: 0; /* Dernière carte */
}

/* Animation pour l'effet de stacking */
.comment-ca-marche-card.stacking {
  transform: translateY(0);
}

.expert-card.stacking {
  transform: translateY(0);
}

.controle-card.stacking {
  transform: translateY(0);
}

.suivi-card.stacking {
  transform: translateY(0);
}

/* ===== EXPERT SECTION ===== */
.expert-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.expert-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.expert-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F3E9DB 100%);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.expert-illustration {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expert-main-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.expert-message {
  position: absolute;
  top: -22px;
  left: -28px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-blue);
  max-width: 250px;
  z-index: 2;
}

.expert-sticky-note {
  position: absolute;
  bottom: -40px;
  right: -22px;
  z-index: 2;
}

.expert-sticky-note img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.expert-content {
  flex: 1;
  max-width: 600px;
}

.expert-title {
  font-family: var(--font-avenir);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 25px;
}

.expert-text {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}

.expert-text--highlight {
  font-weight: 600;
  font-size: 20px;
}

/* ===== CONTRÔLE SECTION ===== */
.controle-section {
  background-color: var(--color-white);
}

.controle-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.controle-card {
  background: linear-gradient(135deg, #D8CFFE 0%, #F1EFF9 100%);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.controle-content {
  flex: 1;
  max-width: 600px;
}

.controle-title {
  font-family: var(--font-avenir);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 25px;
}

.controle-text {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}

.controle-highlight {
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
  padding: 15px 0;
}

.controle-illustration {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.controle-illustration img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  
}

.controle-feather {
  position: absolute;
  z-index: 2;
}

.controle-feather--top-right {
  top: -100px;
  left: -80px;
}

.controle-feather--bottom-left {
  bottom: -130px;
  right: -94px;
}



/* ===== SUIVI SECTION ===== */


.suivi-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.suivi-card {
  background: linear-gradient(135deg, #8FBFF8 0%, #DDEBFA 100%);
  border-radius: var(--border-radius);
  padding: 0px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.suivi-content {
  flex: 1;
  max-width: 600px;
}

.suivi-title {
  font-family: var(--font-avenir);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 25px;
}

.suivi-text {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}

.suivi-highlight {
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
  padding: 15px 0;
}

.suivi-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.suivi-illustration img {
  max-width: 100%;
  height: auto;
}

/* ===== ASSURANCES PROFILES SECTION ===== */
.assurances-profiles-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.assurances-profiles-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.assurances-profiles-title {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  text-align: center;
  margin-bottom: 60px;
}

.assurances-profiles-carousel-container {
  overflow: hidden;
  padding: 20px 0;
}

.assurances-profiles-carousel {
  display: flex;
  gap: 30px;
  animation: scroll-assurances 30s linear infinite;
  width: max-content;
}

.assurances-profiles-carousel:hover {
  animation-play-state: paused;
}

.assurance-profile-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
  width: 350px;
  display: flex;
  flex-direction: column;
}

.assurance-profile-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0; /* Ne se réduit pas */
  border-radius: var(--border-radius);

}

.assurance-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assurance-profile-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: 10px 15px;
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.assurance-profile-content {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
}

.assurance-profile-title {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 15px;
}

.assurance-profile-description {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
  height: 72px; /* Hauteur fixe pour 3 lignes de texte (16px * 1.5 * 3) */
  overflow: hidden; /* Cache le texte qui dépasse */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limite à 3 lignes */
  line-clamp: 3; /* Standard property for compatibility */
  -webkit-box-orient: vertical;
}

.assurance-profile-content .btn {
  width: 63%;
  text-align: center;
}

@keyframes scroll-assurances {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== RESPONSIVE ASSURANCES PROFILES ===== */
@media (max-width: 1024px) {
  .assurances-profiles-title {
    font-size: 36px;
    margin-bottom: 50px;
  }
  

  .assurance-profile-title {
    font-size: 18px;
  }

  .assurance-profile-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .assurances-profiles-section__container {
    padding: 0 20px;
  }

  .assurances-profiles-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .assurances-profiles-carousel {
    gap: 20px;
    animation: none;
    transform: none;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .assurance-profile-content .btn {
    width: 70%;
  }
  

  .assurance-profile-content {
    padding: 20px;
  }

  .assurance-profile-title {
    font-size: 18px;
  }

  .assurance-profile-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .assurances-profiles-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .assurance-profile-card {
    width: 280px;
  }

  .assurance-profile-content {
    padding: 15px;
  }

  .assurance-profile-title {
    font-size: 16px;
  }

  .assurance-profile-description {
    font-size: 14px;
  }
}

/* ===== TÉMOIGNAGES SECTION ===== */
.temoignages-section {
  background-color: var(--color-cream);
  padding: 80px 0;
}

.temoignages-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.temoignages-badge {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-violet);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.temoignages-title {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}

.temoignages-intro {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-blue);
  max-width: 600px;
  margin: 0 auto;
}

.temoignages-carousel-container {
  overflow: hidden;
  margin-bottom: 40px;
}

.temoignages-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.temoignage-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
  width: 350px;
}

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

.temoignage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temoignage-content {
  padding: 25px;
}

.temoignage-name {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark-blue);
  margin-bottom: 5px;
}

.temoignage-role {
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-blue);
  margin-bottom: 15px;
}

.temoignage-quote {
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark-blue);
  font-style: italic;
}

.temoignages-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.temoignages-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-violet);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.temoignages-nav-btn:hover {
  background-color: var(--color-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

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

.temoignages-nav-btn.disabled {
  background-color: var(--color-violet-light);
  cursor: not-allowed;
  opacity: 0.6;
}

.temoignages-nav-btn.disabled:hover {
  background-color: var(--color-violet-light);
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE TÉMOIGNAGES ===== */
@media (max-width: 1024px) {
  .temoignages-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .temoignages-intro {
    font-size: 16px;
  }

  .temoignage-card {
    width: 320px;
  }

  .temoignage-content {
    padding: 20px;
  }

  .temoignage-name {
    font-size: 16px;
  }

  .temoignage-role {
    font-size: 15px;
  }

  .temoignage-quote {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .temoignages-section__container {
    padding: 0 20px;
  }

  .temoignages-header {
    margin-bottom: 40px;
  }

  .temoignages-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .temoignages-intro {
    font-size: 15px;
  }

  .temoignages-carousel {
    gap: 20px;
  }

  .temoignage-card {
    width: 300px;
  }

  .temoignage-content {
    padding: 20px;
  }

  .temoignage-name {
    font-size: 16px;
  }

  .temoignage-role {
    font-size: 15px;
  }

  .temoignage-quote {
    font-size: 15px;
  }

  .temoignages-nav-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .temoignages-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .temoignages-intro {
    font-size: 14px;
  }

  .temoignage-card {
    width: 280px;
  }

  .temoignage-content {
    padding: 15px;
  }

  .temoignage-name {
    font-size: 15px;
  }

  .temoignage-role {
    font-size: 14px;
  }

  .temoignage-quote {
    font-size: 14px;
  }

  .temoignages-nav-btn {
    width: 40px;
    height: 40px;
  }










}

/* ===== AVEC/SANS KENT SECTION ===== */




@media (max-width: 480px) {
  
  
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-title-accent {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .sponsors-section {
    padding: 40px 0;
  }
  

  
  .sponsors-carousel-container {
    padding: 20px;
  }
  
  .sponsors-carousel {
    gap: 30px;
    animation-duration: 12s;
  }
  
  .sponsor-logo {
    max-height: 40px;
  }

  .contrats-pro-card {
    padding: 30px 15px;
    gap: 30px;
  }

  .contrats-pro-title {
    font-size: 24px;
  }

  .contrats-pro-description {
    font-size: 15px;
  }

  

  

  

  .comment-ca-marche-card {
    height: 750px !important;
    padding: 30px 15px;
    gap: 30px;
  }

  .comment-ca-marche-title {
    font-size: 28px;
  }

  .comment-ca-marche-intro {
    font-size: 15px;
  }

  .comment-ca-marche-card-title {
    font-size: 24px;
  }

  .comment-ca-marche-card-text {
    font-size: 15px;
  }

  .comment-ca-marche-highlight {
    font-size: 16px;
  }

  .comment-ca-marche-illustration {
    order: 1;
  }

  .comment-ca-marche-illustration img {
    max-height: 250px;
  }

  .expert-card {
    height: 750px !important;
    padding: 30px 15px;
    gap: 30px;
  }

  .expert-title {
    font-size: 24px;
  }

  .expert-text {
    font-size: 15px;
  }

  .expert-text--highlight {
    font-size: 16px;
  }

  .expert-main-image {
    max-height: 250px;
  }

  .expert-message {
    top: 5px;
    left: 5px;
    padding: 10px 14px;
    font-size: 13px;
    max-width: 180px;
  }

  .expert-sticky-note img {
    width: 50px;
  }

  .controle-card,
  .suivi-card {
    padding: 30px 15px;
    gap: 30px;
  }
  .controle-card {
    height: 750px !important;
  }
  

  .controle-title,
  .suivi-title {
    font-size: 24px;
  }

  .controle-text,
  .suivi-text {
    font-size: 15px;
  }

  .controle-highlight,
  .suivi-highlight {
    font-size: 16px;
  }

  .controle-illustration img,
  .suivi-illustration img {
    max-height: 250px;
  }

  .controle-feather img {
    width: 40px;
  }
}

/* ===== ASSURANCES PROFILES SECTION ===== */
.assurances-profiles-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.assurances-profiles-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.assurances-profiles-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-dark-blue);
  text-align: center;
  margin-bottom: 60px;
}

.assurances-profiles-list {
  display: flex; /* Flexbox pour le scroll horizontal */
  gap: 30px;
  overflow-x: auto; /* Scroll horizontal */
  padding: 20px 0 20px 40px; /* Alignement avec les autres containers */
  scroll-behavior: smooth; /* Scroll fluide */
  -webkit-overflow-scrolling: touch; /* Scroll fluide sur iOS */
  /* Masquer la scrollbar mais garder la fonctionnalité */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.assurances-profiles-list::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

/* Assurer que les cartes ne se rétrécissent pas */
.assurances-profiles-list .assurance-profile-card {
  flex: 0 0 350px; /* Largeur fixe, pas de rétrécissement */
  min-width: 350px; /* Largeur minimale garantie */
}

/* Modifier le conteneur pour qu'il couvre toute la largeur mais aligne le début */
.assurances-profiles-section__container {
  max-width: 100% !important; /* Couvre toute la largeur */
  margin: 0 !important; /* Pas de margin auto */
  padding: 0; /* Pas de padding sur le container global */
}



/* Responsive pour la section assurances */
@media (max-width: 768px) {
  .assurances-profiles-list {
    gap: 20px;
    padding: 0 15px 0 20px; /* Mobile : moins de padding à gauche */
  }
  
  
}
