/* ============================================
   CUPPING THÉRAPIE - DESIGN MÉDICAL
   Style professionnel, clinique et rassurant
   ============================================ */

/* CSS Variables - Clean Medical Palette */
:root {
    /* Colors - Navy blue professional */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-accent-primary: #1e3a5f;
    --color-accent-light: #3b5c85;
    /* Softer lighter navy, not electric blue */
    --color-accent-dark: #0f172a;
    --color-text-primary: #1e293b;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-border: rgba(30, 58, 95, 0.15);
    --color-overlay: rgba(15, 23, 42, 0.7);
    --color-glass: rgba(255, 255, 255, 0.95);
    --color-card-shadow: rgba(15, 23, 42, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--color-card-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.01em;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width var(--transition-medium);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--color-accent-primary);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.25);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-accent-primary);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
/* ============================================
   HERO SECTION - Clean Medical Style
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    padding-top: 80px;
}

.hero-bg,
.hero-image,
.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    padding: var(--spacing-md);
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-content::after {
    display: none;
}

.hero-decoration {
    width: 280px;
    height: 280px;
    background: url('images/hero-refined.webp') no-repeat center;
    background-size: contain;
    margin: 0 auto var(--spacing-sm);
    opacity: 0.95;
    animation: heroFadeIn 1.2s ease 0.1s forwards;
    /* Masque pour cacher les bords du carré gris */
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 70%);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 70%);
    mix-blend-mode: multiply;
}

.hero-decoration::before,
.hero-decoration::after {
    display: none;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent-primary);
    opacity: 0;
    animation: heroFadeIn 1.2s ease 0.4s forwards;
}

.hero-title span {
    display: block;
    font-size: 1em;
    color: var(--color-accent-primary);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeIn 1.2s ease 0.6s forwards;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-accent-primary);
    border: 1px solid var(--color-accent-light);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0;
    animation: heroFadeIn 1.2s ease 0.7s forwards;
}

.hero-actions {
    opacity: 0;
    animation: heroFadeIn 1.2s ease 0.8s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-accent-primary);
    border-radius: 12px;
    position: relative;
    opacity: 0.6;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--color-accent-primary);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    animation: scrollBounce 2s infinite;
}

/* Hero fade-in keyframe */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: var(--color-accent-primary);
    color: #ffffff;
    color: #ffffff;
    border-radius: var(--radius-sm);
}

@media (hover: hover) {
    .btn-primary:hover {
        background: var(--color-accent-light);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(26, 95, 122, 0.3);
    }
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Prevent color change on all interactive states */
/* Active = Feedback visuel (Bleu clair) */
.btn-primary:active {
    background-color: var(--color-accent-light) !important;
    transform: translateY(0);
    box-shadow: none;
}

/* Focus & Visited = Retour normale (Bleu foncé) */
.btn-primary:focus,
.btn-primary:visited,
.btn-primary:focus-visible {
    background-color: var(--color-accent-primary) !important;
    color: #ffffff !important;
    box-shadow: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-teal);
    margin-bottom: var(--spacing-xs);
    background: rgba(13, 148, 136, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: var(--color-accent-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   HISTOIRE SECTION
   ============================================ */
.histoire {
    background: var(--color-bg-secondary);
}

.histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.histoire-intro {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.histoire-intro strong {
    color: var(--color-accent-primary);
    font-weight: 600;
}

/* Timeline */
.histoire-timeline {
    position: relative;
    padding-left: 30px;
}

.histoire-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-accent-primary), var(--color-accent-teal));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-md);
    opacity: 1;
    transform: none;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    border: 3px solid var(--color-bg-secondary);
    box-shadow: 0 0 0 3px var(--color-accent-primary);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Image Frame */
.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px var(--color-card-shadow);
}

.image-frame::before {
    display: none;
}

