/* CSS optimisé sans @import pour éviter le blocage du rendu */
/* Les Google Fonts sont maintenant chargées via <link> dans le HTML */

/* Skip link pour l'accessibilité */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* CSS Variables with a new soothing color scheme */
:root {
  --primary-color: #6b9080; /* Soft sage green */
  --primary-light: #a4c3b2; /* Lighter sage */
  --primary-dark: #4a6b5d; /* Darker sage */
  --secondary-color: #f6bd60; /* Warm amber */
  --text-color: #333333;
  --text-light: #666666;
  --text-lightest: #999999;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-cream: #f7f5f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --transition: all 0.3s ease;
  
  /* Font variables */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing variables */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Increased from 80px */
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
  /* Removing padding-top to eliminate the white space */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  position: relative;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

p {
  margin-bottom: var(--space-sm);
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

ul {
  list-style-position: inside;
  margin-bottom: var(--space-sm);
}

/* Containers and Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

section {
  padding-top: var(--space-lg); /* Reduced padding to prevent excessive spacing */
  padding-bottom: var(--space-lg);
  position: relative;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* Flex and Grid Utilities */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

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

.items-center {
  align-items: center;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

/* ==========================================
   HEADER & NAVIGATION - CLEAN REWRITE
   ========================================== */

/* Header Principal */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-header .site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header .site-logo:hover {
  color: var(--primary-color);
}

/* Navigation Desktop */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.desktop-nav .nav-list li {
  margin: 0;
}

.desktop-nav .nav-list a {
  display: inline-block;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.desktop-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.desktop-nav .nav-list a:hover::after {
  width: 100%;
}

/* Bouton Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Mobile */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .nav-list li {
  border-bottom: 1px solid rgba(107, 144, 128, 0.1);
}

.mobile-menu .nav-list li:last-child {
  border-bottom: none;
}

.mobile-menu .nav-list a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu .nav-list a:hover {
  background: rgba(107, 144, 128, 0.05);
  color: var(--primary-color);
  padding-left: 2rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero Section - More impactful */
#accueil {
  min-height: 90vh; /* Reduced from 100vh */
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 0;
  margin-top: 70px; /* Ajout d'une marge en haut pour compenser le header fixe */
  color: white;
}

#accueil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3));
  z-index: 1;
}

#accueil .container {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) var(--space-sm);
}

#accueil h1 {
  color: white;
  max-width: 800px;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.3);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

#accueil p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  max-width: 600px;
  font-weight: 300;
}

/* Button Styles - Enhanced for visibility */
.bg-blue-500 {
  background-color: var(--primary-color) !important;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(107, 144, 128, 0.3);
  color: white !important; /* Ensuring text is visible */
  display: inline-block !important; /* Ensuring button displays correctly */
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1.5;
}

.bg-blue-500:hover {
  background-color: var(--primary-dark) !important;
  box-shadow: 0 6px 15px rgba(107, 144, 128, 0.4);
  transform: translateY(-3px);
  color: white !important; /* Maintaining text visibility on hover */
}

.rounded-full {
  border-radius: 50px !important;
}

/* Section Styles */
section {
  padding-top: var(--space-lg); /* Reduced padding to prevent excessive spacing */
  padding-bottom: var(--space-lg);
  position: relative;
}

section:nth-child(odd) {
  background-color: var(--bg-white);
}

section:nth-child(even) {
  background-color: var(--bg-cream);
}

/* Hypnose Section */
#hypnose .w-full.md\:w-1\/2, #massages .w-full.md\:w-1\/2 {
  overflow: hidden; /* Contenir les effets de zoom des images */
  border-radius: var(--border-radius);
}

#hypnose img, #massages img {
  height: 500px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform-origin: center; /* Assurer que le zoom se fait depuis le centre */
  z-index: 1; /* S'assurer que l'image reste dans son contexte de pile */
}

#hypnose img:hover, #massages img:hover {
  transform: scale(1.01); /* Réduire l'effet de zoom pour éviter les débordements */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#hypnose .text-justify, #massages .text-justify {
  padding: var(--space-md);
}

#hypnose ul {
  margin-left: var(--space-sm);
  margin-bottom: var(--space-md);
}

#hypnose li {
  margin-bottom: 0.5rem;
}

/* Massage Menu Image */
.w-full.md\:w-1\/2 {
  position: relative;
  overflow: hidden; /* Contenir l'effet de zoom */
}

#massageMenuImage {
  cursor: pointer;
  max-width: 100%;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
  margin: var(--space-md) 0;
}

