/* ---------- Base ---------- */
:root {
  --green: #315f50;
  --green-soft: #eaf2ee;
  --rose: #b9657d;
  --rose-dark: #984e65;
  --ink: #1d2924;
  --muted: #68756f;
  --cream: #faf8f4;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}

h1, h2, h3, h4, h5,
.navbar-brand strong {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.min-vh-75 { min-height: 75vh; }

/* ---------- Navbar ---------- */
.navbar {
  backdrop-filter: blur(12px);
  --bs-navbar-padding-y: .35rem;
}

.navbar-brand {
  color: var(--ink);
  line-height: 1.05;
}

.navbar-brand small {
  color: var(--muted);
  font-size: .72rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #9fb8ae;
  border-radius: 50%;
  color: var(--green);
  font-size: 1.4rem;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}

.nav-link:hover { color: var(--rose); }

/* ---------- Hero ---------- */
.hero-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(185,101,125,.08), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbf8f6 100%);
}

.hero-section h1 {
  line-height: 1.06;
  letter-spacing: -.02em;
}

.hero-section h1 span { color: var(--rose-dark); }

.hero-image {
  min-height: 620px;
  border-radius: 0 0 0 100px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    url("assets/hero-bg.jpg") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(49,95,80,.15);
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
}

.phone {
  color: var(--rose-dark);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  --bs-btn-bg: var(--rose);
  --bs-btn-border-color: var(--rose);
  --bs-btn-hover-bg: var(--rose-dark);
  --bs-btn-hover-border-color: var(--rose-dark);
}

/* ---------- Sections ---------- */
.section-soft { background: var(--green-soft); }

.section-heading p {
  color: var(--muted);
  max-width: 620px;
  margin: .75rem auto 0;
}

/* ---------- Services ---------- */
.service-card {
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(49,95,80,.08);
  border-radius: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(35,78,64,.10);
}

.service-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.35rem;
  min-height: 3.2rem;
}

.service-card p {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 0;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-top: -44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  border: 4px solid white;
  position: relative;
}

/* ---------- Reasons ---------- */
.reason-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.reason-item > i {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.4rem;
}

.reason-item h4 {
  font-size: 1.15rem;
  margin-bottom: .35rem;
}

.reason-item p {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 0;
}

.audience {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: #f3e4e9;
  color: var(--rose-dark);
  font-weight: 700;
}

.consultation-img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

/* ---------- Info cards ---------- */
.info-card {
  background: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 10px 36px rgba(35,78,64,.08);
}

.info-card h3 {
  margin: .45rem 0 1rem;
}

.stars {
  color: #d9992c;
  letter-spacing: .15em;
}

.map-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ---------- CTA ---------- */
.cta-band {
  color: white;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
}

.cta-band p {
  opacity: .9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  background: #203c33;
  color: rgba(255,255,255,.82);
}

.footer h4, .footer h5 { color: #fff; }

.footer a {
  color: white;
  text-decoration: none;
}

.footer hr { border-color: rgba(255,255,255,.18); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-image {
    min-height: 430px;
    border-radius: 40px;
    margin-bottom: 3rem;
  }

  .service-card h3 { min-height: 0; }

  .consultation-img { min-height: 360px; }
}

@media (max-width: 575.98px) {
  .hero-section h1 { font-size: 2.65rem; }
  .hero-image { min-height: 320px; }
  .info-card { padding: 1.35rem; }
}

/* =========================================
   AVIS CLIENTS
========================================= */

.reviews-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(185, 101, 125, 0.08),
      transparent 30%
    ),
    #faf8f4;
}

.reviews-intro {
  max-width: 600px;
  color: var(--muted);
}


/* Carte */

.review-card {
  position: relative;
  overflow: hidden;

  padding: 2rem;

  background: #fff;
  border: 1px solid rgba(49, 95, 80, 0.08);
  border-radius: 26px;

  box-shadow: 0 10px 35px rgba(49, 95, 80, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.review-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 20px 45px rgba(49, 95, 80, 0.13);
}


/* Étoiles */

.review-stars {
  display: flex;
  gap: 5px;

  margin-bottom: 1.5rem;

  color: #d99b32;
  font-size: 0.95rem;
}


/* Grande citation décorative */

.review-quote {
  position: absolute;

  top: 15px;
  right: 22px;

  color: rgba(185, 101, 125, 0.12);

  font-size: 4.5rem;
  line-height: 1;
}


/* Texte */

.review-text {
  position: relative;

  min-height: 145px;
  margin-bottom: 2rem;

  color: #59665f;

  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  line-height: 1.75;

  font-style: italic;
}


/* Auteur */

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;

  padding-top: 1.25rem;

  border-top: 1px solid #edf0ee;
}


.review-avatar {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--green-soft);
  color: var(--green);

  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
}


.review-author h3 {
  margin: 0 0 2px;

  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}


.review-author span {
  color: #8a958f;
  font-size: 0.8rem;
}


/* Bouton Google */

.btn-outline-review {
  padding: 0.8rem 1.6rem;

  color: var(--green);

  border: 1px solid var(--green);
  border-radius: 999px;

  font-weight: 600;

  transition: all 0.25s ease;
}


.btn-outline-review:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}


/* Mobile */

@media (max-width: 767.98px) {

  .review-card {
    padding: 1.5rem;
  }

  .review-text {
    min-height: auto;
  }

}