.image-frame img {
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* ============================================
   TECHNIQUE SECTION
   ============================================ */
.technique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.technique-description p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.technique-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background: var(--color-bg-secondary);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--color-card-shadow);
    opacity: 1;
    transform: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    background: rgba(26, 95, 122, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   BIENFAITS SECTION
   ============================================ */
.bienfaits {
    background: var(--color-bg-tertiary);
}

.bienfaits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.bienfait-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px var(--color-card-shadow);
}

.bienfait-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-primary);
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.15);
}

.bienfait-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-accent-primary);
    background: rgba(26, 95, 122, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.bienfait-card h3 {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.bienfait-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   GALERIE SECTION
   ============================================ */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.galerie-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--color-card-shadow);
    opacity: 1;
    transform: none;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-medium);
}

.galerie-item:hover img {
    transform: scale(1.08);
}

.galerie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color var(--transition-medium);
}

.galerie-item:hover::after {
    border-color: var(--color-accent-primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--color-bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-info .section-tag,
.contact-info .section-title,
.contact-info .title-decoration {
    text-align: left;
    margin-left: 0;
}



.contact-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: var(--spacing-md) 0;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    opacity: 1;
    transform: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    color: var(--color-accent-primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

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

/* Tarif Box */
.tarif-box {
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.tarif-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.tarif-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    color: var(--color-text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-primary);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
}

.footer-seo {
    font-size: 0.75rem !important;
    color: var(--color-text-muted) !important;
    opacity: 0.6;
}

.seo-keyword {
    color: inherit;
}

/* ============================================
   ANIMATIONS - Smooth and professional
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for cards */
.bienfait-card.fade-in:nth-child(1) {
    transition-delay: 0s;
}

.bienfait-card.fade-in:nth-child(2) {
    transition-delay: 0.1s;
}

.bienfait-card.fade-in:nth-child(3) {
    transition-delay: 0.2s;
}

.bienfait-card.fade-in:nth-child(4) {
    transition-delay: 0.3s;
}

.bienfait-card.fade-in:nth-child(5) {
    transition-delay: 0.4s;
}

.bienfait-card.fade-in:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {

    .histoire-grid,
    .technique-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .histoire-image,
    .technique-image {
        order: -1;
    }

    .contact-image {
        display: none;
    }

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

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-md);
        padding: var(--spacing-xl) var(--spacing-lg);
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid var(--color-border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--color-text-primary);
        padding: 0.75rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }

    /* Mobile Menu Button Alignment */
    .nav-menu .cta-group {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }

    .nav-menu .nav-cta {
        height: 50px;
        /* Standardize specific mobile menu button height */
        display: flex;
        /* Ensure flex for centering */
        align-items: center;
        justify-content: center;
        padding: 0 20px !important;
        font-size: 1rem;
    }

    /* Force icon button to match in mobile menu, overriding the 40px global rule */
    .nav-menu .btn-icon {
        width: 50px !important;
        height: 50px !important;
    }

    /* Reuse 50px icon button from standard style, just ensure flex alignment works */


    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active .nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
        width: 30px;
        height: 24px;
        position: relative;
    }

    .nav-toggle span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-accent-primary);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        left: 0;
    }

    .nav-toggle span:nth-child(1) {
        top: 0;
    }

    .nav-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle span:nth-child(3) {
        bottom: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .nav-toggle.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .bienfaits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-brand p {
        max-width: 280px;
        margin: var(--spacing-xs) auto 0;
        line-height: 1.5;
    }

    .footer-seo {
        padding: 0 var(--spacing-sm);
        line-height: 1.6;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tarif-box {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }

    .contact-info .section-tag {
        display: table;
        /* Permet de centrer avec margin: auto tout en gardant la taille du contenu */
        margin: 0 auto var(--spacing-xs);
    }

    .contact-info .section-title,
    .contact-info .title-decoration {
        text-align: center;
        margin: 0 auto;
    }

    .contact-info .title-decoration {
        margin-bottom: var(--spacing-md);
    }

    /* Centre le bouton 'Appeler maintenant' sur mobile */
    .contact-info .btn-large {
        display: flex;
        width: 100%;
        justify-content: center;
        max-width: 300px;
        margin: var(--spacing-md) auto 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-lg) 0;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        margin-top: -100px;
    }

    .hero-decoration {
        width: 260px;
        height: 260px;
    }

    .scroll-indicator {
        bottom: 50px;
    }

    .scroll-indicator span {
        opacity: 1;
        border-color: var(--color-accent-primary);
    }

    .scroll-indicator span::after {
        background: var(--color-accent-primary);
    }
}