#massageMenuImage:hover {
  transform: scale(1.01); /* Réduire l'effet de zoom */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Bienfaits Section - Improved cards */
#bienfaits .grid-cols-1 {
  gap: 2rem;
}

#bienfaits .bg-white {
  border-radius: var(--border-radius);
  overflow: hidden; /* Assurer que l'effet de survol reste à l'intérieur de la carte */
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative; /* Pour maintenir l'élément dans le flux normal */
  z-index: 1; /* Définir un contexte d'empilement */
}

#bienfaits .bg-white:hover {
  transform: translateY(-5px); /* Réduire le déplacement pour éviter les débordements */
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Testimonials Section - More elegant cards */
#temoignages {
  background-color: var(--bg-cream);
  position: relative; /* Créer un contexte d'empilement */
  z-index: 1; /* Définir un contexte z-index */
}

#temoignages .bg-white {
  border-radius: var(--border-radius);
  transition: var(--transition);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  overflow: hidden; /* Contenir les effets de hover */
}

#temoignages .bg-white::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
}

#temoignages .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

#temoignages .mb-4 {
  position: relative;
  z-index: 1;
  font-style: italic;
}

#temoignages .text-right {
  font-weight: 500;
  color: var(--primary-color);
}

/* Contact Section - Improved form */
#contact iframe {
  height: 450px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* WhatsApp Section */
.whatsapp-contact {
  margin-top: var(--space-md);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  background-color: #e7f3ef !important;
  border: 1px solid #d1e7dd;
}

.whatsapp-contact h3 {
  color: #25704a;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  background: #25D366;
  color: white;
  font-weight: 600;
  transition: var(--transition);
}

whatsapp-btn:hover {
  background: #22c55e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Footer - More elegant */
#site-footer {
  background: #2d3b36;
  padding: var(--space-lg) 0 var(--space-sm);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

#site-footer h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

#site-footer h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

#site-footer a {
  color: rgba(255,255,255,0.8);
}

#site-footer a:hover {
  color: var(--secondary-color);
}

#site-footer .social-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 0.5rem;
  transition: var(--transition);
}

#site-footer .social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

#site-footer .pt-6 {
  border-color: rgba(255,255,255,0.1) !important;
  padding-top: var(--space-md) !important;
  margin-top: var(--space-md) !important;
}

/* Ajout de nouvelles règles pour l'espacement du footer */
#site-footer .space-y-3 > * + * {
  margin-top: 0.75rem;
}

#site-footer .flex-wrap {
  row-gap: var(--space-md);
}

#site-footer p {
  line-height: 1.8;
}

#site-footer .social-icons {
  margin-top: var(--space-sm);
}

#site-footer ul {
  margin-left: 0;
}

#site-footer .container {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Plus d'espace pour les informations de contact */
#site-footer .w-full.md\:w-1\/3 p {
  margin-bottom: var(--space-sm);
}

/* Style pour les mentions légales en bas */
#site-footer .text-center .space-x-4 {
  margin-top: var(--space-sm);
  justify-content: center;
}

/* Modal styling - More elegant and smooth */
#massageMenuModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#massageMenuModal.active {
  opacity: 1;
}

#massageMenuModal img {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  border-radius: var(--border-radius);
}

#massageMenuModal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: var(--transition);
}

#massageMenuModal .close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

/* Social Media Icons with Tooltips */
.social-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 0.5rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
}

.social-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Newsletter Form Styling */
#site-footer input[type="email"] {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

#site-footer input[type="email"]:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--primary-light);
}

#site-footer button[type="submit"] {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

#site-footer button[type="submit"]:hover {
  background-color: var(--primary-dark);
}

/* Quick Booking Modal */
#quickBookModal {
  backdrop-filter: blur(5px);
}

#quickBookModal .bg-white {
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#quickBookModal h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

#quickBookModal form input,
#quickBookModal form select,
#quickBookModal form textarea {
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

#quickBookModal form input:focus,
#quickBookModal form select:focus,
#quickBookModal form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(107, 144, 128, 0.2);
}

/* Floating Appointment Button */
.fixed.bottom-6.right-6 {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
}

.fixed.bottom-6.right-6:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.fixed.bottom-6.right-6 svg {
  margin-right: 8px;
}

/* Animation for the modal */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#quickBookModal .bg-white {
  animation: modalFadeIn 0.4s ease forwards;
}

/* Group hover functionality for tooltips */
.group:hover .group-hover\:block {
  display: block;
}

