/* Variables CSS pour la cohérence - partagées avec contact-modern.css, sophro.css, kinesio.css */
:root {
  --primary-color: #ed85b0;
  --primary-light: #f8a5c4;
  --primary-dark: #d46a8f;
  --secondary-color: #393b3f;
  --accent-color: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #ed85b0, #f8a5c4);
  --gradient-secondary: #F0F8FF;
  --shadow-soft: 0 8px 32px rgba(237, 133, 176, 0.1);
  --shadow-medium: 0 12px 40px rgba(237, 133, 176, 0.15);
  --shadow-strong: 0 20px 60px rgba(237, 133, 176, 0.2);
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Couleurs de la page d'accueil */
  --color-home-blue: #64b5d5;
  --color-home-pink: #ed85b0;
  --color-home-yellow: #f0ca0c;
  --color-home-pink-light: #f8a5c4;
  --color-home-pink-dark: #d46a8f;
  
  /* Couleurs alternées supplémentaires */
  --color-blue: #87CEEB;
  --color-yellow: #FFD700;
  --color-pink: #ed85b0;
  --color-purple: #DA70D6;
  --color-orange: #FFA500;
  --color-green: #98FB98;
  --color-teal: #20B2AA;
  --color-coral: #FF7F50;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
  }
  
  /* On crée une transition lors du scroll  */
  html{
    scroll-behavior: smooth;
  }

  /* Empêcher le scroll horizontal sur mobile */
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* S'assurer que toutes les sections respectent la largeur de l'écran */
  section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* S'assurer que les conteneurs principaux respectent la largeur */
  .container, .wrapper, main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Empêcher le dépassement horizontal pour les éléments avec des largeurs fixes */
  img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
  }

  /* S'assurer que les tableaux ne dépassent pas */
  table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
  }

  /* Empêcher le dépassement pour les éléments avec des largeurs fixes */
  .hero__image, .hero__image-frame, .hero__image-container {
    max-width: 100%;
    overflow: hidden;
  }

  
  /* On crée une transition lors du scroll  */
  html{
    scroll-behavior: smooth;
  }

  /* *************** HERO SECTION VERSION 2 ***************** */
  
  .hero__intro-v2 {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #F0F8FF;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F0F8FF;
  }

  .hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
  }

  .particle--1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }

  .particle--2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
  }

  .particle--3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
  }

  .particle--4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
  }

  .hero__content-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero__text-v2 {
    color: white;
  }

  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .badge__icon {
    font-size: 1.2rem;
  }

  .hero__title-v2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero__title-main {
    display: block;
    color: #64b5d5;
  }

  .hero__title-emphasis {
    display: block;
    background: linear-gradient(135deg, #ed85b0, #f8a5c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero__subtitle-v2 {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .hero__features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }

  .feature__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .feature__icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }

  .feature__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
  }

  .hero__cta-v2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero__button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .hero__button--primary {
    background: linear-gradient(135deg, #ed85b0, #f8a5c4);
    color: white;
    box-shadow: 0 8px 25px rgba(237, 133, 176, 0.3);
  }

  .hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 133, 176, 0.4);
  }

  .hero__button--yellow {
    /* Aligné sur le bouton "En savoir plus" (Kinésiologie) */
    background: linear-gradient(135deg, #f0ca0c, #f4d03f);
    color: white;
    box-shadow: 0 8px 25px rgba(240, 202, 12, 0.35);
  }

  .hero__button--yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 202, 12, 0.45);
  }

  .hero__button--outline {
    background: transparent;
    color: #333;
    border: 2px solid rgba(237, 133, 176, 0.3);
    backdrop-filter: blur(10px);
  }

  .hero__button--outline:hover {
    background: rgba(237, 133, 176, 0.1);
    border-color: rgba(237, 133, 176, 0.5);
    transform: translateY(-3px);
  }

  .button__icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .hero__button--primary:hover .button__icon {
    transform: translateX(5px);
  }

  .hero__visual-v2 {
    position: relative;
  }

  .hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero__image-frame {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(100, 181, 213, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .hero__image-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .hero__image-frame:hover .hero__image-v2 {
    transform: scale(1.05);
  }

  .hero__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }

  .floating__element {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
  }

  .floating__element--1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .floating__element--2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
  }

  .floating__element--3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
  }

  /* *************** HERO SECTION VERSION 1 (ANCIENNE) ***************** */
  
  .hero__intro {
    background: #F0F8FF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .hero__intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ed85b0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
  }

  .hero__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero__text {
    animation: fadeInLeft 1s ease-out;
  }


  .hero__subtitle {
    font-size: 1.4rem;
    color: #ed85b0;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .hero__description {
    margin-bottom: 40px;
  }

  .hero__description p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
  }

  .hero__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero__button {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }

  .hero__button:first-child {
    background: linear-gradient(135deg, #ed85b0, #f8a5c4);
    color: white;
    box-shadow: 0 8px 25px rgba(237, 133, 176, 0.3);
  }

  .hero__button:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 133, 176, 0.4);
  }

  .hero__button--secondary {
    background: transparent;
    color: #ed85b0;
    border: 2px solid #ed85b0;
  }

  .hero__button--secondary:hover {
    background: #ed85b0;
    color: white;
    transform: translateY(-3px);
  }

  .hero__visual {
    animation: fadeInRight 1s ease-out 0.3s both;
  }

  .hero__image-container {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero__image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(237, 133, 176, 0.2);
    position: relative;
    z-index: 2;
  }

  .hero__decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ed85b0, #f8a5c4);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
  }

  /* Ajuster la décoration sur mobile pour éviter le dépassement */
  @media screen and (max-width: 768px) {
    .hero__decoration {
      right: 0;
      width: 150px;
      height: 150px;
    }
  }

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

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

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

  /* Responsive pour la section hero V2 */
