/* ==========================================================================
   VARIABLES & REINITIALISATION
   ========================================================================== */
:root {
  /* Palette Grain de Saveurs */
  --green-dark: #55624a;
  --green-light: #a7b18d;
  --cream: #e8dcc6;
  --terracotta: #c77c5b;
  --brown: #5a4635;
  --bg-color: #fafaf8;
  --white: #ffffff;

  /* Typographie */
  --font-title: "Cormorant Garamond", serif;
  --font-text: "Poppins", sans-serif;
  --font-accent: "Parisienne", cursive;

  /* Espacements et ombres */
  --shadow: 0 10px 30px rgba(85, 98, 74, 0.08);
  --shadow-hover: 0 15px 40px rgba(85, 98, 74, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--brown);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHIE & ELEMENTS DE BASE
   ========================================================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 800px;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm {
  width: 18px;
  height: 18px;
}
.icon--lg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}
.icon--star {
  fill: #e5c07b;
  stroke: #e5c07b;
}

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background-color: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
}

.btn--primary:hover {
  background-color: var(--brown);
  border-color: var(--brown);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background-color: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.btn--outline:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

/* ==========================================================================
   EN-TÊTES (TOPBAR & HEADER)
   ========================================================================== */
.topbar {
  background-color: var(--green-dark);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.topbar__item:hover {
  color: var(--white);
}

.header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* --- LOGO ROND DANS LE HEADER --- */
.header__logo img {
  border-radius: 50%; /* Rend l'image ronde */
  object-fit: cover; /* Assure que l'image remplit le cercle sans se déformer */
  overflow: hidden; /* Masque tout ce qui dépasse du cercle */
  background-color: var(--white); /* Fallback si le PNG est transparent */
  border: 2px solid var(--cream); /* Petit contour pour bien définir le cercle */
}

.header__logo-text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: 700;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown);
  transition: color 0.3s;
}

.nav__link:hover {
  color: var(--terracotta);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--green-dark);
  margin: 6px 0;
  transition: 0.4s;
}

/* ==========================================================================
   SECTIONS & SECTIONS COMMUNES
   ========================================================================== */
.section {
  padding: 100px 0;
}

.section--alt {
  background-color: var(--white);
}

.section__eyebrow {
  display: block;
  font-family: var(--font-accent);
  color: var(--terracotta);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: -10px;
}

.section__eyebrow--light {
  color: var(--cream);
}

.section__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.section__title em {
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   HERO ACCUEIL
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 0 150px;
  background: linear-gradient(to bottom, var(--white), var(--bg-color));
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

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

.hero__tagline {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
}

.hero__text {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hero__signature {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--green-light);
}

.hero__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__blob {
  width: 400px;
  height: 500px;
  background-color: var(--cream);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brown);
  box-shadow: var(--shadow);
  overflow: hidden;
  /* Optionnel: animation du blob */
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.hero__badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
  color: var(--green-dark);
  font-weight: 600;
}

.hero__decor {
  position: absolute;
  width: 200px;
  height: 400px;
  stroke: var(--cream);
  opacity: 0.6;
  z-index: 1;
}

.hero__decor--left {
  top: 10%;
  left: -50px;
}
.hero__decor--right {
  bottom: 10%;
  right: -50px;
  transform: scaleX(-1);
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  fill: var(--white); /* Raccord avec la section suivante */
}

/* ==========================================================================
   AVANTAGES
   ========================================================================== */
.avantages__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.avantage-card {
  text-align: center;
  flex: 1;
  min-width: 250px;
  padding: 30px;
}

.avantage-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--cream);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.avantage-card:hover .avantage-card__icon {
  transform: scale(1.1);
  background-color: var(--green-light);
  color: var(--white);
}

/* ==========================================================================
   ETAPES (DEROULE)
   ========================================================================== */
.steps__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  position: relative;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step__number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--terracotta);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
}

.step__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  border: 2px dashed var(--green-light);
}

/* ==========================================================================
   CREDIT IMPOT
   ========================================================================== */
.credit {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 80px 0;
}

.credit__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.credit__seal {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.credit__seal-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid var(--terracotta);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
  border-top-color: transparent;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.credit__seal-content {
  background-color: var(--terracotta);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(199, 124, 91, 0.4);
}

.credit__number {
  font-size: 5rem;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1;
}

.credit__percent {
  font-size: 3rem;
  font-family: var(--font-title);
}

.credit__label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 5px;
}

.credit__details {
  max-width: 500px;
}

.credit__details h2 {
  color: var(--cream);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.credit__example {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: var(--radius);
  margin: 30px 0 15px;
}

.credit__example-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.credit__example-row--total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.3rem;
}

.credit__disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
}

/* ==========================================================================
   FORMULES
   ========================================================================== */
.formules__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.formule-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  width: 100%;
  max-width: 350px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.formule-card:hover {
  transform: translateY(-10px);
}

.formule-card--featured {
  border: 2px solid var(--terracotta);
  transform: scale(1.05);
}

.formule-card--featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.formule-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--terracotta);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.formule-card__icon {
  margin: 0 auto 20px;
  color: var(--terracotta);
}

.formule-card h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.formule-card__desc {
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.formule-card__list {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.formule-card__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.formule-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: bold;
}

.formule-card__price {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--cream);
}

.formule-card__price strong {
  font-size: 2rem;
  color: var(--green-dark);
  font-family: var(--font-title);
}

/* ==========================================================================
   TEMOIGNAGES
   ========================================================================== */
.temoignages__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 350px;
}