/* Responsive design */
@media (min-width: 768px) {
  .md\:flex-no-wrap {
    flex-wrap: nowrap;
  }
  
  .md\:w-1\/2 {
    width: 50%;
  }
  
  .md\:w-1\/3 {
    width: 33.333%;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hidden.md\:flex {
    display: flex;
  }
  
  .hidden.md\:block {
    display: block;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: var(--space-md) 0;
  }
  
  #hypnose img, #massages img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  #mobile-menu-button {
    display: block;
  }
  
  .hidden.md\:flex {
    display: none;
  }
  
  .w-full.md\:w-1\/2, 
  .w-full.md\:w-1\/3 {
    width: 100%;
    margin-bottom: var(--space-md);
  }
  
  #hypnose img, #massages img {
    height: 300px;
    margin-bottom: var(--space-sm);
  }
  
  #accueil {
    min-height: 70vh;
  }
  
  #accueil h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  #contact iframe {
    height: 300px;
    margin-bottom: var(--space-md);
  }
  
  footer .w-full.md\:w-1\/3 {
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-xs);
  }
  
  #accueil {
    min-height: 60vh;
  }
  
  header a.text-2xl {
    font-size: 1.1rem;
  }
  
  .bg-blue-500 {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Animation effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Fix space issues */
.space-x-6 > * + * {
  margin-left: 1.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* ==========================================
   CARTES DES MASSAGES - Menu dynamique
   ========================================== */

.massage-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

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

.massage-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(107, 144, 128, 0.15);
  transition: var(--transition);
  text-align: center;
  opacity: 1;
  transform: translateY(0);
}

.massage-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.massage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(107, 144, 128, 0.25);
  border-color: var(--primary-light);
}

.massage-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  padding: 10px;
  background: linear-gradient(135deg, rgba(107, 144, 128, 0.1) 0%, rgba(164, 195, 178, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.massage-card-icon svg {
  width: 28px;
  height: 28px;
}

.massage-card:hover .massage-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(107, 144, 128, 0.2) 0%, rgba(164, 195, 178, 0.35) 100%);
}

.massage-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.massage-card-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.massage-card-price {
  margin-top: auto;
}

.price-main {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(107, 144, 128, 0.1) 0%, rgba(164, 195, 178, 0.2) 100%);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.price-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-lightest);
  margin-top: 0.25rem;
}

.duration-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
}

.duration-icon svg {
  width: 100%;
  height: 100%;
}

.forfait-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(107, 144, 128, 0.2);
}

.forfait-line:last-child {
  border-bottom: none;
}

.forfait-seances {
  font-size: 0.85rem;
  color: var(--text-light);
}

.forfait-prix {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

/* ==========================================
   SECTION TARIFS - Styles améliorés
   ========================================== */

.tarif-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(107, 144, 128, 0.15);
  transition: var(--transition);
}

.tarif-line:hover {
  background: rgba(107, 144, 128, 0.05);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  border-radius: var(--border-radius-sm);
}

.tarif-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tarif-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.tarif-icon svg {
  width: 100%;
  height: 100%;
}

.tarif-duration {
  font-size: 0.8rem;
  color: var(--text-lightest);
  background: rgba(107, 144, 128, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
}

.tarif-badge {
  font-size: 0.75rem;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 500;
}

.tarif-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.tarif-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(107, 144, 128, 0.05);
  border-radius: var(--border-radius-sm);
}

.tarif-note svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ==========================================
   BOUTONS PRIMAIRES AMÉLIORÉS
   ========================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(107, 144, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 144, 128, 0.4);
}

.btn-icon, .btn-arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.btn-icon svg, .btn-arrow svg {
  width: 100%;
  height: 100%;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================
   TÉMOIGNAGES AMÉLIORÉS
   ========================================== */

#temoignages .bg-white {
  position: relative;
  overflow: hidden;
}

.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #f6bd60;
}

/* ==========================================
   BIENFAITS AMÉLIORÉS
   ========================================== */

#bienfaits .bg-white {
  position: relative;
  padding-top: 2rem;
}

.benefit-icon-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(107, 144, 128, 0.3);
  color: white;
}

.benefit-icon-badge svg {
  width: 24px;
  height: 24px;
}

