/* ==========================================================================
   1. POLICES ET VARIABLES GLOBALES
   ========================================================================== */

@font-face {
    font-family: 'alamanda';
    src: url('./fonts/alamanda.woff2') format('woff2'),
         url('./fonts/alamanda.woff') format('woff'),
         url('./fonts/alamanda.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ananda Black';
    src: url('./fonts/ananda-black.woff2') format('woff2'),
         url('./fonts/ananda-black.woff') format('woff'),
         url('./fonts/ananda-black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Palette Holistique */
    --color-orange: #C16D53; 
    --color-yellow: #E9C46A; 
    --color-soft-orange: #F9F3F0; 
    --color-soft-yellow: #FDFBF5; 
    --color-bg-site: #F9F6F0; 
    --color-text-dark: #3a3532; 
    --color-gold-powder: #D8B273;
    --color-info: #E3BFA8;
    
    /* Typographie */
    --font-logo: 'alamanda', 'Great Vibes', cursive;
    --font-headings: 'Georgia', serif;
    --font-body: 'Roboto', sans-serif; 
    
    /* Variables Haut de Gamme (Ombres douces et transitions) */
    --shadow-soft: 0 10px 30px -5px rgba(0,0,0,0.06);
    --shadow-hover: 0 15px 40px -5px rgba(0,0,0,0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. RESET ET CORPS DU SITE
   ========================================================================== */

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

html { 
    scroll-behavior: smooth; 
    background-color: var(--color-bg-site); 
    overflow-x: hidden; 
}

body { 
    font-family: var(--font-body); 
    color: var(--color-text-dark); 
    line-height: 1.75; 
    font-weight: 300; 
    overflow-x: hidden; 
    background: linear-gradient(rgba(249, 246, 240, 0.85), rgba(249, 246, 240, 0.95)), url('./images/rdv.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Lissage de la police pour un rendu premium */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3. TYPOGRAPHIE FLUIDE (S'adapte dynamiquement à l'écran)
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: normal; 
    margin-top: 0;
    line-height: 1.3;
}

h2 { 
    font-size: clamp(28px, 4vw, 36px); 
    color: var(--color-orange); 
    margin-bottom: clamp(15px, 3vw, 25px); 
}

h3 { 
    font-size: clamp(22px, 3vw, 26px); 
    color: var(--color-text-dark); 
    margin-top: 30px; 
    margin-bottom: 15px; 
}

p { 
    font-size: clamp(15px, 1.5vw, 16px); 
    margin-bottom: 20px; 
    color: var(--color-text-dark); 
}

.intro-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-orange);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ==========================================================================
   4. ANIMATIONS AU DÉFILEMENT
   ========================================================================== */

.fade-in { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.reveal-scale { 
    opacity: 0; transform: scale(0.9); 
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: block; height: 100%;
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.title-letter {
    display: inline-block; opacity: 0;
    animation: cinematicReveal 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes cinematicReveal {
    0% { opacity: 0; transform: translateY(-15px) rotate(-5deg); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.site-header { 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1010; 
    padding: clamp(10px, 2vw, 16px) clamp(20px, 4vw, 40px); 
    background-color: rgba(0, 0, 0, 0.15); 
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    transition: var(--transition-smooth); 
}
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; position: relative; }


.logo-container {
    display: flex; flex-direction: column; align-items: flex-start; text-decoration: none;
    position: relative; z-index: 1020; transition: transform 0.4s ease; cursor: pointer;
    margin-left: 0; margin-right: 0; 
}

.logo-image { height: clamp(35px, 4vw, 45px); width: auto; object-fit: contain; transition: all 0.4s ease; }
.logo-tagline {
    font-family: var(--font-body); font-weight: 300; font-style: italic; font-size: 13px;
    color: #fff; margin-top: 5px; text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: color 0.4s ease, text-shadow 0.4s ease; white-space: nowrap;
}

.main-nav ul { list-style: none; display: flex; gap: clamp(15px, 2vw, 30px); align-items: center; margin-top: 5px;}
.main-nav a { text-decoration: none; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.3); font-family: var(--font-body); font-size: 15px; font-weight: bold; letter-spacing: 0.5px; transition: all 0.3s; }
.main-nav a:hover, .main-nav a.active { color: var(--color-yellow); }

.main-nav a.highlight-offer { background-color: rgba(233, 196, 106, 0.2); color: var(--color-yellow); padding: 8px 18px; border-radius: 30px; border: 1px solid rgba(233, 196, 106, 0.5); text-shadow: none; }
.main-nav a.highlight-offer:hover { background-color: var(--color-yellow); color: #fff; transform: translateY(-2px);}
.main-nav a.highlight-info { background-color: rgba(227, 191, 168, 0.3); color: #fff; padding: 8px 18px; border-radius: 30px; border: 1px solid rgba(227, 191, 168, 0.6); text-shadow: none; }
.main-nav a.highlight-info:hover { background-color: var(--color-info); color: #fff; transform: translateY(-2px);}

.hamburger { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; justify-content: space-around; height: 24px; width: 30px; padding: 0; z-index: 1020; }
.hamburger .bar { width: 100%; height: 2px; background-color: #fff; border-radius: 2px; transition: all 0.3s ease-in-out; }

.site-header.scrolled { background-color: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-bottom: none;}
.site-header.scrolled .logo-container { margin-left: 0; margin-right: 0; align-items: flex-start; }
.site-header.scrolled .logo-image { filter: invert(1) brightness(0.2); }
.site-header.scrolled .logo-tagline { color: var(--color-text-dark); text-shadow: none; }
.site-header.scrolled .main-nav a { color: var(--color-text-dark); text-shadow: none; }
.site-header.scrolled .main-nav a:hover, .site-header.scrolled .main-nav a.active { color: var(--color-orange); }
.site-header.scrolled .main-nav a.highlight-offer { background-color: var(--color-orange); color: #fff; border: none; }
.site-header.scrolled .main-nav a.highlight-offer:hover { background-color: #a95a43; }
.site-header.scrolled .main-nav a.highlight-info { background-color: var(--color-info); color: #fff; border: none; }
.site-header.scrolled .main-nav a.highlight-info:hover { background-color: #c9a791; }
.site-header.scrolled .hamburger .bar { background-color: var(--color-text-dark); }

.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.4); z-index: 990; display: none; opacity: 0; transition: opacity 0.4s; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);}
.menu-overlay.active { display: block; opacity: 1; }

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.hero-section { position: relative; height: 85vh; min-height: 550px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-color: #e9ecef; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 1; }
.hero-background::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(40, 35, 32, 0.4); z-index: 2; }
.hero-content { position: relative; max-width: 900px; padding: 60px 20px 0 20px; z-index: 3; margin-top: 25vh; }
.hero-content h1 { font-size: clamp(32px, 5vw, 42px); color: #fff; margin-bottom: 10px; letter-spacing: 1px; }
.separator { width: 80px; height: 2px; background-color: var(--color-yellow); border: none; margin: 20px auto; }
.hero-subtitle { font-family: var(--font-headings); font-size: clamp(16px, 2vw, 20px); color: #fdfdfd; margin-bottom: 45px; font-style: italic; }

.page-main-title {
    font-family: var(--font-headings); font-size: clamp(42px, 6vw, 56px); color: #fff;
    margin-bottom: 15px; font-style: italic; text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    opacity: 0; animation: softReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes softReveal {
    0% { opacity: 0; transform: translateY(25px); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;}
.hero-buttons .btn {  min-width: 160px;     text-align: center;     justify-content: center;}
.btn { text-decoration: none; padding: 14px 35px; border-radius: 50px; font-family: var(--font-body); font-weight: 500; font-size: 15px; letter-spacing: 0.5px; transition: var(--transition-smooth); display: inline-flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-yellow { background-color: var(--color-yellow); color: var(--color-text-dark); }
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(233, 196, 106, 0.4); }

.shape-divider { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 3;}
.shape-divider svg { position: relative; display: block; width: 100%; height: clamp(40px, 5vw, 60px); }
.shape-divider .shape-fill { fill: var(--color-bg-site); }

.arrow-down { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.9); animation: bounce 2s infinite; z-index: 4; cursor: pointer; transition: color 0.3s ease; }
.arrow-down:hover { color: var(--color-yellow); }
.arrow-down svg { width: clamp(35px, 4vw, 45px); height: auto; stroke-width: 2; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);} 40% {transform: translateY(-15px) translateX(-50%);} 60% {transform: translateY(-7px) translateX(-50%);} }

/* Ajout des cibles avec marge pour ne pas être caché par le menu */
#presentation, #infos-contact, #tarifs, #offre-speciale, #instant-info, #etio, #consultation, #ma-pratique { scroll-margin-top: 90px; } 

/* --- SECTION INFO (Mise au format "Offre Spéciale") --- */
.instant-info-section { 
    padding: 100px 20px; 
    background-color: var(--color-bg-site); 
}

.info-container-box { 
    max-width: 1000px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 50px; 
    border-radius: 16px; 
    border-left: 8px solid var(--color-info); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); 
    display: flex;
    align-items: center;
    gap: 50px;
}

.info-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.05); 
    padding-right: 30px;
}

.info-icon-large { 
    margin-bottom: 15px; 
    color: var(--color-info); 
}

.info-visual h2 { 
    color: var(--color-info); 
    margin-bottom: 0;
    font-size: 32px;
}

.info-text-content {
    flex: 2.5; 
}

.info-text-content p { 
    font-size: 16px; 
    color: #555; 
    text-align: justify; 
    margin: 0; 
    line-height: 1.8;
}

/* --- CLASSE POUR LE MOT ALBANOVA --- */
.albanova-name {
    font-weight: bold;
}

.about-section { padding: 100px 20px 60px 20px; background-color: var(--color-bg-site); }
.about-container { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.about-title { flex: 1; }
.about-text { flex: 2; text-align: justify; }

.special-offer-section { position: relative; padding: 100px 20px; align-items: center; justify-content: center; clip-path: inset(0 0 0 0); }
.offer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 252, 250, 0.85); z-index: 1; }
.offer-container { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 50px; background: #fff; padding: 50px; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); border-left: 8px solid var(--color-orange); }
.offer-text-box { flex: 1; }
.offer-text-box h2 { margin-bottom: 15px; }
.offer-text-box p { font-size: 16px; margin-bottom: 30px; text-align: justify; }
.offer-image-box { flex: 1; }
.offer-image-box img { width: 100%; height: 280px; object-fit: cover; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }

.section-divider { max-width: 1100px; margin: 0 auto; border: none; border-top: 1px solid rgba(0,0,0,0.05); }

/* --- SECTION ETIO SOMATO-EMOTIONNELLE --- */
.therapeute-section { 
    padding: 80px 20px 100px 20px; 
    background-color: var(--color-bg-site); 
}

.therapeute-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: block; 
}

/* 1. Le bloc du haut avec le texte à gauche et l'image à droite */
.therapeute-top-split {
    display: flex;
    align-items: center; 
    gap: 70px;
    margin-bottom: 40px; 
}

.therapeute-text-intro { 
    flex: 1; 
}

.therapeute-container .intro-text {
    font-size: 18px;
    color: var(--color-orange);
    margin-bottom: 30px;
    line-height: 1.5;
}

.therapeute-container p { 
    text-align: justify; 
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Style de la citation centrale */
.citation-harmonie {
    font-family: var(--font-headings);
    font-size: 20px;
    color: var(--color-orange);
    text-align: center;
    font-style: italic;
    margin: 35px 0;
    padding: 25px 20px;
    background-color: var(--color-soft-orange);
    border-radius: 16px;
    border-left: 5px solid var(--color-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.therapeute-image { 
    flex: 1; 
    display: flex; 
    justify-content: flex-end; 
}

.therapeute-image img { 
    width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: cover; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

/* 3. Partie pleine largeur en bas */
.therapeute-full-width {
    width: 100%;
}


.parallax-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-size: cover; background-position: center; z-index: 0; pointer-events: none; }

.therapies-section { position: relative; padding: 120px 20px; clip-path: inset(0 0 0 0); }
.therapies-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 252, 250, 0.9); z-index: 1; }
.therapies-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.therapies-container h2 { color: var(--color-text-dark); text-align: center; margin-bottom: 15px; }
.therapies-intro { text-align: center; margin-bottom: 60px; }


/* --- SECTION CONSULTATION ("POUR QUI ?") --- */
.consultation-section { padding: 100px 20px; background-color: var(--color-bg-site); }
.consultation-container { max-width: 1000px; margin: 0 auto; }

/* 1. Aligner l'image et le texte par le haut */
.consultation-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px; 
}
.consultation-image { flex: 1; }
.consultation-image img { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.06); }

/* 2. Retirer le flexbox pour un flux naturel */
.consultation-text {
    flex: 1;
    display: block; 
}

.consultation-text p {
    text-align: justify; 
    margin-bottom: 10px;
    line-height: 1.5;
}

/* 4. Resserrer la liste et les puces */
.liste-soins {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 20px;
}

.liste-soins li {
    position: relative;
    padding-left: 25px; 
    margin-bottom: 6px; 
    line-height: 1.4; 
    color: var(--color-text-dark);
}

.liste-soins li::before {
    content: '☘';
    position: absolute;
    left: 0;
    top: -1px; 
    color: #8fa79a; 
    font-size: 15px;
}

/* AJOUT POUR ESPACER LES LIGNES SUR LA PAGE HISTOIRE */
.liste-soins-lignes li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.liste-soins-lignes li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* --- 5. NOUVEAU BLOC : Redevenir soi (Pleine largeur) --- */
.consultation-full-width {
    width: 100%;
    margin-bottom: 10px; 
}

.consultation-full-width p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

/* --- SECTION DE NOS 2 SERVICES CENTRÉS --- */
.services-grid-section { padding: 100px 20px; background-color: var(--color-bg-site); }
.services-grid-container { max-width: 1100px; margin: 0 auto; }
.services-grid-container h2 { text-align: center; margin-bottom: 60px; }

/* MODIFICATION: Passage en Flexbox pour centrer et élargir la carte unique */
.services-cards { 
    display: flex; 
    justify-content: center; 
    gap: 60px; 
    width: 100%;
}

.services-grid-section .reveal-scale {
    width: 100%;
    max-width: 550px; /* Élargit la carte pour un bel effet paysage */
}

.service-card { display: flex; flex-direction: column; text-decoration: none; overflow: hidden; border-radius: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; background: #fff; width: 100%; height: 100%;}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.service-img-wrapper { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; position: relative; background-color: #f8f8f8;} /* Format paysage standard */
.service-img-wrapper img, .service-img-wrapper video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block;}
.service-card:hover .service-img-wrapper img, .service-card:hover .service-img-wrapper video { transform: scale(1.08); }
.service-title { background-color: var(--color-soft-orange); color: var(--color-text-dark); text-align: center; padding: 20px 10px; font-family: var(--font-headings); font-size: 17px; flex-grow: 1; display: flex; align-items: center; justify-content: center; transition: background 0.3s, color 0.3s;}
.service-card:hover .service-title { background-color: var(--color-yellow); }

.info-pricing-section { display: flex; flex-direction: column; }
.info-banner { background-color: var(--color-soft-orange); padding: clamp(60px, 8vw, 80px) 20px; }

/* ==========================================================================
   GRILLE DE CONTACTS (Le Flexbox Fluide "Haut de Gamme")
   ========================================================================== */
.info-container { 
    max-width: 1100px !important; 
    margin: 0 auto !important; 
    display: flex !important; 
    flex-wrap: wrap !important; 
    justify-content: center !important; 
    align-items: stretch !important;
    gap: 40px !important; 
    text-align: center !important; 
}
.info-box { 
    display: flex !important; 
    flex-direction: column !important; 
    align-items: center !important; 
    flex: 1 1 250px !important; 
    max-width: 320px !important; 
}
.info-icon { width: 70px; height: 70px; background-color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 6px 15px rgba(0,0,0,0.05); color: var(--color-orange); transition: transform 0.3s ease; }
.info-box:hover .info-icon { transform: scale(1.1); }
.info-icon svg { width: 30px; height: 30px; stroke-width: 1.5; }

.info-box p, .info-box a { 
    font-size: 15px !important; 
    color: var(--color-text-dark) !important; 
    line-height: 1.6 !important; 
    word-break: break-word !important; 
}
.address-link { text-decoration: none; font-weight: 500; transition: color 0.3s; }
.address-link:hover { color: var(--color-orange); }

.pricing-banner { background-color: var(--color-soft-yellow); padding: clamp(60px, 8vw, 100px) 20px; }

/* ==========================================================================
   GRILLE DES TARIFS (Refonte Verticale et Centrée)
   ========================================================================== */
.pricing-container { max-width: 1100px; margin: 0 auto; }
.pricing-container h2 { text-align: center; margin-bottom: 50px; }
.pricing-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: stretch;
    gap: clamp(20px, 3vw, 40px); 
}

.pricing-card { 
    background-color: #fff; 
    padding: 40px 20px; 
    border-radius: 16px; 
    text-align: center; 
    box-shadow: var(--shadow-soft); 
    border-top: 5px solid var(--color-yellow); 
    transition: var(--transition-smooth); 
    flex: 1 1 280px; 
    max-width: 320px; 
    cursor: pointer;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center;
}

.pricing-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-hover); 
    border-top-color: var(--color-orange) !important; 
}

.pricing-icon { 
    width: 70px; height: 70px; 
    background-color: var(--color-soft-orange); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px auto; 
    color: var(--color-orange); 
    transition: var(--transition-smooth); 
}
.pricing-card:hover .pricing-icon { 
    transform: scale(1.1) rotate(5deg); 
    background-color: var(--color-yellow); 
    color: #fff;
}
.pricing-icon svg { width: 30px; height: 30px; stroke-width: 1.5; }

.pricing-card h3 { font-size: 22px; color: var(--color-text-dark); margin-bottom: 5px; } 
.pricing-card .subtext { display: block; font-size: 14px; color: #888; margin-bottom: 25px; font-style: italic;}
.pricing-card .price { font-family: var(--font-body); font-size: 38px; font-weight: 700; color: var(--color-orange); margin-top: auto;}
.pricing-card .price .per-time { font-size: 15px; color: #888; font-weight: 400; }

/* --- SECTION AVIS MODIFIEE --- */
.reviews-section { padding: 100px 0; background-color: #fff; overflow: hidden; }

.google-rating-block { text-align: center; margin-bottom: 40px; }
.gr-score { font-size: 38px; font-weight: bold; color: var(--color-text-dark); line-height: 1;}
.gr-stars { color: var(--color-yellow); font-size: 28px; letter-spacing: 3px; margin-bottom: 10px; }
.google-rating-block p { font-size: 14px; color: #888; margin-bottom: 25px; }
.gr-link { display: inline-flex; align-items: center; padding: 12px 30px; border: 1px solid #ddd; border-radius: 50px; color: var(--color-text-dark); font-weight: 500; text-decoration: none; transition: all 0.3s; background: #fff;}
.gr-link:hover { background-color: var(--color-soft-yellow); border-color: var(--color-yellow); color: var(--color-orange);}

.marquee-container { width: 100%; overflow-x: auto; position: relative; padding: 20px 0; cursor: grab; scrollbar-width: none; }
.marquee-container::-webkit-scrollbar { display: none; } 
.marquee-container:active { cursor: grabbing; }
.marquee-track { display: flex; width: max-content; }
.review-group { display: flex; gap: 30px; padding-right: 30px; }

.review-card { background-color: var(--color-soft-yellow); padding: 30px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); min-width: 380px; max-width: 450px; white-space: normal; pointer-events: none; border: 1px solid rgba(0,0,0,0.02);}
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-avatar { width: 45px; height: 45px; background-color: var(--color-orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-family: var(--font-headings); }
.review-meta { display: flex; flex-direction: column; }
.review-author { font-weight: 500; font-size: 16px; color: var(--color-text-dark); }
.review-date { font-size: 13px; color: #888; }
.review-stars { color: var(--color-yellow); font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: #555; line-height: 1.6; font-style: italic; }

/* --- FOOTER --- */
.site-footer { background-color: var(--color-orange); color: #fff; padding: 80px 20px 40px 20px; text-align: center; }
.footer-container { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 50px; }
.logo-footer-img { height: 35px; width: auto; margin-bottom: 10px; object-fit: contain; }
.footer-desc { font-size: 16px; line-height: 1.8; max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.9); font-style: italic;}
.footer-links { display: flex; justify-content: center; gap: 40px; width: 100%; font-family: var(--font-headings); font-size: 17px; flex-wrap: wrap; }
.footer-links a { color: #fff; text-decoration: none; transition: opacity 0.3s ease; }
.footer-links a:hover { opacity: 0.8; text-decoration: underline; }
.admin-link { opacity: 0.4; font-size: 14px !important;}
.admin-link:hover { opacity: 1; text-decoration: none !important; }
.footer-credits { display: flex; justify-content: space-between; flex-wrap: wrap; width: 100%; max-width: 900px; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 25px; font-size: 14px; align-items: center; color: rgba(255,255,255,0.8); gap: 15px;}
.credit-agency { font-weight: normal; color: rgba(255,255,255,0.8); margin-left: 4px; text-decoration: none; transition: color 0.3s;}
.credit-agency:hover { color: #fff; text-decoration: underline; }

/* --- BOUTONS FLOTTANTS --- */
.floating-buttons-container { 
    position: fixed; 
    bottom: clamp(20px, 4vw, 30px); 
    right: clamp(20px, 4vw, 30px); 
    display: flex; flex-direction: column; gap: 12px; z-index: 990; 
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); 
    padding: 12px; border-radius: 40px; border: 1px solid rgba(255, 255, 255, 0.8); 
    box-shadow: var(--shadow-soft); align-items: center;
}

.floating-btn { width: clamp(45px, 5vw, 50px); height: clamp(45px, 5vw, 50px); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: var(--transition-smooth); padding: 0; text-decoration: none;}
.floating-btn svg { margin: 0 !important; width: clamp(20px, 2.5vw, 22px); height: auto; }

.btn-info { background-color: var(--color-yellow); color: var(--color-text-dark); animation: pulse-ring-yellow 2.5s infinite, gentle-bounce 3s infinite ease-in-out; }
.btn-info:hover { transform: scale(1.1); background-color: #dcb353; animation: none; }
.btn-offer { background-color: var(--color-orange); color: #fff; animation: pulse-ring-orange 2s infinite, gentle-bounce 3s infinite ease-in-out 0.5s; }
.btn-offer:hover { transform: scale(1.1); background-color: #a95a43; animation: none; }
.btn-phone { background-color: #8fa79a; color: #fff; }
.btn-phone:hover { transform: scale(1.1); background-color: #7a9184; }
.btn-rdv { background-color: var(--color-bg-site); color: var(--color-orange); border: 2px solid var(--color-orange); }
.btn-rdv:hover { transform: scale(1.1); background-color: var(--color-orange); color: #fff; }

@keyframes gentle-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-ring-yellow { 0% { box-shadow: 0 0 0 0 rgba(233, 196, 106, 0.7); } 70% { box-shadow: 0 0 0 12px rgba(233, 196, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(233, 196, 106, 0); } }
@keyframes pulse-ring-orange { 0% { box-shadow: 0 0 0 0 rgba(193, 109, 83, 0.7); } 70% { box-shadow: 0 0 0 12px rgba(193, 109, 83, 0); } 100% { box-shadow: 0 0 0 0 rgba(193, 109, 83, 0); } }

.cookie-banner { position: fixed; bottom: -150px; left: 0; width: 100%; background-color: #fff; box-shadow: 0 -10px 30px rgba(0,0,0,0.08); padding: 25px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); border-top: 4px solid var(--color-yellow); flex-wrap: wrap; gap: 20px;}
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 14px; color: #555; max-width: 800px; line-height: 1.6; }
.cookie-text strong { color: var(--color-orange); font-size: 17px; display: inline-block; margin-bottom: 5px; font-family: var(--font-headings);}
.cookie-actions { display: flex; gap: 15px; flex-shrink: 0; }
.btn-cookie { padding: 12px 25px; border: none; border-radius: 50px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-size: 15px;}
.btn-cookie.accept { background-color: var(--color-orange); color: #fff; }
.btn-cookie.accept:hover { background-color: #a95a43; transform: translateY(-2px);}
.btn-cookie.decline { background-color: #f0f2f5; color: #555; }
.btn-cookie.decline:hover { background-color: #e4e6e9; }

/* Bulle de contact (Menu flottant tiroir) */
.contact-bubble {
    position: fixed;
    bottom: clamp(30px, 5vw, 45px); 
    right: clamp(75px, 10vw, 100px); 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: -8px 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 12px 25px 12px 12px;
    display: none; flex-direction: column; gap: 5px;
    z-index: 980; 
    opacity: 0; transform: translateX(40px) scale(0.95); 
    transform-origin: right bottom;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: max-content; min-width: 250px;
    max-width: calc(100vw - clamp(80px, 12vw, 120px));
}
.contact-bubble.show { display: flex; opacity: 1; transform: translateX(0) scale(1); }

.bubble-option {
    display: flex; align-items: center; gap: 15px; padding: 15px;
    border-radius: 8px; text-decoration: none; color: var(--color-text-dark);
    font-family: var(--font-body); font-size: clamp(14px, 1.5vw, 16px); font-weight: 500;
    background: transparent; border: none; cursor: pointer; text-align: left;
    white-space: normal; 
    transition: var(--transition-smooth);
}
.bubble-option:hover { background: var(--color-soft-orange); color: var(--color-orange); transform: translateX(-5px); }
.bubble-icon { font-size: 20px; flex-shrink: 0;}

/* Modal Formulaire */
.contact-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 2000; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease; padding: 20px; box-sizing: border-box;
}
.contact-modal-overlay.show { display: flex; opacity: 1; }

.contact-modal {
    background: #fff; padding: clamp(30px, 5vw, 50px); border-radius: 16px;
    width: 100%; max-width: 550px; box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative; transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 8px solid var(--color-orange);
    max-height: 90vh; overflow-y: auto; 
}
.contact-modal-overlay.show .contact-modal { transform: scale(1); }
.close-modal-btn { position: absolute; top: 15px; right: 25px; background: none; border: none; font-size: 36px; color: #ccc; cursor: pointer; transition: color 0.2s; }
.close-modal-btn:hover { color: var(--color-orange); }
.contact-modal h2 { margin-top: 0; font-size: clamp(26px, 4vw, 32px); text-align: center; }

.form-row { display: flex; gap: 15px; margin-bottom: 15px; flex-wrap: wrap;}
.form-row input, .contact-modal textarea {
    flex: 1; min-width: 200px; padding: 16px; border: 1px solid #ddd; border-radius: 8px;
    font-family: var(--font-body); font-size: 16px; background: #fdfdfd; 
    transition: var(--transition-smooth); box-sizing: border-box; width: 100%;
}
.form-row input:focus, .contact-modal textarea:focus { border-color: var(--color-orange); outline: none; box-shadow: 0 0 0 4px rgba(193, 109, 83, 0.1); background: #fff;}
.contact-modal textarea { resize: vertical; }
.char-count { position: absolute; bottom: 15px; right: 20px; font-size: 12px; color: #888; pointer-events: none; }

/* ==========================================================================
   10. HYPER RESPONSIVE MOBILE ET TABLETTE
   ========================================================================== */

@media (max-width: 1300px) {
    .site-header { padding: 0 20px !important; height: 75px; z-index: 1020;}
    .header-container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
    
    .logo-container { transform: translateY(0); align-items: flex-start; margin-left: 0; margin-right: 0; }
    .logo-image { height: 35px; }
    .logo-tagline { font-size: 12px; margin-top: 4px; }
    
    .hamburger { display: flex; z-index: 1030; } 
    
    .menu-overlay { top: 75px; height: calc(100vh - 75px); }
    
    .main-nav {
        position: fixed; 
        top: 75px; 
        right: -100%; 
        width: 80%; 
        max-width: 320px;
        height: calc(100vh - 75px);
        background-color: transparent; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0; 
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 10px 30px rgba(0,0,0,0.08);
        z-index: 1010; 
        overflow: hidden; 
    }

    .main-nav::before {
        content: '';
        position: absolute;
        top: -20px; left: -20px; right: -20px; bottom: -20px; 
        background-image: url('https://images.unsplash.com/photo-1567116843459-e9e2469ee5fb?auto=format&fit=crop&w=600&q=80');
        background-size: cover;
        background-position: center;
        filter: blur(12px);
        z-index: -2;
    }

    .main-nav::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0; 
        background-color: rgba(255, 252, 250, 0.80); 
        z-index: -1;
    }

    .main-nav.open { right: 0; }
    
    .main-nav ul { position: relative; z-index: 2; flex-direction: column; padding: 0; gap: 15px; align-items: center; width: 100%;}
    .main-nav a { color: var(--color-text-dark) !important; text-shadow: none !important; font-size: 20px; padding: 12px; font-family: var(--font-headings); font-weight: bold;}
    .main-nav a:hover, .main-nav a.active { color: var(--color-orange) !important; }
    
    .main-nav a.highlight-offer, .main-nav a.highlight-info {
        background: transparent !important;
        border: none !important;
        position: relative;
        display: inline-block;
        padding: 10px 20px !important;
        margin-top: 10px;
        color: var(--color-text-dark) !important;
        z-index: 2;
        font-size: 22px !important;
        border-bottom: 2px solid var(--color-orange) !important;
        border-radius: 0 !important;
    }

    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--color-text-dark);}
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--color-text-dark);}
}

@media (max-width: 900px) {
    .info-container { flex-direction: column !important; align-items: center !important; }
    .info-box { width: 100% !important; max-width: 100% !important; }
}

@media (max-width: 768px) {
    h2 { font-size: 28px; text-align: left; }
    h3 { font-size: 22px; text-align: left; }
    .about-text p, .therapeute-container p, .consultation-container p, .offer-text-box p { text-align: left; }
    
    .hero-background, .nature-section { background-attachment: scroll !important; }
    .hero-background { 
        background-image: url('images/fond_mobile.jpg') !important; 
        background-position: center !important;
    }
    
    
    .hero-section { min-height: 550px; }
    .hero-content { padding-top: 60px; }
    .hero-content h1 { font-size: 32px; white-space: normal; line-height: 1.3; } 
    .separator { margin: 20px auto; } 
    .hero-subtitle { font-size: 18px; margin-bottom: 30px; }
    .page-main-title { font-size: 42px; }

    .hero-buttons { flex-direction: row; gap: 10px; width: 100%; padding: 0; justify-content: center; }
    .btn { width: 100%; flex: 1; padding: 12px 5px; font-size: 13px; text-align: center; gap: 6px; }
    .btn svg { width: 18px; height: 18px; margin: 0; }
    
    .instant-info-section, .about-section, .special-offer-section, .therapeute-section, .therapies-section, .consultation-section, .services-grid-section, .info-pricing-section .info-banner, .info-pricing-section .pricing-banner, .reviews-section { padding: 60px 20px !important; }
    
    .about-container, .offer-container, .therapeute-top-split, .consultation-top { flex-direction: column; gap: 30px; }
    
    .offer-container { padding: 30px 20px; gap: 20px; border-left-width: 4px; border-radius: 16px;}
    .offer-image-box img { height: 180px; } 
    
    .info-container-box { flex-direction: column; padding: 30px 20px; gap: 20px; border-top: none; border-left-width: 4px; }
    .info-visual { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding-right: 0; padding-bottom: 20px; width: 100%; }

    .therapeute-image { justify-content: flex-start; width: 100%;}
    .citation-harmonie { font-size: 18px; padding: 20px 15px; }
    
    .therapies-container { padding: 0; }
    .therapies-intro { text-align: left; margin-bottom: 30px;}
    .accordion-header { font-size: 17px; padding: 18px 0; }

    .services-grid-container h2 { margin-bottom: 30px;}
    .services-cards { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
    .services-grid-section .reveal-scale { max-width: 400px; }
    .service-img-wrapper { aspect-ratio: 3 / 2; } 

    /* Redressement de la grille des tarifs pour les mobiles */
    .pricing-grid { flex-direction: column; align-items: center; gap: 25px !important; }
    .pricing-card { padding: 35px 20px !important; align-items: center !important; text-align: center !important; border-top: 5px solid var(--color-yellow) !important; border-left: none !important; width: 100%; max-width: 400px; }

    .reviews-section h2 { margin-bottom: 30px;}
    .review-card { min-width: 280px; padding: 20px;}
    
    .site-footer { padding: 50px 20px 80px 20px; }
    .footer-container { gap: 30px; }
    .logo-footer-img { height: 28px; } 
    .desktop-br { display: none; }
    .footer-desc { font-size: 14px; text-align: center; padding: 0; }
    .footer-links { flex-direction: column; align-items: center; gap: 15px; }
    .footer-credits { flex-direction: column; gap: 15px; text-align: center; padding-top: 20px; }
    .agency-info { display: flex; flex-direction: column; gap: 5px; align-items: center; }

    .floating-buttons-container { gap: 10px; bottom: 20px; right: 20px; padding: 10px; border-radius: 35px;}
    .floating-btn { width: 45px; height: 45px; }
    .floating-btn svg { width: 20px; height: 20px; }

    .cookie-banner { flex-direction: column; gap: 15px; padding: 20px; text-align: center; bottom: -300px; border-radius: 16px 16px 0 0;}
    .cookie-actions { width: 100%; justify-content: center; }
    .btn-cookie { flex: 1; font-size: 14px; padding: 12px; }

    .contact-bubble { right: 75px; bottom: 25px; }
}

@media (max-width: 480px) {
    .services-grid-section .reveal-scale { max-width: 100%; }
    .hero-content h1 { font-size: 26px; }
    .page-main-title { font-size: 34px; }
    .review-card { min-width: 280px; padding: 15px; }
    .hero-buttons { gap: 8px; }
    .btn { font-size: 12px; padding: 10px 4px; }
}

/* --- Section "Pourquoi ?" --- */
.reasons-section { max-width: 1200px; margin: 4rem auto; padding: 0 20px; }
.split-layout { display: flex; gap: 4rem; align-items: stretch; }
.text-column { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.image-column { flex: 1; display: flex; }
.image-column img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.text-column h2 { font-family: var(--font-headings, 'Georgia', serif); font-size: 2.2rem; margin-bottom: 1.5rem; color: #000; }
.text-column p.main-desc { line-height: 1.8; margin-bottom: 2rem; text-align: justify; color: #333; }

/* --- Section Nature --- */
.nature-section { position: relative; padding: 100px 20px; background-image: url('./images/fond_nature.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.nature-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.85); z-index: 1; }
.nature-container { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.nature-container h2 { font-family: var(--font-headings, 'Georgia', serif); font-size: 32px; color: #000; text-align: center; margin-bottom: 30px; }
.nature-text { text-align: justify; font-size: 15px; line-height: 1.6; color: #333; }
.nature-text p { margin-bottom: 15px; }

@media (max-width: 768px) {
    .split-layout { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .image-column img { height: auto; }
    .nature-section { padding: 60px 20px; }
}

/* ==========================================================================
   STYLES POUR LA PAGE DE PRISE DE RENDEZ-VOUS (rdv.html)
   ========================================================================== */
.page-wrapper { flex: 1; }
.back-link { position: fixed; top: 25px; left: 25px; background: #fff; color: #555; text-decoration: none; font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 500; padding: 10px 20px; border-radius: 50px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: all 0.3s ease; z-index: 1000; display: flex; align-items: center; }
.back-link:hover { color: #d4af37; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transform: translateY(-2px); }

@media (max-width: 768px) {
    .back-link { top: 15px; left: 15px; font-size: 14px; padding: 8px 15px; }
}

.rdv-container { max-width: 650px; margin: 160px auto 100px auto; padding: 45px; background: rgba(255, 255, 255, 0.96); border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.5); }
.rdv-container h2 { font-family: 'Georgia', serif; color: #d4af37; text-align: center; margin-top: 0; font-size: 2.2em; }
.form-group { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.form-group:last-child { border-bottom: none; }
.step-label { display: flex; align-items: center; margin-bottom: 15px; font-weight: bold; color: #333; font-family: 'Georgia', serif; font-size: 1.2em; }
.step-number { display: inline-flex; justify-content: center; align-items: center; width: 28px; height: 28px; background-color: #d4af37; color: white; border-radius: 50%; margin-right: 10px; font-size: 0.8em; font-family: 'Roboto', sans-serif; }
.form-group input:not([type="hidden"]), .form-group select { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Roboto', sans-serif; font-size: 15px; box-sizing: border-box; transition: all 0.3s; background-color: #fdfdfd; }
.form-group input:focus, .form-group select:focus { border-color: #d4af37; outline: none; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1); }

.flatpickr-calendar.inline { box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eee; border-radius: 16px; margin: 0 auto; width: 100%; max-width: 350px; padding-bottom: 10px; }
.flatpickr-current-month { display: flex !important; align-items: center !important; justify-content: center !important; padding-top: 10px !important; gap: 8px; }
.flatpickr-current-month .flatpickr-monthDropdown-months { appearance: none; -webkit-appearance: none; -moz-appearance: none; background: transparent; border: none; font-weight: bold; font-size: 1.15em; color: #333; pointer-events: none; width: auto !important; margin: 0 !important; padding: 0 !important; }
.flatpickr-current-month .numInputWrapper { width: auto !important; }
.flatpickr-current-month input.cur-year { font-weight: bold !important; font-size: 1.15em !important; color: #333 !important; pointer-events: none; background: transparent !important; margin: 0 !important; padding: 0 !important; }
.flatpickr-current-month .numInputWrapper span { display: none !important; }
.flatpickr-day.selected, .flatpickr-day.selected:focus, .flatpickr-day.selected:hover { background: #d4af37 !important; border-color: #d4af37 !important; color: white !important; }

.creneaux-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 12px; margin-top: 15px; }
.btn-creneau { padding: 12px 10px; background: #fff; border: 1px solid #ddd; border-radius: 8px; cursor: pointer; transition: all 0.2s; text-align: center; color: #555; font-weight: 500; font-family: 'Roboto', sans-serif; }
.btn-creneau:hover { background: #fafafa; border-color: #d4af37; color: #d4af37; transform: translateY(-2px); }
.btn-creneau.selected { background: #d4af37; color: white; border-color: #d4af37; font-weight: bold; box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3); }

.btn-submit { width: 100%; background-color: #d4af37; color: white; padding: 16px; border: none; border-radius: 8px; font-size: 1.1em; font-weight: bold; cursor: pointer; transition: 0.3s; margin-top: 10px; display: none; font-family: 'Roboto', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { background-color: #b5952f; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }

@media (max-width: 768px) {
    .rdv-container { margin-top: 120px; margin-left: 20px; margin-right: 20px; padding: 25px 20px; }
}
@media (min-width: 1301px) {
    #menu-offer-item, #menu-info-item, #menu-offre-speciale { display: none !important; }
}

.offer-price-tag { display: inline-block; background-color: var(--color-orange); color: #fff; font-family: var(--font-headings); font-size: 26px; font-weight: bold; padding: 8px 20px; border-radius: 8px; margin-bottom: 25px; box-shadow: 0 5px 15px rgba(193, 109, 83, 0.3); }

/* --- Textes d'aide pour le formulaire de RDV --- */
.input-helper-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.4;
    padding-left: 5px;
}

/* ==========================================================================
   MODALES LEGALES (Mentions & Confidentialité)
   ========================================================================== */
.legal-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.6); 
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 3000; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease; padding: 20px; box-sizing: border-box;
}
.legal-modal-overlay.show { display: flex; opacity: 1; }

.legal-modal {
    background: #fff; padding: clamp(30px, 5vw, 50px); border-radius: 16px;
    width: 100%; max-width: 800px; box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative; transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 85vh; overflow-y: auto;
    border-top: 6px solid var(--color-orange);
    color: var(--color-text-dark);
    text-align: left;
}
.legal-modal-overlay.show .legal-modal { transform: scale(1); }

.close-legal-btn {
    position: absolute; top: 15px; right: 25px; background: none; border: none;
    font-size: 36px; color: #ccc; cursor: pointer; transition: color 0.2s;
}
.close-legal-btn:hover { color: var(--color-orange); }

.legal-modal h2 { 
    margin-top: 0; margin-bottom: 20px; font-size: clamp(24px, 4vw, 32px); 
    color: var(--color-orange); border-bottom: 1px solid #eee; padding-bottom: 15px;
    text-align: left;
}
.legal-modal h3 { font-size: 18px; margin-top: 25px; margin-bottom: 10px; color: #333; }
.legal-modal p, .legal-modal ul { font-size: 15px; line-height: 1.6; color: #555; margin-bottom: 15px; }
.legal-modal ul { padding-left: 20px; }
.legal-modal li { margin-bottom: 8px; }

/* ==========================================================================
   11. GESTION DES IMAGES SPECIFIQUES SUR MOBILE
   ========================================================================== */

/* Par défaut (sur ordinateur), on cache les images dédiées au mobile */
.image-mobile-pratique,
.img-mobile-histoire {
    display: none;
}

@media (max-width: 768px) {
    /* 1. L'Etio Somato Émotionnelle : Inversion de flexbox */
    .therapeute-top-split {
        display: flex;
        flex-direction: column-reverse;
    }

    /* 2. Ma Pratique : Affiche l'image mobile, cache l'originale du bas */
    .image-mobile-pratique {
        display: block;
        margin-bottom: 20px;
    }
    .image-mobile-pratique img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        display: block;
    }
    .split-layout .image-column {
        display: none;
    }

    /* 3. Mon Histoire : Affiche l'image mobile, cache l'originale du bas */
    .img-mobile-histoire {
        display: block;
        width: 100%;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    /* On cache l'image en bas de Mon Histoire, mais on exclut la section #etio de l'Accueil */
    .therapeute-section:not(#etio) .therapeute-image {
        display: none;
    }
}

/* ==========================================================================
   12. CLASSES UTILITAIRES ET SPECIFIQUES (Extraites de index.html)
   ========================================================================== */

.hero-background-index { background-image: url('images/fond.jpg'); }

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

.centered-text-max {
    max-width: 900px;
    margin: 0 auto 15px auto;
    text-align: center;
    font-size: clamp(15px, 2vw, 17px);
}

.centered-text-max.mb-30 { margin-bottom: 30px; }

.custom-quote { max-width: 800px; margin: 40px auto; }
.custom-quote-sm { max-width: 800px; margin: 0 auto; }

.highlight-phrase {
    font-size: clamp(16px, 2vw, 1.15rem);
    color: var(--color-orange);
    margin-bottom: 25px;
}

.highlight-phrase-alt {
    font-size: clamp(16px, 2vw, 1.15rem);
    color: #C9A791;
    margin: 20px 0;
}

.info-grid-custom {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

@media (max-width: 900px) { 
    .info-grid-custom { grid-template-columns: 1fr; } 
}

.inherit-link { color: inherit; text-decoration: none; }

.loading-text, .error-text { text-align: center; width: 100%; }
.loading-text { color: #888; }
.error-text { color: red; }

.modal-title-custom { color: var(--color-orange); font-family: var(--font-headings); }
.modal-subtitle-custom { text-align: center; color: #666; margin-bottom: 25px; }

.form-group-custom { position: relative; margin-bottom: 20px; }
.btn-full-width { width: 100%; cursor: pointer; }
.service-card-custom { margin-bottom: 38px; }
.img-mobile-pratique-inner { width: 100%; border-radius: 16px; margin-bottom: 20px; }

/* Styles spécifiques pour les blocs "Offre spéciale" des tarifs générés en JS */
.pricing-card-offer { border-top-color: var(--color-orange) !important; }
.pricing-icon-offer { background-color: #fff4e6 !important; color: var(--color-orange) !important; }
.pricing-title-bold { font-weight: bold; }
.pricing-title-offer { color: var(--color-orange); font-weight: bold; }
.subtext-offer { color: #c9826b; }
.price-offer { color: var(--color-orange); }

/* Styles spécifiques pour le message de succès du formulaire (JS) */
.success-msg-container { text-align: center; padding: 20px; }
.success-icon { font-size: 50px; margin-bottom: 15px; }
.success-title { color: var(--color-orange); margin-bottom: 10px; font-family: var(--font-headings); }
.success-desc { color: #666; line-height: 1.5; }