.testimonial-card__stars {
  margin-bottom: 15px;
}

.testimonial-card__quote {
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--green-dark);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item {
  border-bottom: 1px solid var(--cream);
  margin-bottom: 15px;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--green-dark);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question .icon {
  transition: transform 0.3s;
  color: var(--terracotta);
}

.faq-item__question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding-bottom: 25px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.section__intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.contact__methods {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.contact-method:hover {
  transform: translateX(10px);
}

.contact-method .icon {
  color: var(--terracotta);
  width: 32px;
  height: 32px;
}

.contact-method div {
  display: flex;
  flex-direction: column;
}

.contact-method strong {
  color: var(--green-dark);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.contact__map {
  flex: 1;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  flex: 2;
  min-width: 250px;
}

/* --- BADGE RONDU DANS LE FOOTER --- */
.footer__logo-badge {
  background-color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%; /* Badge rond */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden; /* Assure que l'image à l'intérieur ne dépasse pas si border-radius appliqué sur img */
}

/* --- LOGO ROND DANS LE FOOTER --- */
.footer__logo-badge img {
  width: 100%; /* Force l'image à prendre toute la largeur du rond */
  height: 100%; /* Force l'image à prendre toute la hauteur du rond */
  object-fit: cover; /* Garde les proportions de l'image pour qu'elle ne soit pas déformée */
  border-radius: 50%; /* S'assure que les bords de l'image sont bien ronds */
}

.footer__quote {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--cream);
}

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

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col p,
.footer__col a {
  margin-bottom: 10px;
  color: var(--cream);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--terracotta);
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 220, 198, 0.2);
  font-size: 0.9rem;
  color: var(--cream);
}

/* ==========================================================================
   ANIMATIONS AU DEFILEMENT (REVEAL)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE (MOBILES ET TABLETTES)
   ========================================================================== */
@media screen and (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .formule-card--featured {
    transform: none;
  }
  .formule-card--featured:hover {
    transform: translateY(-10px);
  }
  .contact__grid {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .topbar__item--right {
    display: none;
  } /* Cache Instagram sur topbar mobile */

  /* Menu Burger Mobile */
  .burger {
    display: block;
  }
  .nav__cta {
    display: none;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease-in-out;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: 40px;
  }
  .nav__link {
    font-size: 1.5rem;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.8rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .credit__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .section__title {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   BOUTON WHATSAPP FLOTTANT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Vert officiel de WhatsApp */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* On le rend un peu plus petit sur mobile */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

/* ==========================================================================
   SECTION À PROPOS
   ========================================================================== */
.about {
  padding: 80px 0;
  background-color: #fdfbf7; /* Ton blanc cassé (Cream) */
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about__text {
  flex: 1;
}

.about__text h2 {
  color: #55624a; /* Ton vert foncé */
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.about__image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px; /* Bords arrondis */
  border: 5px solid #e8dcc6; /* Ton beige */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   GALERIE CARROUSEL
   ========================================================================== */
.gallery {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.gallery h2 {
  color: #55624a;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden; /* Cache les photos qui dépassent */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Animation fluide */
}

.carousel-slide {
  min-width: 100%; /* Chaque slide prend 100% de la place */
}

.carousel-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover; /* Recadre joliment sans déformer */
  display: block;
}

/* Boutons Précédent / Suivant */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(85, 98, 74, 0.8); /* Vert semi-transparent */
  color: white;
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: #c77c5b; /* Terracotta au survol */
}

.prev-btn {
  left: 15px;
}
.next-btn {
  right: 15px;
}

/* Responsive (Téléphones) */
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column-reverse; /* Met la photo au-dessus du texte sur mobile */
    text-align: center;
  }
  .carousel-slide img {
    height: 300px; /* Plus petit sur mobile */
  }
}

/* ==========================================================================
   FORMULAIRE DE CONTACT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* 1 part pour les infos, 1.5 pour le formulaire */
  gap: 60px;
  align-items: start;
}

.contact__form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  color: #55624a; /* Vert foncé */
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #5a4635; /* Marron */
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e8dcc6; /* Beige crème */
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a4635;
  background-color: #fdfbf7; /* Blanc cassé */
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

/* Changement de couleur quand on clique dans le champ */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a7b18d; /* Vert clair */
  box-shadow: 0 0 0 3px rgba(167, 177, 141, 0.2);
}

.form-success {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(167, 177, 141, 0.15);
  color: #55624a;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

/* Responsive pour les téléphones */
@media screen and (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr; /* On remet tout sur une seule colonne */
    gap: 40px;
  }
  .contact__form-wrapper {
    padding: 25px;
  }
}

/* ==========================================================================
   ZONE D'INTERVENTION
   ========================================================================== */
.zone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Moitié texte, moitié carte */
  gap: 60px;
  align-items: center;
  background-color: #fdfbf7; /* Ton blanc cassé */
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.zone__content h2 {
  color: #55624a; /* Vert foncé */
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.zone__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.zone__list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #5a4635; /* Marron */
  font-size: 1.1rem;
}

.zone__list li .icon {
  color: #c77c5b; /* Terracotta */
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.zone__disclaimer {
  font-style: italic;
  font-size: 0.95rem;
  color: #a7b18d; /* Vert clair */
  margin-top: 20px;
}

.zone__map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid #e8dcc6; /* Beige crème */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive pour les téléphones */
@media screen and (max-width: 768px) {
  .zone__grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 40px;
  }
  .zone__map-wrapper {
    height: 300px; /* Carte moins haute sur mobile */
  }
}
