/* 🌟 GENERAL STYLES */
html,
body {
  background-image: url("fond_ecran_canva.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 0;
  color: rgb(36, 61, 61);
  width: 100%;
  overflow-y: auto; /* ou simplement la supprimer */
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(84, 156, 117, 0.95);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px; /* Réduction du padding */
  height: 120px; /* Réduction de la hauteur */
  position: fixed;
  top: 0; /* Reste collé en haut de la page */
  /* Assure qu'il est au-dessus du reste */
  z-index: 2000;
  border-bottom: 5px solid #a7dabe; /* Bordure fine et élégante */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ajoute une ombre discrète */
}

/* Ajustement du logo */
.logo img {
  height: 130px;
  max-width: 130px;
  display: block;
}

/* Menu burger pour mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* 🌟 NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav ul li {
  font-size: 18px;
  font-weight: bold;
}

nav a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease-in-out;
}

nav a:hover {
  background: #31745a;
}

/* Bouton "Prendre RDV" */
.ctaButton {
  font-size: 18px;
  display: inline-block;
  background: #69a484;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
  width: fit-content;
  transition: all 0.3s ease-in-out;
  align-items: center;
}

.service-card:hover {
  background: #abe4d7;
}

.ctaButton:hover {
  background: #31745a;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header {
    height: 100px;
    padding: 0px 40px;
  }

  .ctaButton {
    display: flex;
    align-items: center;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(84, 156, 117, 0.9);
    position: absolute;
    top: 80px;
    left: 0;
    text-align: center;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    padding: 20px 0;
  }

  .show-menu {
    display: flex;
  }

  .logo img {
    height: 90px;
    max-width: 130px;
    display: block;
  }
}

/* 🌟 HERO SECTION (Bannière) */
.hero {
  /* position: relative; */
  width: auto;
  background-size: cover;
  background-position: center;
  text-align: center;
  min-height: 80vh; /* Garantit une hauteur suffisante */
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
}

/* Ajustement des marges et de la taille de l'image */
.hero img.hero-image {
  width: 100%;
  height: 90%;
  object-fit: cover; /* Remplit tout en gardant le ratio */
  position: absolute; /* Derrière le texte */
  top: 0;
  left: 0;
  z-index: 1; /* Derrière le texte */
  margin-bottom: -20px;
}

/* Texte en superposition */
.hero-text {
  position: absolute;
  color: white;
  text-align: justify;
  hyphens: auto;
  padding: 20px;
  z-index: 2;
  width: 80%;
  max-width: 80%; /* Limite la largeur maximale du texte */
  /* margin-top: 60px; */
}

.hero h1 {
  font-size: 30px;
  color: #e5fff8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 22px;
  font-style: bold;
  /* color: #e5fff8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
}

.intro {
  margin-top: 60px;
  text-align: justify;
  /* padding: 20px 10px 40px 10px; */
  width: 100%;
  color: #3c6c5f;
  font-size: 18px;
  line-height: 1.6;
  align-items: center;
  hyphens: auto;
}

/* Animation de glissement vers le bas */
.slide-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;
  align-items: center;
}

.slide-down.visible {
  opacity: 1;
  transform: translateY(0);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero img.hero-image {
    height: 60%;
    width: 100%;
  }

  .hero {
    margin-top: 250px;
    min-height: 0;
  }

  .intro {
    margin-top: 90px;
    text-align: justify;
    /* padding: 20px 10px 40px 10px; */
    width: 100%;
    color: #3c6c5f;
    font-size: 18px;
    line-height: 1.6;
    align-items: center;
    hyphens: auto;
  }
}

/* 🌟 SECTION PRÉSENTATION (fond clair avec séparation) */
.presentation {
  text-align: justify;
  /* padding: 20px 10px 40px 10px; */
  width: 75%;
  color: #3c6c5f;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 80px;
}

/* Effet de glissement du haut vers le bas */
.slide-top {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.presentation h2 {
  font-size: 30px;
  color: #3c6c5f;
  margin-bottom: 20px;
  text-align: center;
}

/* .presentation-para {
  font-size: 18px;
  color: #333;
  margin: 0 auto;
  line-height: 1.6;
} */

/* 🌟 PRÉSENTATION AVEC IMAGE & TEXTE (Fond pastel) */
.presentation-boxed {
  font-size: 18px;
  display: flex;
  align-items: flex-start; /* Aligner le texte en haut */
  justify-content: center;
  margin: 20px 10%;
}

.presentation-text {
  margin-bottom: 0;
}

.presentation-p {
  padding-bottom: 20px;
}

.presentation-img {
  width: 40%; /* Largeur ajustée */
  max-width: 400px; /* Taille maximale */
  margin-top: 50px;
  margin-right: -50px;
}

/* Effet de glissement de la gauche vers le centre */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.presentation-img img {
  /* margin-top: 30px; */
  width: 65%;
  height: 300px; /* Réduit la hauteur */
  object-fit: cover; /* Coupe l'image pour qu'elle ne soit pas déformée */
  border-radius: 15px; /* Coins arrondis */
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); /* Ombre douce */
}