@media screen and (max-width: 1080px) {
  .hero__content-v2 {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero__content-v2 {
    display: flex;
    flex-direction: column;
  }

  .hero__visual-v2 {
    order: -1;
  }

  .hero__title-v2 {
    font-size: 3.5rem;
  }

  .hero__features {
    justify-content: center;
  }

  .hero__image-frame {
    width: 400px;
    height: 400px;
  }
}

  @media screen and (max-width: 760px) {
    .hero__intro-v2 {
      min-height: auto;
      padding: 80px 0;
    }

    .hero__title-v2 {
      font-size: 3rem;
    }

    .hero__subtitle-v2 {
      font-size: 1.2rem;
    }

    .hero__features {
      gap: 20px;
    }

    .feature__icon {
      font-size: 1.5rem;
    }

    .hero__cta-v2 {
      flex-direction: column;
      align-items: center;
    }

    .hero__button-v2 {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }

    .hero__image-frame {
      width: 350px;
      height: 350px;
    }
  }

  @media screen and (max-width: 480px) {
    .hero__title-v2 {
      font-size: 2.5rem;
    }

    .hero__subtitle-v2 {
      font-size: 1.1rem;
    }

    .hero__features {
      flex-direction: column;
      gap: 15px;
    }

    .hero__image-frame {
      width: 300px;
      height: 300px;
    }

    .floating__element {
      font-size: 1.5rem;
    }
  }

  /* Responsive pour la section hero V1 (ancienne) */
  @media screen and (max-width: 1080px) {
    .hero__content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }


    .hero__image {
      width: 350px;
      height: 350px;
    }
  }

  @media screen and (max-width: 760px) {
    .hero__intro {
      padding: 60px 0;
    }


    .hero__subtitle {
      font-size: 1.2rem;
    }

    .hero__description p {
      font-size: 1.1rem;
    }

    .hero__cta {
      flex-direction: column;
      align-items: center;
    }

    .hero__button {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }

    .hero__image {
      width: 300px;
      height: 300px;
    }

    .hero__decoration {
      width: 150px;
      height: 150px;
    }
  }

  @media screen and (max-width: 480px) {
    .hero__intro {
      padding: 40px 0;
    }


    .hero__subtitle {
      font-size: 1.1rem;
    }

    .hero__description p {
      font-size: 1rem;
    }

    .hero__image {
      width: 250px;
      height: 250px;
    }

    .hero__decoration {
      width: 100px;
      height: 100px;
    }
  }

  .header__logo-container {
    height: 160px;
    text-align: center;
  }

  .header__logo-container img{
    width: 160px;
    height: 160px;
  }

/* *************** NAV ***************** */

/* Ancienne navigation supprimée - remplacée par la navigation moderne */
  
  

/* *************** FOOTER HYBRIDE ***************** */