/* ============================================
   BOOKING MODAL STYLES
   ============================================ */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-modal.active .booking-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.close-modal:hover {
    color: var(--color-accent-primary);
}

.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-step.active {
    display: block;
}

.booking-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* Day Tabs */
.days-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: var(--spacing-md);
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    /* Firefox */
}

.days-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.day-tab {
    background: var(--color-bg-tertiary);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.day-tab.active {
    background: var(--color-accent-primary);
    color: #ffffff;
}

/* Slots Grid */
.slots-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: var(--spacing-md);
}

.slot-btn {
    background: #ffffff;
    border: 1px solid var(--color-border);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-accent-primary);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.slot-btn:hover {
    border-color: var(--color-accent-primary);
    background: var(--color-bg-secondary);
    transform: translateY(-2px);
}

/* Booking Note */
.booking-note {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}

.modal-header-note {
    margin-top: 10px;
    margin-bottom: 20px;
}

.booking-note a {
    color: var(--color-accent-primary);
    font-weight: 600;
}

/* Form Styles */
.selected-slot-display {
    background: var(--color-bg-tertiary);
    padding: 15px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    /* Prevent iOS zoom */
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.btn-back {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-content h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.success-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   WEEK NAVIGATION STYLES
   ============================================ */
.week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: var(--color-bg-secondary);
    padding: 10px;
    border-radius: var(--radius-sm);
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover:not(:disabled) {
    background: var(--color-bg-tertiary);
    color: var(--color-accent-primary);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#current-week-label {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

/* ============================================
   HERO ACTIONS & BUTTONS
   ============================================ */
.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    /* or flex-start based on design, centered for hero usually */
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    /* for mobile */
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--color-white);
    /* Assuming dark hero overlay */
    border: 2px solid var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Adjust for mobile */
/* Match text button height/alignment with icon button */
.hero-actions .btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    /* Adjust padding since height is fixed */
    box-sizing: border-box;
}

/* Adjust for mobile */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: row;
        /* Keep side by side */
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn {
        width: auto;
        /* Allow natural width */
        height: 40px;
        /* Match icon height */
        padding: 0 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   STANDARDIZED CTA BUTTONS
   ============================================ */
.cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    /* Matching standard button height approx */
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent-primary);
    /* Solid Blue */
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(30, 58, 95, 0.2);
}

.btn-icon:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 58, 95, 0.3);
}

.btn-icon svg {
    width: 22px;
    height: 22px;
}

/* Hero Specific Override: No overwrite needed as base style is now solid blue */

/* Adjustments */
@media (max-width: 480px) {
    .btn-icon {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   MODAL PRICE TAG
   ============================================ */
.modal-price-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-bg-secondary);
    color: var(--color-accent-primary);
    font-weight: 600;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 0.95rem;
    border: 1px solid var(--color-border);
}

/* ============================================
   CONTACT ALIGNMENT & MODAL FIXES
   ============================================ */
.contact-actions {
    justify-content: flex-start;
    /* Desktop: Left align */
    margin-top: 15px;
}

@media (max-width: 480px) {
    .contact-actions {
        justify-content: center;
        /* Mobile: Center align */
    }
}

.booking-note a {
    white-space: nowrap;
    /* Prevent phone number break */
    font-weight: 600;
}