.presentation-text {
  display: block !important;
  overflow: visible !important;
  height: auto !important;
  font-size: 18px;
  text-align: justify;
  color: #3c6c5f;
  width: 80%;
  min-height: 200px; /* ✅ S'assure qu'il y a assez d'espace */
}

/* Effet de glissement de la droite vers le centre */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.presentation-text h2 {
  font-size: 30px;
  color: #3c6c5f;
  text-align: center;
  margin-top: 0;
}

.presentation-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #3c6c5f;
  margin: auto;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .presentation {
    text-align: justify;
    /* padding: 20px 10px 40px 10px; */
    width: auto;
    color: #3c6c5f;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    align-items: center;
    margin-top: 60px;
    hyphens: auto;
  }

  .presentation-boxed {
    flex-direction: column;
    text-align: center;
    align-items: center;
    /* padding: 0px 30px; */
    margin: 0;
  }

  .presentation-img {
    width: 60%;
    /* height: 90%; */
    max-width: 400px;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    margin-right: 0;
  }

  .presentation-img img {
    height: 200px;
    /* width: 100%; */
    margin-top: 0;
  }

  .presentation-text p {
    opacity: 1 !important; /* ✅ Force l'affichage */
    transform: none !important; /* ✅ Supprime l'animation si elle bloque */
    width: 100%;
  }

  .presentation-text {
    width: 100%;
  }
}

/* 🌟 SERVICES (Fond coloré avec séparateur courbé) */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 30px;
  gap: 60px;
  position: relative;
  /* font-size: 18px; */
  background-size: cover;
  border-radius: 15px;
  margin: 20px 20px 60px;
  /* box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); */
  /* flex-direction: column;
  align-items: center; */
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card a {
  text-decoration: none; /* supprime le soulignement*/
  color: #3c6c5f;
  display: block;
  height: 100%;
  width: 100%;
}
.service-card a p {
  font-size: 18px;
  margin: 12px 10px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.6);
}

.service-card a h3,
.service-card a p {
  text-decoration: none; /* Assure que le texte ne soit pas souligné */
}

@media screen and (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
    /* margin: 0px 0px 20px; */
    padding: 0;
  }

  .service-card {
    width: 90%; /* Prend toute la largeur sur mobile */
  }
}

/* 🌟 FOOTER (Fond vert foncé avec texture douce) */
footer {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Assure que toutes les colonnes ont la même hauteur */
  background-color: rgba(84, 156, 117, 0.9);
  color: white;
  flex-wrap: wrap; /* Permet aux colonnes de s'ajuster automatiquement */
  position: relative;
  /* margin-top: 50px; */
  border-top: 5px solid #a7dabe; /* Bordure fine et élégante */
}

.footer-left {
  flex: 1;
  text-align: center;
}

.footer-left p {
  margin-top: -25px;
  margin-left: 20px;
  margin-bottom: 30px;
  max-width: 100%;
  padding-bottom: 20px;
}

.footer-center,
.footer-right {
  flex: 1;
  text-align: center;
  padding-top: 40px;
}

.footer-center ul {
  list-style: none; /* ✅ Supprime les puces */
  padding-left: 0; /* ✅ Supprime l'indentation de la liste */
}

.footer h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.footer-logo img {
  max-width: 130px;
  height: 130px;
  display: block;
}

.footer p,
.footer a {
  font-size: 1em;
  line-height: 1.6;
  color: white;
  text-decoration: none;
}

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

@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: auto;
  }

  .footer-left p {
    margin-top: -25px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .footer-right p {
    line-height: 1.6;
    margin: 0px;
  }

  .footer h3 {
    line-height: 1.6;
    margin: 0px;
    padding-top: 10px;
  }

  .footer-center {
    padding: 0px;
    flex: 1;
    text-align: center;
    margin: 18px 18px 0px 18px;
  }

  .footer-right {
    margin-top: 18px;
    margin-bottom: 40px;
    padding: 0px;
  }
}

.footer-center ul {
  padding: 0px;
  margin: 0px 18px 0px 18px;
}

