/* ==========================================================================
   Johanna Dal Molin - Ostéopathie & Florathérapie
   Pixel-Perfect Stylesheet
   ========================================================================== */

/* --- CSS RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Color Palette */
  --color-primary: #6A8A5E;          /* Sage Brand Green */
  --color-primary-dark: #58754E;     /* Darker Sage */
  --color-primary-light: #7E9F71;    /* Lighter Sage */
  --color-card-osteo: #5AA37F;       /* Teal/Emerald Green for Ostéopathie */
  --color-card-osteo-hover: #4E9170;
  --color-card-bach: #D1C341;        /* Mustard Gold for Fleurs de Bach */
  --color-card-bach-hover: #BFAF32;
  --color-faq-bg: #6B7C4A;           /* Olive Green for FAQ & Footer */
  --color-faq-bg-dark: #5B6B3E;      /* Darker Olive */
  --color-dark: #18181A;             /* Primary text black */
  --color-dark-muted: #4A4D53;       /* Secondary text */
  --color-light: #FFFFFF;            /* White */
  --color-bg-light: #F8FAF6;         /* Light tint */
  --color-border: #D8DAE0;           /* Gray border */
  
  /* Typography */
  --font-heading: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-inter: 'Inter', sans-serif;

  /* Layout */
  --container-max-width: 1200px;
  --container-narrow-width: 900px;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-pill: 999px;
  --border-radius-card: 6px;
  --border-radius-sm: 4px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-smooth);
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 86px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.02);
}

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

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 34px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.2px;
  transition: var(--transition-smooth);
}

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

.nav-link.active {
  font-weight: 700;
  color: var(--color-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-dark);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn-rdv-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
  padding: 10px 28px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-inter);
  font-size: 15.5px;
  font-weight: 600;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-rdv-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  box-shadow: 0 4px 14px rgba(106, 138, 94, 0.3);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 480px;
  background: url('../images/hero-home.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 90px;
  color: var(--color-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(15, 20, 15, 0.48),
    rgba(15, 20, 15, 0.48)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  color: var(--color-light);
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero-notice {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 32px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: var(--color-dark);
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 500;
  padding: 12px 36px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
  background-color: #F0F2ED;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(20, 25, 20, 0.7);
  color: #FFFFFF;
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 500;
  padding: 12px 38px;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background-color: rgba(30, 38, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

/* ==========================================================================
   SERVICES SECTION (CARDS)
   ========================================================================== */
.services-section {
  padding: 80px 20px 70px;
  background-color: #FFFFFF;
  text-align: center;
}

.section-title-green {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.services-intro {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #555555;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card-header {
  padding: 34px 34px 36px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 290px;
}

.service-card-osteo .service-card-header {
  background-color: var(--color-card-osteo);
}

.service-card-bach .service-card-header {
  background-color: var(--color-card-bach);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.service-card-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: #FFFFFF;
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-card-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  padding: 8px 26px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-inter);
  font-size: 13.5px;
  font-weight: 500;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.service-card-osteo .btn-card-outline:hover {
  background-color: #FFFFFF;
  color: var(--color-card-osteo);
}

.service-card-bach .btn-card-outline:hover {
  background-color: #FFFFFF;
  color: var(--color-card-bach);
}

.service-card-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.03);
}

/* ==========================================================================
   PATIENTS SECTION (PROFILES)
   ========================================================================== */
.patients-section {
  padding: 60px 20px 80px;
  background-color: #FFFFFF;
  text-align: center;
}

.patients-container {
  max-width: 860px;
  margin: 0 auto;
}

.patients-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 10px;
}

.patient-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-avatar-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.patient-profile:hover .profile-avatar-img {
  transform: scale(1.05);
}

.btn-profile-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 7px 24px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-inter);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-profile-pill:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(106, 138, 94, 0.3);
}

.patients-middle-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: #444444;
  max-width: 780px;
  margin: 36px auto;
  text-align: center;
}

.patients-footer-note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #666666;
  max-width: 620px;
  margin: 36px auto 0;
  text-align: center;
}

/* ==========================================================================
   SESSION & TARIFS SECTION
   ========================================================================== */
.session-section {
  background-color: var(--color-primary);
  padding: 80px 20px 85px;
  color: #FFFFFF;
}

.session-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.session-image-wrap {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.session-content {
  color: #FFFFFF;
}

.session-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.session-text-main {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.session-price-highlight {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.session-text-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 6px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  background-color: var(--color-faq-bg);
  padding: 85px 20px 80px;
  color: #FFFFFF;
  text-align: center;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 38px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
  border: none;
  cursor: pointer;
}

.accordion-header:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: -2px;
}

.accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background-color: rgba(255, 255, 255, 0.15);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-collapse {
  max-height: 500px;
  transition: max-height 0.35s cubic-bezier(0.9, 0, 0.8, 0.2);
}

.accordion-content {
  padding: 0 20px 18px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--color-faq-bg);
  color: #FFFFFF;
  padding: 60px 20px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
}