.footer-hybrid {
  background: linear-gradient(135deg, #505154, #6c757d);
  color: white;
  padding: 40px 0 20px 0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Section principale du footer */
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__section {
  text-align: left;
}

.footer__section h3 {
  color: #ed85b0;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  border-bottom: 2px solid #ed85b0;
  padding-bottom: 5px;
  display: inline-block;
}

.footer__section ul {
  list-style: none;
  padding: 0;
}

.footer__section li {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__section a {
  color: white;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__section a:hover {
  color: #ed85b0;
  text-decoration: none;
}

.footer__section i {
  margin-right: 8px;
  color: #ed85b0;
  width: 16px;
  text-align: center;
}

/* Réseaux sociaux */
.footer__social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  justify-content: flex-start;
}

/* Centrer les réseaux sociaux en mode mobile */
@media screen and (max-width: 480px) {
  .footer__social-links {
    justify-content: center;
  }
  
  /* Centrer les listes ul en mode mobile */
  .footer__section ul {
    text-align: center;
  }
  
  .footer__section li {
    justify-content: center;
  }
  
  .contact__details ul {
    text-align: center;
  }
  
  .contact__details li {
    text-align: center;
  }
}

.footer__social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(237, 133, 176, 0.2);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.footer__social-links a:hover {
  background: #ed85b0;
  transform: translateY(-2px);
}

.footer__social-links i {
  font-size: 20px;
  color: white;
  margin: 0;
}

.footer__social-text {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
  font-style: italic;
}

/* Informations légales */
.footer__legal {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
  position: relative;
}

.footer__legal-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ed85b0;
  transition: width 0.25s ease;
}

.footer__legal-links a:hover {
  color: #ed85b0;
}

.footer__legal-links a:hover::after {
  width: 100%;
}

.footer__legal-links .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Copyright */
.footer__copyright {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer__copyright p {
  margin: 5px 0;
}

.footer__site-url {
  font-family: 'Courier New', monospace;
  color: #ed85b0 !important;
  font-weight: bold;
}

/* *************** PAGE CONTACT ***************** */

.contact__form {
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 40px 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(100, 181, 213, 0.3);
}

.contact__form h2 {
  text-align: center;
  color: #ed85b0;
  margin-bottom: 30px;
}

.section__contact {
  margin: 60px 0;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #F0F8FF;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section__contact h2 {
  color: #ed85b0;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.section__cabinets {
  margin: 60px 0;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.section__cabinets h2 {
  color: #ed85b0;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.section__contact .text__presentation,
.section__cabinets .text__presentation {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #333;
}

.form__field small {
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
  font-style: italic;
}

.form__input::placeholder,
textarea::placeholder {
  color: #999;
  opacity: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form__field {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.form__field label{
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form__input {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.25s ease;
  background-color: #f9f9f9;
}

.form__input:focus {
  outline: none;
  border-color: #ed85b0;
  background-color: white;
}

textarea {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.25s ease;
  background-color: #f9f9f9;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

textarea:focus{
  outline: none;
  border-color: #ed85b0;
  background-color: white;
}

.form__submit {
  background: linear-gradient(135deg, #ed85b0, #eaae90);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(237, 133, 176, 0.3);
  align-self: center;
  margin: 0 auto;
  display: block;
}

.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 133, 176, 0.4);
}

/* Masquer les flèches des inputs number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* *************** LAYOUT ***************** */

.layout__two-columns{
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__about{
  background-color: white;
  margin: 40px 0;
}

.section__content{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #F0F8FF;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section__content h3{
  color: #64b5d5;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.section__about h3{
  color: #64b5d5;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.about__content {
  max-width: 1200px;
  margin: 0 auto;
}

.about__content .image__profile {
  float: left;
  margin: 0 30px 20px 0;
  width: 550px;
  height: 330px;
  object-fit: cover;
}

@media screen and (max-width: 760px) {
  .about__content .image__profile {
    float: none;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
  }
}

.section__approach {
  padding: 40px 20px;
  background: #F0F8FF;
  margin: 40px 0;
}

.section__approach h2 {
  text-align: center;
  color: #ed85b0;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.approach__text {
  flex: 1;
  padding-right: 40px;
}

.approach__image {
  flex: 1;
  text-align: center;
}

.image__approach {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section__benefits {
  background-color: white;
  margin: 40px 0;
}

.section__benefits h2 {
  text-align: center;
  color: #ed85b0;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit__card {
  background: #F0F8FF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

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

.benefit__card h3 {
  color: #ed85b0;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.benefit__card p {
  color: #666;
  line-height: 1.6;
  font-size: 1.2rem;
}

.section__content h2{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

/* Alternance des couleurs pour les H2 de la page index */
.section__about h2 {
  color: var(--color-orange); /* Orange - 1er H2 */
}

.section__approach h2 {
  color: #64b5d5; /* Bleu - 2ème H2 */
}

.section__benefits h2 {
  color: #f0ca0c; /* Jaune - 3ème H2 */
}

.cabinets__section h2 {
  color: #ed85b0; /* Rose - 4ème H2 */
}

/* Règles pour les autres sections qui n'ont pas de H2 sur la page index */
.section__services h2 {
  color: #64b5d5; /* Bleu pour les services */
}

.section__contact h2 {
  color: #f0ca0c; /* Jaune pour le contact */
}

/* Tous les H4 en bleu */
h4 {
  color: #64b5d5;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.section__about div{
  display: flex;
  align-items: center;
}

.section__about h2{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.image__presentation{
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image__profile{
  width: 500px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text__presentation{
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin: 20px 0;
}

.section__services{
  padding: 60px 20px;
  background: #F0F8FF;
  margin: 40px 0;
}

#equilibre {
  margin-top: 60px;
  scroll-margin-top: 160px;
  /* background-color: white; */
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 60px auto 40px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

#equilibre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-purple);
}

#services {
  scroll-margin-top: 160px;
}

.services__arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  color: var(--color-purple);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
  background: rgba(218, 112, 214, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(218, 112, 214, 0.3);
}

.services__arrow:hover {
  color: var(--color-purple);
  transform: translateY(2px);
  background: rgba(218, 112, 214, 0.2);
  border-color: rgba(218, 112, 214, 0.5);
}

.services__arrow svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Centrer la flèche en mode mobile */
@media screen and (max-width: 768px) {
  .services__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0 auto;
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: 50%;
  }
}

/* ===== NOUVELLE SECTION SERVICES INTRO - VERSION 1 ===== */
.services__intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  /* background: linear-gradient(135deg, rgba(237, 133, 176, 0.02), rgba(248, 165, 196, 0.02)); */
  border-radius: 15px;
  position: relative;
}

.services__intro-content {
  animation: fadeInLeft 1s ease-out;
  position: relative;
}

.services__intro-content .text__presentation {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(237, 133, 176, 0.1);
  border: 1px solid rgba(237, 133, 176, 0.1);
}

.services__intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.services__intro-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-purple);
  border-radius: 2px;
}

.services__intro-visual {
  animation: fadeInRight 1s ease-out 0.3s both;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Responsive pour la section services intro */
@media screen and (max-width: 1080px) {
  #equilibre {
    margin: 40px 20px;
  }
  
  .services__intro {
    padding: 40px 20px;
    text-align: center;
  }
  
  .services__intro-title {
    text-align: center;
    font-size: 2.2rem;
  }
  
  .services__intro-content .text__presentation {
    font-size: 1rem;
    padding: 15px;
  }
  
}

@media screen and (max-width: 760px) {
  #equilibre {
    margin: 30px 15px;
  }
  
  .services__intro {
    padding: 30px 15px;
  }
  
  .services__intro-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .services__intro-content .text__presentation {
    font-size: 0.95rem;
    padding: 12px;
    line-height: 1.6;
  }
  
}

@media screen and (max-width: 480px) {
  #equilibre {
    margin: 20px 10px;
  }
  
  .services__intro {
    padding: 25px 10px;
  }
  
  .services__intro-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .services__intro-content .text__presentation {
    font-size: 0.9rem;
    padding: 10px;
    line-height: 1.5;
  }
}




.section__services h2{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services__grid div{
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.services__grid div:hover {
  transform: translateY(-5px);
}

.services__grid div h3{
  color: #ed85b0;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.services__grid img{
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.services__grid p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.service-card__sophrology h3 {
  color: #ed85b0;
}

.service-card__sophrology button{
  background: linear-gradient(135deg, #ed85b0, #eaae90);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(237, 133, 176, 0.3);
  text-decoration: none;
  display: inline-block;
}

.service-card__sophrology button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 133, 176, 0.4);
}

.services__grid .service-card__kinesiology h3 {
  color: #f0ca0c;
}

.service-card__kinesiology button{
  background: linear-gradient(135deg, #f0ca0c, #f4d03f);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(240, 202, 12, 0.3);
  text-decoration: none;
  display: inline-block;
}

.service-card__kinesiology button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 202, 12, 0.4);
}



.map__container{
  flex: 1;
  margin-right: 40px;
}

.map__container iframe{
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}

/* *************** MEDIA QUERIES ***************** */



@media screen and (max-width: 1560px) {
  .section__services{
    padding: 40px 20px;
  }
}

@media screen and (max-width: 1440px) {
  .section__content{
    padding: 30px 20px;
  }
  .section__services{
    padding: 40px 20px;
  }
  .section__about{
    padding: 40px 20px;
  }
}

@media screen and (max-width: 1080px) {
  /* Navigation mobile gérée par modern-nav.css */
  
  /* Layout adjustments */
  .layout__two-columns{
    display: block;
    text-align: left;
    padding: 0;
  }
  
  .section__content{
    max-width: 100%;
    padding: 30px 15px;
  }
  
  .image__presentation{
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .image__profile{
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }
  
  .contact__form{
    width: 90%;
    max-width: 600px;
  }
  
  .map__container{
    margin-right: 0;
    width: 100%;
  }
  
  .services__grid{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section__services{
    margin: 0;
  }
}

@media screen and (max-width: 760px) {
  /* Navigation gérée par modern-nav.css */
  
  /* Content adjustments */
  .image__presentation{
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  /* Centrer les listes ul sur tablette */
  .footer__section ul {
    text-align: center;
  }
  
  .footer__section li {
    justify-content: center;
  }
  
  .contact__details ul {
    text-align: center;
  }
  
  .contact__details li {
    text-align: center;
  }
  
  .section__content h2{
    font-size: 32px;
  }
  
  .section__about h2{
    font-size: 32px;
  }
  
  
  .services__grid div{
    min-height: auto;
    padding: 25px 20px;
  }
  
  .layout__two-columns {
    display: block;
    text-align: left;
    padding: 0;
  }
  
  .about__text {
    padding-right: 0;
    margin-bottom: 25px;
  }
  
  .about__image {
    width: 100%;
  }
  
  .approach__text {
    padding-right: 0;
    margin-bottom: 25px;
  }
  
  .approach__text .text__presentation {
    padding: 0;
  }
  
  .approach__image {
    width: 100%;
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }
  

  
  .section__about h2,
  .section__approach h2,
  .section__benefits h2 {
    font-size: 32px;
  }
  
  .section__about h3 {
    font-size: 22px;
  }
  
  .service-card__sophrology button{
    margin-top: 20px;
  }

  .service-card__kinesiology button{
    margin-top: 20px;
  }

  .image__profile{
    width: 100%;
    max-width: 350px;
  }
  
  /* Form adjustments */
  .form__group {
    flex-direction: column;
    gap: 15px;
  }
  
  .form__field {
    min-width: auto;
    width: 100%;
  }
  
  .form__field label {
    margin-bottom: 8px;
  }
  
  .map__container iframe{
    width: 100%;
    height: 350px;
  }
  
  /* Cabinets grid - déjà en une colonne par défaut */
  .cabinets__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 560px) {
  /* Navigation */
  /* Navigation gérée par modern-nav.css */
  
  /* Images */
  .image__presentation{
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .image__profile{
    width: 100%;
    max-width: 300px;
  }
  

  
  .map__container iframe{
    width: 100%;
    height: 250px;
  }
  
  .section__content h3{
    font-size: 20px;
  }
  
  .section__content h2{
    font-size: 28px;
    margin: 20px 10px 30px 10px;
  }
  
  /* Grids */
  .cabinets__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .cabinet__card {
    padding: 20px;
  }
  
  .cabinet__card h4 {
    font-size: 1.2rem;
  }
  
  .cabinet__card p {
    font-size: 0.9rem;
  }
  
  .map__container iframe {
    height: 250px;
  }
  
  .section__contact h2 {
    font-size: 1.8rem;
  }
  
  .section__contact h3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  /* Header */
  .header__logo-container {
    height: 120px;
  }
  
  .header__logo-container img {
    width: 120px;
    height: 120px;
  }
  
  /* Navigation gérée par modern-nav.css */
  
  /* Navigation mobile gérée par modern-nav.css */
  
  /* Images */
  .image__presentation{
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .image__profile{
    width: 100%;
    max-width: 280px;
  }
  
  .text__presentation{
    font-size: 16px;
    margin: 15px 0;
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    text-align: left;
  }
  
  .contact__info img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  

  
  .approach__text .text__presentation {
    padding: 0;
  }
  
  /* Footer */
  .footer__content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer__section {
    text-align: center;
  }
  
  .footer__section h3 {
    margin-bottom: 20px;
  }
  
  .footer__legal-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer__legal-links .separator {
    display: none;
  }
  
  /* Grids */
  .cabinets__grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 5px;
  }
  
  .cabinet__card {
    padding: 15px;
  }
  
  .cabinet__card h4 {
    font-size: 1.1rem;
  }
  

  
  .map__container iframe {
    height: 220px;
  }
  
  .section__contact h2 {
    font-size: 1.6rem;
  }
  
  .section__contact h3 {
    font-size: 1.2rem;
  }
  

  
  .section__about h2,
  .section__approach h2,
  .section__benefits h2 {
    font-size: 28px;
  }
  
  .section__about h3 {
    font-size: 18px;
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }
  
  
  .benefit__card h3 {
    font-size: 1.3rem;
  }
  

  
  /* Form */
  .contact__form {
    padding: 25px 15px;
  }
  
  .contact__info img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  
  .form__submit {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .image__presentation{
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .map__container iframe{
    width: 100%;
    height: 200px;
  }
  
  /* Navigation gérée par modern-nav.css */
  
  .section__content h2,
  .section__about h2,
  .section__approach h2,
  .section__benefits h2 {
    font-size: 32px;
  }
}

/* *************** SECTION CONTACT ***************** */

.section__contact {
  padding: 40px 20px;
  background: #F0F8FF;
}

.section__contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.section__contact h3 {
  text-align: center;
  color: #64b5d5;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.contact__info {
  text-align: center;
  margin-bottom: 40px;
}

.contact__info img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact__details ul {
  list-style: none;
  padding: 0;
}

.contact__details li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact__details a {
  color: #64b5d5;
  text-decoration: none;
}

.contact__details a:hover {
  text-decoration: underline;
}

.cabinets__section {
  margin-bottom: 40px;
}

.cabinets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 640px));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  justify-items: center;
}

.cabinet__card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 640px;
}

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

.cabinet__card h4 {
  color: #64b5d5;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}

.cabinet__card p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1rem;
}

.contact__action {
  text-align: center;
  margin-top: 30px;
}



.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ed85b0, #eaae90);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(237, 133, 176, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 133, 176, 0.4);
  color: white;
  text-decoration: none;
}

/* Styles pour le bouton de prise de rendez-vous flottant */
.rdv-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  background: transparent;
  border-radius: 15px;
  padding: 8px;
  box-shadow: none;
  transition: all 0.2s ease;
}

.rdv-button-container:hover {
  transform: translateY(-2px);
}

.rdv-button {
  background: linear-gradient(135deg, #ed85b0, #eaae90);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Klik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(237, 133, 176, 0.3);
}

.rdv-button:hover {
  background: linear-gradient(135deg, #d6749e, #d99d7e);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(237, 133, 176, 0.4);
  color: white;
  text-decoration: none;
}

.rdv-icon {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.rdv-button:hover .rdv-icon {
  transform: scale(1.1);
}

/* Responsive pour le bouton de rendez-vous */
@media screen and (max-width: 760px) {
  .rdv-button-container {
    bottom: 15px;
    right: 15px;
    padding: 6px;
  }
  
  .rdv-button {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .rdv-icon {
    height: 18px;
  }
}

@media screen and (max-width: 480px) {
  .rdv-button-container {
    bottom: 10px;
    right: 10px;
    padding: 5px;
  }
  
  .rdv-button {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .rdv-icon {
    height: 16px;
  }
}

/* ===== SECTION AVIS CLIENTS ===== */
.section__testimonials {
    padding: 80px 20px;
    background: #F0F8FF;
    text-align: center;
}

.section__testimonials h2 {
    margin-bottom: 20px;
    color: #64b5d5;
    font-size: 2.5rem;
    font-weight: 700;
}

.section__testimonials .text-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666666;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.testimonial__card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(100, 181, 213, 0.3);
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.testimonial__card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 50px;
    color: #64b5d5;
    opacity: 0.4;
    font-family: serif;
    z-index: 0;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(100, 181, 213, 0.4);
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial__stars .star {
    color: #ffd700;
    font-size: 20px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial__stars .star:nth-child(2) { animation-delay: 0.2s; }
.testimonial__stars .star:nth-child(3) { animation-delay: 0.4s; }
.testimonial__stars .star:nth-child(4) { animation-delay: 0.6s; }
.testimonial__stars .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.testimonial__text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.testimonial__author strong {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial__service {
    color: #64b5d5;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f0f8ff;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #64b5d5;
}

.testimonials__cta {
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    background: #64b5d5;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(100, 181, 213, 0.3);
}

.btn-secondary:hover {
    background: #64b5d5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 181, 213, 0.4);
}

/* Responsive pour les avis clients */
@media (max-width: 768px) {
    .section__testimonials {
        padding: 60px 15px;
    }
    
    .section__testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial__card {
        padding: 25px;
    }
    
    .testimonial__text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial__card {
        padding: 20px;
    }
    
    .testimonial__stars .star {
        font-size: 18px;
    }
    
    .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===== PAGE AVIS CLIENTS ===== */
.page__testimonials {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px; /* Ajout de marge pour éviter que le titre soit caché par la navigation */
}

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

.testimonials__header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #64b5d5; /* Changement de couleur en bleu pour correspondre aux autres titres */
    margin-bottom: 20px;
}

.testimonials__header .text__presentation {
    font-size: 1.2rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

/* Statistiques */
.testimonials__stats {
    margin-bottom: 60px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat__card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(100, 181, 213, 0.3);
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.stat__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 213, 0.4);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64b5d5;
    margin-bottom: 10px;
}

.stat__label {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 10px;
}

.stat__stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stat__stars .star {
    color: #ffd700;
    font-size: 16px;
}

/* Filtres */
.testimonials__filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter__btn {
    background: #F0F8FF;
    color: #333333;
    border: 2px solid #64b5d5;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.filter__btn:hover,
.filter__btn.active {
    background: #F0F8FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 181, 213, 0.3);
}

/* Liste des avis */
.testimonials__list {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial__item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(100, 181, 213, 0.3);
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial__item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.testimonial__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 213, 0.4);
}

.testimonial__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.testimonial__stars {
    display: flex;
    gap: 3px;
}

.testimonial__stars .star {
    color: #ffd700;
    font-size: 18px;
}

.testimonial__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.testimonial__service {
    color: #64b5d5;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f0f8ff;
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid #64b5d5;
}

.testimonial__date {
    color: #666666;
    font-size: 0.85rem;
}

.testimonial__text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    padding-right: 15px;
}

.testimonial__text::before {
    content: '"';
    font-size: 50px;
    color: #64b5d5;
    opacity: 0.4;
    position: absolute;
    bottom: -60px;
    right: 10px;
    font-family: serif;
    z-index: 0;
}

.testimonial__author {
    text-align: right;
}

.testimonial__author strong {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA */
.testimonials__cta {
    text-align: center;
}

.testimonials__cta .text__presentation {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333333;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive pour la page avis clients */
@media (max-width: 768px) {
    .page__testimonials {
        padding: 20px 15px;
        margin-top: 90px; /* Marge réduite sur mobile */
    }
    
    .testimonials__header h1 {
        font-size: 2.5rem;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat__card {
        padding: 20px 15px;
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .testimonials__filters {
        gap: 10px;
    }
    
    .filter__btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .testimonial__item {
        padding: 25px;
    }
    
    .testimonial__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial__meta {
        align-items: flex-start;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .testimonials__header h1 {
        font-size: 2rem;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial__item {
        padding: 20px;
    }
    
    .testimonial__text {
        font-size: 1rem;
    }
}

/* Styles spécifiques pour la page avis-clients */
.page__testimonials {
    background: #F0F8FF;
    padding: 60px 0;
    margin-top: 120px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: calc(100% - 40px);
}

.page__testimonials .testimonial__item {
    max-width: 800px;
    margin: 0 auto 30px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page__testimonials + .section__contact .sophrology__action-title {
    color: #64b5d5 !important;
}

.page__testimonials + .section__contact .btn-primary {
    background: #F0F8FF !important;
    box-shadow: 0 4px 15px rgba(100, 181, 213, 0.3) !important;
}

.page__testimonials + .section__contact .btn-primary:hover {
    background: #F0F8FF !important;
    box-shadow: 0 6px 20px rgba(100, 181, 213, 0.4) !important;
}

/* ===== PAGINATION ===== */
.pagination {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.pagination__info {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.pagination__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #64b5d5;
    background: transparent;
    color: #64b5d5;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination__btn:hover:not(:disabled) {
    background: #64b5d5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 181, 213, 0.3);
}

.pagination__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #e0e0e0;
    color: #666666;
}

.pagination__btn span {
    font-size: 1.1rem;
    font-weight: bold;
}

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

.pagination__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333333;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination__number:hover {
    border-color: #64b5d5;
    color: #64b5d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 181, 213, 0.2);
}

.pagination__number.active {
    background: #64b5d5;
    border-color: #64b5d5;
    color: white;
    box-shadow: 0 4px 12px rgba(100, 181, 213, 0.3);
}

.pagination__dots {
    color: #666666;
    font-weight: bold;
    padding: 0 0.5rem;
}

/* Animation pour les avis */
.testimonial__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial__item.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive pour la pagination */
@media (max-width: 768px) {
    .pagination__controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pagination__btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
    
    .pagination__numbers {
        order: -1;
    }
    
    .pagination__number {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.8rem;
    }
    
    /* Amélioration : centrer les numéros de page */
    .pagination__numbers {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Amélioration : optimiser l'espacement des boutons */
    .pagination__controls {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .pagination__numbers {
        gap: 0.25rem;
    }
    
    .pagination__number {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .pagination__btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Amélioration : réduire l'espacement vertical */
    .pagination__controls {
        gap: 1rem;
    }
    
    /* Amélioration : optimiser l'info de pagination */
    .pagination__info {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Nouvelle breakpoint pour très petits écrans */
@media (max-width: 360px) {
    .pagination__numbers {
        gap: 0.2rem;
    }
    
    .pagination__number {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.7rem;
    }
    
    .pagination__btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        max-width: 180px;
    }
    
    /* Amélioration : masquer les points de suspension sur très petits écrans */
    .pagination__dots {
        display: none;
    }
    
    /* Amélioration : limiter le nombre de pages visibles */
    .pagination__number:nth-child(n+8) {
        display: none;
    }
}

/* ===== AMÉLIORATION ACCESSIBILITÉ MOBILE ===== */
/* Tous les textes à 18px en mode mobile pour une meilleure lisibilité */

@media screen and (max-width: 768px), screen and (max-width: 480px) {
  /* Textes généraux - tous à 18px */
  p:not(.text__presentation):not(.services__grid p):not(.benefit__card p):not(.cabinet__card p):not(.testimonial__text):not(.testimonial__author):not(.stat__label) {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Listes */
  ul li:not(.footer__section li):not(.contact__details li) {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  ol li {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Liens dans le contenu principal */
  .section__content a:not(.btn-primary):not(.btn-secondary):not(.rdv-button):not(.service-card__sophrology button):not(.service-card__kinesiology button) {
    font-size: 18px !important;
  }

  /* Labels de formulaire */
  .form__field label {
    font-size: 18px !important;
  }

  /* Placeholders */
  .form__input::placeholder,
  textarea::placeholder {
    font-size: 18px !important;
  }

  /* Textes de formulaire */
  .form__input,
  textarea {
    font-size: 18px !important;
  }

  /* Petits textes d'aide */
  .form__field small {
    font-size: 18px !important;
  }

  /* Textes de présentation */
  .text__presentation {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Paragraphes des services */
  .services__grid p {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Paragraphes des bénéfices */
  .benefit__card p {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Paragraphes des cabinets */
  .cabinet__card p {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Textes des témoignages */
  .testimonial__text {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  /* Auteurs des témoignages */
  .testimonial__author {
    font-size: 18px !important;
  }

  /* Labels des statistiques */
  .stat__label {
    font-size: 18px !important;
  }
}

/* ===== STYLES POUR LA BULLE DES ÉMOTIONS ===== */
.section__certification {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.bulle-emotions__section {
  padding: 25px;
  background: #F0F8FF;
  border-radius: 15px;
  border-left: 4px solid #ed85b0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(237, 133, 176, 0.1);
}

.bulle-emotions__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bulle-emotions__logo {
  flex-shrink: 0;
}

.bulle-emotions__logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.bulle-emotions__logo a:hover {
  transform: scale(1.05);
}

.bulle-emotions__logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: white;
  padding: 12px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(237, 133, 176, 0.2);
}

.bulle-emotions__text {
  flex: 1;
  min-width: 200px;
}

.bulle-emotions__text p {
  margin: 0;
  font-size: 20px;
  color: #393b3f;
  line-height: 1.6;
}

.bulle-emotions__link {
  color: #ed85b0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bulle-emotions__link:hover {
  color: #eaae90;
  text-decoration: underline;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .section__certification {
    margin: 30px auto;
    padding: 0 15px;
  }
  
  .bulle-emotions__section {
    padding: 20px;
  }
  
  .bulle-emotions__content {
    flex-direction: column;
    gap: 15px;
  }
  
  .bulle-emotions__logo-img {
    width: 80px;
    height: 80px;
  }
  
  .bulle-emotions__text p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section__certification {
    margin: 25px auto;
    padding: 0 10px;
  }
  
  .bulle-emotions__section {
    padding: 15px;
  }
  
  .bulle-emotions__logo-img {
    width: 70px;
    height: 70px;
  }
  
  .bulle-emotions__text p {
    font-size: 17px;
  }
}

/* ===== PRÉVENTION DU SCROLL HORIZONTAL ===== */
/* Styles globaux pour empêcher le scroll horizontal sur tous les appareils */
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* S'assurer que tous les conteneurs respectent la largeur */
  .hero__intro-v2,
  .section__about,
  .section__approach,
  .section__benefits,
  .section__services,
  .section__contact,
  .section__testimonials,
  .cabinets__section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Ajuster les images et éléments visuels */
  .hero__image,
  .hero__image-frame,
  .hero__image-container {
    max-width: 100%;
    overflow: hidden;
  }

  /* S'assurer que les éléments décoratifs ne dépassent pas */
  .hero__decoration {
    right: 0;
    width: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 480px) {
  .hero__intro-v2 {
    padding: 60px 0;
  }

  /* S'assurer qu'aucun élément ne dépasse sur mobile */
  .hero__image-frame {
    width: 300px;
    height: 300px;
    max-width: 90vw;
  }

  .hero__image {
    max-width: 100%;
    height: auto;
  }
}