/* Section "À propos" pour mobile et desktop */
.about-section {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: justify;
  text-justify: inter-word;
  /* padding: 60px 10%; */
  margin-top: 90px;
  /* padding: 40px 80px; */
  background: rgba(255, 255, 255, 0.4);
}
/* Conteneur en 2 colonnes */
.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  /* gap: 30px; */
  /* max-width: 1200px; */
  width: 100%;
  font-size: 18px;
}

/* Animation de glissement depuis la gauche */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animation de glissement depuis la droite */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Colonne Texte */
.about-text {
  width: 100%;
  text-align: justify;
  color: #3c6c5f;
  padding-left: 20px;
  line-height: 1.6;
}

.about-text h2 {
  margin: 30px;
  font-size: 30px;
}

.about-image {
  width: 50%;
  max-width: 350px;
  border-radius: 25px;
  align-items: flex-start;
}

.about-image img {
  width: 80%;
  border-radius: 25px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
    width: 100%;
  }

  .about-section {
    /* padding: 60px 10%; */
    margin-top: 100px;
    /* padding: 0px 50px 0px 10px; */
    width: 100%;
  }

  .about-text h2 {
    padding: 0px;
    margin-bottom: 30px;
    margin-top: 20px;
    margin-right: 0;
    margin-left: 0;
  }

  .about-text p {
    /* margin-bottom: 40px; */
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    margin: 0;
    margin-bottom: 16px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-text {
    padding-left: 0;
  }

  .about-image {
    width: 90%;
    max-width: 350px;
    border-radius: 25px;
    align-items: flex-start;
  }

  .about-text p:first-of-type::after {
    content: "";
    display: block;
    width: 200px;
    background-image: url("photo_sandrine.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    margin: 30px auto;
    /* max-width: 250px; */
    height: 280px;
    /* ✅ Arrondi fonctionnel avec clip-path */
    clip-path: inset(0% round 20px);
    overflow: hidden;
  }

  .slide-right.visible {
    display: none;
  }
}

/* 🌟 Forcer le `main` à prendre toute la place disponible */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  /* margin: auto; */
  padding: 20px 10% 10px;
}

@media screen and (max-width: 768px) {
  main {
    padding: 20px 20px 10px;
  }
}

/* Section Consultation Conteneur principal en deux colonnes */
.consultations-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* Aligner le texte et les images en haut */
  justify-content: space-between;
  gap: 50px; /* Espacement entre les colonnes */
  /* padding: 60px 10% 5%; */
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1200px;
  margin: 60px 0px 0px; /* Centrer avec une marge supérieure */
  /* background: transparent; Supprime le fond blanc */
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  align-items: stretch; /* Assure que l'image et le texte occupent toute la hauteur disponible */
  opacity: 0; /* Commence invisible */
  animation-duration: 2.3s;
  animation-fill-mode: forwards; /* Garde l'état final de l'animation */
  animation-timing-function: ease-out;
}

/* Colonne Texte */
.consultations-text {
  flex: 1;
  font-size: 18px;
  color: #333;
  text-align: justify;
  text-justify: inter-word;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  /* gap: 30px; */
}

.tarif-title {
  margin-bottom: 5px; /* ✅ Réduit l’espace sous le titre */
}

.tarif-list {
  margin-top: 0; /* ✅ Supprime l’espace au-dessus de la liste */
  text-align: start;
}