.footer-col-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #FFFFFF;
  font-size: 13.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
  line-height: 1.5;
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer-info-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-doctolib-link {
  font-size: 13.5px;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 8px 0 16px;
  display: inline-block;
}

.footer-doctolib-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.btn-footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: var(--color-primary);
  padding: 8px 36px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #FFFFFF;
  transition: var(--transition-smooth);
}

.btn-footer-contact:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
}

.footer-link-rdv {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.footer-link-rdv:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

/* Tablets & Small Laptops (< 992px) */
@media screen and (max-width: 992px) {
  .header-container {
    padding: 14px 24px;
  }

  .logo-img {
    height: 72px;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 30px 24px;
    gap: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 18px;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .main-nav .header-cta {
    display: flex;
    margin-top: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .session-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .session-image-wrap {
    max-width: 460px;
    height: 340px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col-nav {
    grid-column: span 2;
  }
}

/* Mobile Screens (< 640px) */
@media screen and (max-width: 640px) {
  .hero-section {
    padding: 60px 16px 70px;
    min-height: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
  }

  .patients-row {
    flex-direction: column;
    gap: 32px;
  }

  .profile-avatar-wrap {
    width: 150px;
    height: 150px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col-contact,
  .footer-col-legal,
  .footer-col-nav {
    align-items: center;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: OSTÉOPATHIE
   ========================================================================== */

/* Hero variation for Osteopathie */
.hero-osteopathie {
  background: url('../images/hero-osteopathie.avif') center center / cover no-repeat;
}

/* Two-column text + image blocks */
.osteo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.osteo-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.osteo-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.osteo-subheading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.osteo-subheading-white {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 16px;
}

.osteo-image-wrap {
  width: 100%;
  height: 340px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.osteo-img:hover {
  transform: scale(1.02);
}

.principles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.principles-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-dark-muted);
}

.principles-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
}

/* History Section */
.history-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 80px 20px 85px;
}

.history-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.history-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.history-image-wrap {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* When to consult (Quand consulter) cards */
.when-consult-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.when-consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 40px auto 0;
}

.consult-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.consult-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.consult-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.consult-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.consult-card:hover .consult-card-img {
  transform: scale(1.03);
}

.consult-card-body {
  background-color: #6E4848; /* Warm dark burgundy/brown from original */
  color: #FFFFFF;
  padding: 24px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
  justify-content: center;
}

.consult-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}

.consult-card-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

/* Symptoms Section */
.symptoms-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 80px 20px 85px;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 40px auto 0;
}

.symptom-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

/* Demographics / Target Audience Section */
.target-section {
  padding: 80px 20px 90px;
  background-color: #FFFFFF;
}

.target-intro-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.target-subheading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin: 40px 0 30px;
  position: relative;
}

.target-subheading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 10px auto 0;
}

.demographic-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 48px;
}

.demographic-row.reverse {
  grid-template-columns: 1fr 340px;
}

.demographic-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.demographic-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-dark-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.bullet-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.quote-box {
  background-color: #F8FAF6;
  border-left: 3px solid var(--color-primary);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 13.5px;
  color: #555555;
  margin-top: 14px;
}

.quote-author {
  display: block;
  text-align: right;
  font-weight: 600;
  font-style: normal;
  font-size: 12.5px;
  color: var(--color-primary-dark);
  margin-top: 6px;
}

/* Osteo Page Responsive Adjustments */
@media screen and (max-width: 992px) {
  .osteo-row,
  .osteo-row.reverse,
  .history-grid,
  .symptoms-grid,
  .demographic-row,
  .demographic-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .demographic-img-wrap,
  .osteo-image-wrap,
  .history-image-wrap {
    max-width: 480px;
    height: 280px;
    margin: 0 auto;
  }

  .when-consult-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: FLEURS DE BACH
   ========================================================================== */

/* Hero variation for Fleurs de Bach */
.hero-bach {
  background: url('../images/hero-fleurs-de-bach.webp') center center / cover no-repeat;
}

/* Burgundy colored sections */
.burgundy-section {
  background-color: #6E4848;
  color: #FFFFFF;
  padding: 80px 20px 85px;
}

.burgundy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.burgundy-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.circle-img-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.circle-img-wrap:hover .circle-img {
  transform: scale(1.05);
}

.flower-mosaic-wrap {
  width: 100%;
  max-width: 440px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.flower-mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Emotion & Sunset Banner */
.banner-emotions {
  position: relative;
  min-height: 380px;
  background: url('../images/11_no_alt.avif') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: #FFFFFF;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(20, 15, 15, 0.45),
    rgba(20, 15, 15, 0.45)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.banner-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Bach Demographics in Burgundy Section */
.bach-demographics-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  text-align: left;
}

.bach-demographic-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-card);
  padding: 24px 28px;
}

.bach-demographic-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.bach-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bach-bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.bach-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FFD28C;
  font-size: 16px;
}

