/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales modernes et apaisantes */
    --primary-teal: #2D8A7D;           /* Vert-bleu profond et apaisant (plus vert) */
    --primary-light: #4AA89B;          /* Vert-bleu plus clair (plus vert) */
    --accent-sage: #9CAF88;            /* Vert sauge doux */
    --accent-rose: #E8B4B8;            /* Rose poudré délicat */
    --accent-coral: #F4A261;           /* Corail chaleureux */
    
    /* Neutres modernes */
    --neutral-50: #FAFAFA;             /* Blanc cassé très clair */
    --neutral-100: #F5F5F5;            /* Gris très clair */
    --neutral-200: #E5E5E5;            /* Gris clair */
    --neutral-300: #D4D4D4;            /* Gris moyen */
    --neutral-600: #525252;            /* Gris foncé */
    --neutral-800: #262626;            /* Gris très foncé */
    --neutral-900: #171717;            /* Presque noir */
    
    /* Couleurs de texte */
    --text-primary: #1F2937;           /* Texte principal */
    --text-secondary: #6B7280;         /* Texte secondaire */
    --text-muted: #9CA3AF;             /* Texte atténué */
    
    /* Couleurs d'arrière-plan */
    --bg-primary: #FFFFFF;             /* Blanc pur */
    --bg-secondary: #FAFAFA;           /* Blanc cassé */
    --bg-accent: #F0F9F8;              /* Bleu-vert très clair */
    
    /* Couleurs de bordure */
    --border-light: #E5E7EB;           /* Bordure claire */
    --border-medium: #D1D5DB;          /* Bordure moyenne */
    
    /* Ombres modernes */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.15s ease-in-out;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients modernes */
    --gradient-primary: linear-gradient(135deg, #2D8A7D 0%, #4AA89B 100%);
    --gradient-accent: linear-gradient(135deg, #E8B4B8 0%, #F4A261 100%);
    --gradient-soft: linear-gradient(135deg, #F0F9F8 0%, #FAFAFA 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45, 138, 125, 0.1) 0%, rgba(156, 175, 136, 0.1) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-weight: 400;
    font-size: 16px; /* Taille de base pour mobile */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation moderne */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container h2 {
    color: var(--primary-teal);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.logo-container span {
    color: var(--accent-sage);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-accent);
    transition: var(--transition-normal);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.hamburger:hover {
    background: rgba(45, 138, 125, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* Animation du hamburger */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section moderne */
.hero {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-soft);
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-sage);
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-primary);
    transition: var(--transition-normal);
}

.hero-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 320px;
    height: 320px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-placeholder i {
    font-size: 4.5rem;
    color: var(--bg-primary);
    z-index: 1;
    position: relative;
}

/* Sections générales modernes */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Section moderne */
.about {
    background: var(--bg-accent);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-sage), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-weight: 400;
}

.credentials {
    margin-top: 3rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.credential-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.credential-item i {
    color: var(--accent-sage);
    font-size: 1.4rem;
    width: 24px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-primary);
    transition: var(--transition-normal);
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Therapy Section moderne */
.therapy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.therapy-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.therapy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.therapy-card:hover::before {
    transform: scaleX(1);
}

.therapy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(45, 125, 125, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--primary-teal);
    z-index: 1;
    position: relative;
}

.therapy-card h3 {
    color: var(--primary-teal);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.therapy-card p {
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
}

/* Session Section moderne */
.session {
    background: var(--bg-accent);
    position: relative;
}

.session-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.session-info h3 {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.session-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    color: var(--primary-teal);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.step-content p {
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
}

/* Section Carte et localisation - AMÉLIORÉE */
.location-section {
    margin-bottom: 4rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    background: var(--gradient-soft);
}

/* Carte statique améliorée */
.map-static {
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 138, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 175, 136, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f0f9f8 0%, #fafafa 100%);
}

.map-placeholder {
    text-align: center;
    color: var(--primary-teal);
    padding: 2rem;
    max-width: 90%;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-sage);
    display: block;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Overlay de la carte amélioré */
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    max-width: 350px;
    z-index: 10;
    transition: var(--transition-normal);
}

.map-overlay:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.map-info h3 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info h3 i {
    color: var(--accent-sage);
    font-size: 1.1rem;
}

.map-info p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.map-info p i {
    color: var(--accent-sage);
    width: 16px;
    font-size: 0.9rem;
}

.map-info .btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.map-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-teal);
}

/* Practical Section moderne */
.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.practical-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.practical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.practical-card:hover::before {
    transform: scaleX(1);
}

.practical-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.practical-card h3 {
    color: var(--primary-teal);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.practical-card p {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

/* Contact Section moderne */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info p {
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    color: var(--accent-sage);
    font-size: 1.4rem;
    width: 24px;
}

.contact-form {
    background: var(--bg-accent);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-normal);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(45, 125, 125, 0.1);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer moderne */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-100);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(156, 175, 136, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--accent-sage);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--neutral-100);
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--accent-sage);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(156, 175, 136, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 400;
}