/* Colonne Image */
.consultations-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styles pour les images */
.consultations-image img {
  width: 100%;
  max-width: 500px;
  max-height: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* ✅ Inversion des colonnes pour les sections avec la classe .reverse */
.consultations-container.reverse {
  flex-direction: row-reverse;
}

.smaller-image {
  width: 60%; /* Réduit uniquement les images ciblées */
  max-width: 300px;
  max-height: 300px;
  margin-top: 20px;
}

.replace-image {
  /* margin-top: 50px; */
  height: auto;
  max-height: 500px;
  object-fit: cover;
  align-items: stretch;
}

/* Rendre uniquement l'image avec la classe .brighter-image plus claire */
.brighter-image {
  opacity: 0.8; /* Réduit l'opacité pour adoucir les couleurs */
  transition: opacity 0.3s ease;
}

/* Animation Slide-In depuis la gauche */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animation Slide-In depuis la droite */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Appliquer l'animation à chaque section */
.consultations-container:nth-of-type(1) {
  animation-name: slideInLeft;
  /* Légère attente avant de commencer */
  animation-delay: 0.1s;
}

.consultations-container:nth-of-type(2) {
  animation-name: slideInRight;
  /* Début différé pour l'effet en cascade */
  animation-delay: 1s;
}

.consultations-container:nth-of-type(3) {
  animation-name: slideInLeft;
  animation-delay: 1.2s;
}

/* Responsive Design - Adaptation pour Mobile */
@media (max-width: 768px) {
  .consultations-container {
    flex-direction: column; /* Passe en mode colonne sur mobile */
    gap: 10px;
    /* padding: 40px 5%; */
    /* padding: auto; */
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .consultations-text {
    font-size: 18px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .consultations-text h2 {
    padding-left: 0;
    padding-right: 0;
  }

  .consultations-image {
    justify-content: center;
  }

  .smaller-image {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .replace-image {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .consultations-image img {
    width: 90%;
    max-width: 300px;
    height: 50%;
    max-height: 300px;
  }

  /* Annule l'inversion des colonnes sur mobile */
  .consultations-container.reverse {
    flex-direction: column;
  }
}

/* 🌟 GENERAL STYLES */
body {
  background-image: url("fond_ecran_canva.png");
  background-size: cover;
  background: rgba(255, 255, 255, 0.6); /* Fond blanc semi-transparent */
  background-position: center;
  background-attachment: fixed;
  font-family: "Playfair Display", serif;
  color: rgb(36, 61, 61);
  margin: 0;
  padding: 0;
}

/* 🌟 Structure générale */
.contact-page {
  max-width: 900px;
  margin: 40px auto 20px;
  /* padding: 40px; */
  text-align: center;
  font-family: "Georgia", serif;
  color: #444;
  padding-top: 120px; /* ✅ Ajuste l'espacement sous le header */
}

/* 🏷️ Titre principal */
.contact-title {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #3c6c5f;
}

h1,
h2 {
  color: #3c6c5f;
  font-weight: bold;
  text-align: center;
}

.contact-subtext {
  font-size: 18px;
  margin-bottom: 60px;
  color: #3c6c5f;
  line-height: 1.6;
}

/* 📌 Section principale */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px; /* ✅ Ajoute un espace entre les blocs */
}

/* 📞 Infos contact */
.contact-info {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.info-block {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: #3c6c5f;
}

.info-block h2 {
  font-size: 20px;
  color: #3c6c5f;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🏠 Conteneur principal du formulaire */
.contact-form {
  background: #f9f9f9;
  padding: 20px 20px 0 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px; /* ✅ Empêche que le formulaire devienne trop large */
  margin: 0 auto;
}

/* 🎯 Ajustement du placement */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; /* ❌ Empêche le passage en ligne suivante */
  max-width: 1000px;
  margin: 0 auto; /* ✅ Centre la section */
}

/* 📞 Colonne de gauche : Infos */
.contact-info {
  flex: 1;
  min-width: 300px;
  font-size: 18px;
}

/* ✅ Ajout d'une marge à droite pour équilibrer */
.contact-form {
  /* margin-right: 20px; */
  margin-left: auto;
  /* max-width: 100%; */
  padding-bottom: 20px;
}

/* 📩 Espacement des champs */
.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 300%;
}

/* ✅ Ajouter une marge en bas pour bien espacer les inputs */
input:not(:last-child),
textarea {
  margin-top: 5px;
  margin-bottom: 15px;
}

/* ✅ Bouton ajusté */
.contact-form button {
  font-size: 18px;
  background-color: #3c6c5f;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
  display: block; /* ✅ Permet d'utiliser margin auto */
  margin: 0 auto;
}

.contact-form button:hover {
  background-color: #2a4d3f;
}

/* 📍 Google Maps */
.map-section {
  margin-top: 80px;
  color: #3c6c5f;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

/* 🌍 📱 Responsive Design - Version mobile */
@media (max-width: 768px) {
  .contact-page {
    margin-top: 0px;
  }

  .contact-title {
    font-size: 26px;
    padding-top: 20px;
  }

  .contact-subtext {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .contact-section {
    flex-direction: column; /* ✅ Passage en colonne sur mobile */
    align-items: center;
    text-align: center;
  }

  .contact-info {
    text-align: center; /* ✅ Centrage du texte */
    font-size: 16px;
    /* padding: 0;
  }

  .info-block {
    /* padding: 15px; */
    font-size: 16px;
    width: 100%;
    padding-top: 20px;
  }

  .contact-form {
    margin-left: auto;
    max-width: 100%;
    padding-bottom: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    /* padding: 10px; */
  }

  .contact-form button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .map-section {
    margin-top: 40px;
  }

  .map-section h2 {
    font-size: 26px;
  }

  .map-container {
    width: 100%;
    height: 250px; /* ✅ Taille réduite pour mobile */
  }
}