.bach-quote-box {
  background-color: #F8FAF6;
  border-left: 3px solid #6E4848;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 13.5px;
  color: #555555;
  margin: 30px auto 0;
  max-width: 780px;
  text-align: center;
}

/* Bach Page Responsive Adjustments */
@media screen and (max-width: 992px) {
  .burgundy-grid,
  .burgundy-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .flower-mosaic-wrap {
    height: 360px;
  }

  .circle-img-wrap {
    width: 220px;
    height: 220px;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: QUI SUIS-JE ?
   ========================================================================== */

/* Profile Presentation Section */
.profile-hero-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 80px 20px 85px;
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.profile-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.profile-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.stat-boxes {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  max-width: 150px;
}

.portrait-img-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.portrait-img-wrap:hover .portrait-img {
  transform: scale(1.04);
}

/* Techniques and Philosophy */
.techniques-section {
  padding: 80px 20px 85px;
  background-color: #FFFFFF;
}

.techniques-content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-dark-muted);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Formations Timeline on Sage Green */
.formations-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 80px 20px 90px;
}

.formations-container {
  max-width: 900px;
  margin: 0 auto;
}

.formations-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
}

.formation-quote-box {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #FFFFFF;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.formation-quote-author {
  display: block;
  text-align: right;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  color: #FFD28C;
  margin-top: 8px;
}

.formations-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.formation-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius-card);
  padding: 22px 26px;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.95);
  transition: var(--transition-smooth);
}

.formation-card:hover {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
}

.formation-card strong {
  color: #FFFFFF;
}

.formation-card a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.formation-card a:hover {
  color: #FFD28C;
}

.formation-sublist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-left: 12px;
}

.formation-sublist li {
  position: relative;
  padding-left: 18px;
}

.formation-sublist li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FFD28C;
}

/* Qui suis-je Responsive */
@media screen and (max-width: 992px) {
  .profile-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .stat-boxes {
    justify-content: center;
  }

  .portrait-img-wrap {
    width: 220px;
    height: 220px;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: CONTACT
   ========================================================================== */

/* Practical Info & Map Section */
.contact-info-section {
  padding: 60px 20px 80px;
  background-color: #FFFFFF;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
  max-width: 1060px;
  margin: 0 auto;
}

.contact-info-text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-main-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.contact-intro-p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-dark-muted);
  margin-bottom: 12px;
}

.contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-subheading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-dark-muted);
}

.contact-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.contact-list a {
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: underline;
}

.contact-list a:hover {
  color: var(--color-primary);
}

.contact-p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-dark-muted);
}

.contact-pmr-badge {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 14px;
  line-height: 1.5;
}

/* Map Wrap */
.map-wrap {
  width: 100%;
  height: 440px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Message Form Section with Photo Background */
.contact-form-section {
  position: relative;
  min-height: 600px;
  background: url('../images/hero-contact.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px 100px;
  color: #FFFFFF;
}

.contact-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(25, 20, 15, 0.52),
    rgba(25, 20, 15, 0.52)
  );
  z-index: 1;
}

.contact-form-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 36px 36px 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: var(--color-dark);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  text-align: left;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #B8C0CC;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(106, 138, 94, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8C919B;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 12px 40px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition-smooth);
}

.btn-contact-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(106, 138, 94, 0.35);
}

.contact-feedback {
  font-size: 13.5px;
  margin-top: 14px;
  padding: 10px;
  border-radius: 6px;
  display: none;
}

.contact-feedback.success {
  display: block;
  background-color: #DEF4F0;
  color: #008361;
}

.contact-feedback.error {
  display: block;
  background-color: #FFE8EF;
  color: #D63163;
}

/* Contact Responsive */
@media screen and (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .map-wrap {
    height: 350px;
  }

  .contact-card {
    padding: 28px 20px 32px;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: LEGAL & PRIVACY PAGES
   ========================================================================== */

.legal-page-section {
  padding: 60px 20px 90px;
  background-color: #FFFFFF;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-main-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.legal-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-dark-muted);
  margin-bottom: 28px;
}

.legal-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-article-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
}

.legal-p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-dark-muted);
  margin-bottom: 14px;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 18px;
  padding-left: 12px;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-dark-muted);
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-container a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-container a:hover {
  color: var(--color-primary-dark);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: FEMME ENCEINTE & NOURRISSON
   ========================================================================== */

/* Hero variation for Femme enceinte & Nourrisson */
.hero-grossesse {
  background: url('../images/hero-osteopathie.avif') center 35% / cover no-repeat;
}

/* Perinatal motifs cards grid */
.perinatal-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.perinatal-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px 24px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.perinatal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(106, 138, 94, 0.12);
  border-color: var(--color-primary-light);
}

.perinatal-card-icon {
  font-size: 36px;
  line-height: 1;
}

.perinatal-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.3;
}

.perinatal-card-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-dark-muted);
}

/* Perinatal page responsive */
@media screen and (max-width: 992px) {
  .perinatal-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .perinatal-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}