/* ==========================================
   BOUTON RETOUR EN HAUT
   ========================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(107, 144, 128, 0.4);
  z-index: 1000;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(107, 144, 128, 0.5);
}

/* ==========================================
   ANIMATIONS AU SCROLL
   ========================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale"] {
  transform: scale(0.9);
}

[data-animate="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   ACCESSIBILITÉ
   ========================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.keyboard-nav *:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* ==========================================
   IMAGES LAZY LOADING
   ========================================== */

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].lazy-loaded,
img.lazy-loaded {
  opacity: 1;
}

/* ==========================================
   ÉTAT CHARGÉ
   ========================================== */

body.loaded .massage-card {
  animation: fadeInUp 0.5s ease forwards;
}

body.loaded .massage-card:nth-child(1) { animation-delay: 0.1s; }
body.loaded .massage-card:nth-child(2) { animation-delay: 0.2s; }
body.loaded .massage-card:nth-child(3) { animation-delay: 0.3s; }
body.loaded .massage-card:nth-child(4) { animation-delay: 0.4s; }

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

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin-top: 0;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 59, 54, 0.85) 0%,
    rgba(107, 144, 128, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  color: white;
  font-size: 4rem;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
  margin-bottom: var(--space-md);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }
}

/* === SECTIONS === */
.section {
  padding: var(--space-lg) 0;
  background-color: var(--bg-white);
  position: relative;
}

.section--alt {
  background-color: var(--bg-cream);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(107, 144, 128, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(246, 189, 96, 0.05) 0%, transparent 50%);
}

/* Décoration subtile pour les sections */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 144, 128, 0.2), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

/* === CONTENT GRID === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.content-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.content-text {
  padding: var(--space-md);
}

.benefits-list {
  margin-left: var(--space-sm);
  margin-bottom: var(--space-md);
}

.benefits-list li {
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid--reverse {
    direction: ltr;
  }
  
  .content-image img {
    height: 300px;
  }
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  gap: var(--space-md);
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards-grid--3,
  .cards-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* === BENEFIT CARDS === */
.benefit-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-card .card-image {
  margin: 0;
  overflow: hidden;
}

.benefit-card .card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.benefit-card:hover .card-image img {
  transform: scale(1.05);
}

.benefit-card .card-content {
  padding: var(--space-md);
  text-align: center;
}

/* === PRICING GRID === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* === PRICING CARDS === */
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-md);
  text-align: center;
}

.pricing-card-header h3 {
  color: white;
  margin: 0;
}

.pricing-card-body {
  padding: var(--space-md);
}

.pricing-list {
  list-style: none;
  margin: 0 0 var(--space-md) 0;
  padding: 0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(107, 144, 128, 0.15);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-label {
  font-weight: 500;
  color: var(--text-color);
}

.pricing-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(107, 144, 128, 0.05);
  border-radius: var(--border-radius-sm);
}

.pricing-list-dynamic {
  margin-bottom: var(--space-md);
}

/* === INFO BOX === */
.info-box {
  background: linear-gradient(135deg, rgba(107, 144, 128, 0.1) 0%, rgba(164, 195, 178, 0.15) 100%);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  border: 1px solid rgba(107, 144, 128, 0.2);
}

.info-box h4 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
}

.testimonial-quote p {
  margin: 0;
}

.testimonial-author {
  margin-top: var(--space-sm);
  text-align: right;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
}

.testimonial-author cite {
  font-style: normal;
  font-weight: 500;
  color: var(--primary-color);
  background: transparent;
  display: inline;
}

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-details {
  font-style: normal;
}

.contact-item {
  margin-bottom: var(--space-sm);
}

.contact-item strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

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

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

.contact-map {
  margin-top: var(--space-md);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
}

.contact-cta {
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(107, 144, 128, 0.1) 0%, rgba(164, 195, 178, 0.15) 100%);
  border-radius: var(--border-radius);
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

/* === BUTTONS === */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(107, 144, 128, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 144, 128, 0.4);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* === FOOTER === */
#site-footer {
  background: #2d3b36;
  padding: var(--space-lg) 0 var(--space-sm);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.footer-section h3,
.footer-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-about p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
}

.social-link--facebook:hover {
  background: #1877f2;
}

.social-link--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link--whatsapp:hover {
  background: #25D366;
}

/* Footer Nav */
.footer-nav .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-nav .footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav .footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 0.25rem;
}

/* Footer Contact */
.footer-address {
  font-style: normal;
}

.footer-address p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-address a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.copyright {
  margin: 0;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: var(--space-sm);
}

.legal-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--secondary-color);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* === MASSAGE MENU CONTAINER === */
.massage-menu {
  margin-top: var(--space-sm);
}