/* Responsive Design moderne - AMÉLIORÉ */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .about-content,
    .session-content,
    .contact-content {
        gap: 3rem;
    }
    
    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Carte tablette */
    .map-container {
        height: 350px;
    }
    
    .map-overlay {
        max-width: 320px;
        padding: 1.3rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px; /* Taille de base réduite pour mobile */
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Navigation mobile améliorée */
    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 70px; /* Hauteur réduite sur mobile */
    }

    .nav-logo {
        gap: 10px;
    }

    .logo-container h2 {
        font-size: 1.3rem;
    }

    .logo-container span {
        font-size: 0.7rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Ajusté à la nouvelle hauteur */
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        border-top: 1px solid var(--border-light);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
    }

    /* Hero Section mobile */
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    /* Photo hero mobile - FORCÉ */
    .hero .hero-image .hero-photo {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px !important;
        max-height: 200px !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    /* Sections générales mobile */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    /* About Section mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-photo {
        width: 200px !important;
        height: 200px !important;
    }
    
    .about-photo {
        width: 180px;
        height: 180px;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .image-placeholder i {
        font-size: 3rem;
    }
    
    .credentials {
        margin-top: 2rem;
    }
    
    .credential-item {
        padding: 0.8rem;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .credential-item i {
        font-size: 1.2rem;
    }

    /* Therapy Section mobile */
    .therapy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .therapy-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .therapy-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .therapy-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Session Section mobile */
    .session-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .session-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .step {
        padding: 1.2rem;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }

    /* Map Section mobile - CORRIGÉE */
    .map-container {
        height: auto;
        min-height: 280px;
        margin-bottom: 1.5rem;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
    }
    
    .map-static {
        flex: 1;
        min-height: 200px;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        max-width: none;
        margin: 0;
        transform: none;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        border-radius: 0 0 16px 16px;
        border-top: none;
    }
    
    .map-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .map-info .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        background: var(--gradient-primary);
        color: white;
        border: none;
        box-shadow: var(--shadow-sm);
    }
    
    .map-info .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* Practical Section mobile */
    .practical-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .practical-card {
        padding: 2rem 1.5rem;
    }
    
    .practical-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .practical-card p {
        font-size: 0.95rem;
    }

    /* Contact Section mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }

    /* Footer mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }

    /* Navigation très petit écran */
    .nav-container {
        height: 65px;
        padding: 0 12px;
    }

    .logo-container h2 {
        font-size: 1.1rem;
    }

    .logo-container span {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        top: 65px;
    }

    /* Hero Section très petit écran */
    .hero {
        padding: 100px 0 60px;
    }
    
    /* Photo hero très petit écran - FORCÉ */
    .hero .hero-image .hero-photo {
        width: 150px !important;
        height: 150px !important;
        max-width: 150px !important;
        max-height: 150px !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Cards très petit écran */
    .therapy-card,
    .practical-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }

    .hero-photo {
        width: 150px !important;
        height: 150px !important;
    }
    
    .about-photo {
        width: 130px;
        height: 130px;
    }

    .image-placeholder {
        width: 150px;
        height: 150px;
    }

    .image-placeholder i {
        font-size: 2.5rem;
    }

    /* Map très petit écran - CORRIGÉE */
    .map-container {
        height: auto;
        min-height: 240px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
    }
    
    .map-static {
        flex: 1;
        min-height: 160px;
    }
    
    .map-placeholder {
        padding: 1rem;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .map-overlay {
        padding: 1rem;
        margin: 0;
        transform: none;
        border-radius: 0 0 12px 12px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        border-top: none;
    }
    
    .map-info h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .map-info p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .map-info .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
        margin-top: 0.8rem;
        width: 100%;
        justify-content: center;
        background: var(--gradient-primary);
        color: white;
        border: none;
        box-shadow: var(--shadow-sm);
    }
    
    .map-info .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    
    /* Contact très petit écran */
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    /* Footer très petit écran */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Animations modernes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Mentions légales */
.mentions-legales {
    padding: 140px 0 100px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.mentions-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.mentions-content h1 {
    color: var(--primary-teal);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.mentions-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.mentions-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.mentions-section h2 {
    color: var(--primary-teal);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.mentions-section p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.mentions-section p:last-child {
    margin-bottom: 0;
}

.mentions-section strong {
    color: var(--primary-teal);
    font-weight: 600;
}

.mentions-section a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

.mentions-section a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link {
    color: var(--accent-sage);
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

/* Responsive pour les mentions légales */
@media (max-width: 768px) {
    .mentions-legales {
        padding: 120px 0 80px;
    }
    
    .mentions-legales .container {
        padding: 0 15px;
    }
    
    .mentions-content {
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 16px;
        max-width: none;
        width: 100%;
    }
    
    .mentions-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .mentions-section h2 {
        font-size: 1.2rem;
    }
    
    .mentions-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .mentions-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .mentions-legales .container {
        padding: 0 12px;
    }
    
    .mentions-content {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 12px;
        max-width: none;
        width: 100%;
    }
    
    .mentions-content h1 {
        font-size: 1.6rem;
    }
    
    .mentions-section h2 {
        font-size: 1.1rem;
    }
    
    .mentions-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}