/* --- VARIABLES & RESET --- */
:root {
    --primary-color: #8594CB; /* Bleu lavande */
    --primary-dark: #6a7ab0;
    --accent-color: #D9BA8B; /* Beige doré */
    --accent-dark: #c9a672;
    --secondary-color: #F4F1EA; /* Beige Crème */
    --text-color: #2D3142;
    --light-text: #FFFFFF;
    --bg-white: #FFFFFF;
    --shadow: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);
    --radius: 20px;
    --nav-height: 70px;
}

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

/* Fix pour éviter l'espace blanc sur mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Fix pour iOS Safari - empêcher le bounce scroll */
html.nav-open,
body.nav-open {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.container,
section,
.hero,
.about-grid,
.cards-container,
.process-steps,
.contact-container,
footer {
    max-width: 100%;
}

/* Gestion du overflow pour éviter les scrollbars pendant les animations */
section {
    overflow-x: hidden;
    overflow-y: visible;
}

.container {
    overflow: visible;
}

.cards-container,
.process-steps,
.contact-container,
.about-grid {
    overflow: visible;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Masquer les scrollbars horizontales qui pourraient apparaître */
html::-webkit-scrollbar-x,
body::-webkit-scrollbar-x,
section::-webkit-scrollbar-x {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: thin;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 0;
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

section {
    padding: 100px 20px;
    position: relative;
    overflow: visible;
}

/* Empêcher les scrollbars pendant les animations */
.container {
    overflow: visible;
}

/* --- NAVIGATION MOBILE --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Overlay sombre derrière le menu */
.nav-overlay {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    flex-direction: column;
    padding: 40px 30px 60px;
    gap: 5px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    will-change: transform;
}

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

.nav-link {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.nav-cta {
    margin-top: 20px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateX(0) scale(1.05);
}

/* --- BOUTON D'APPEL FLOTTANT --- */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(217, 186, 139, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover,
.floating-call-btn:focus {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(217, 186, 139, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(217, 186, 139, 0.5);
    }
    50% {
        box-shadow: 0 10px 30px rgba(217, 186, 139, 0.8), 0 0 0 10px rgba(217, 186, 139, 0.1);
    }
}

.mobile-call-btn {
    display: none;
}

.desktop-btn {
    display: inline-block;
}

/* --- DECORATIVE ELEMENTS --- */
.bg-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(80px);
}

.bg-shape-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--light-text);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(217, 186, 139, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 186, 139, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 30px rgba(133, 148, 203, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 15px 40px rgba(133, 148, 203, 0.6);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.2;
}

.section-title .accent-word {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation plus rapide pour les sections Déroulement, Tarifs et Contact */
#deroulement .reveal,
#tarifs .reveal,
#contact .reveal {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #F4F1EA 0%, #fff 50%, #F4F1EA 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.1;
    font-weight: 700;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

/* SVG Animations Hero (Desktop only) */
.hero-svg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.3s ease-out;
}

.hero-svg-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-svg-2 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 8%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-svg-3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation: rotate 20s linear infinite;
}

.hero-svg-4 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: float 12s ease-in-out infinite;
}

.hero-svg-5 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 5%;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Masquer les SVG sur mobile et tablette */
@media (max-width: 1024px) {
    .hero-svg {
        display: none;
    }
}

/* --- SVG ANIMATIONS POUR TOUTES LES SECTIONS --- */
.section-svg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

/* SVG Section Services */
.svg-services-1 {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 5%;
    animation: float 9s ease-in-out infinite;
}

.svg-services-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 8%;
    animation: rotate 18s linear infinite;
}

.svg-services-3 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 5%;
    animation: float 11s ease-in-out infinite reverse;
}

/* SVG Section Tarifs */
.svg-tarifs-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 6%;
    animation: float 10s ease-in-out infinite reverse;
}

.svg-tarifs-2 {
    width: 160px;
    height: 160px;
    top: 20%;
    right: 10%;
    animation: rotate 20s linear infinite reverse;
}

.svg-tarifs-3 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: 8%;
    animation: float 8s ease-in-out infinite;
}

/* SVG Footer */
.svg-footer-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation: float 12s ease-in-out infinite;
}

.svg-footer-2 {
    width: 130px;
    height: 130px;
    top: 50%;
    right: 10%;
    animation: float 9s ease-in-out infinite reverse;
}

.svg-footer-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 5%;
    animation: rotate 15s linear infinite;
}

/* Masquer les SVG de section sur mobile et tablette */
@media (max-width: 1024px) {
    .section-svg {
        display: none;
    }
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ABOUT --- */
#apropos {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius);
    z-index: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-badge {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.feature-badge:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-badge i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.feature-badge span {
    font-weight: 600;
    color: var(--text-color);
}

/* --- MON APPROCHE --- */
#approche {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-white) 100%);
}

.approche-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.approche-center {
    flex: 1;
    max-width: 650px;
}

.approche-text {
    max-width: 850px;
    margin: 40px auto 0;
    text-align: center;
}

.approche-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Blob images */
.approche-blob {
    flex-shrink: 0;
    width: 240px;
    height: 280px;
    overflow: hidden;
}

.approche-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approche-blob-left img {
    object-position: left center;
}

.approche-blob-left {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    transform: rotate(-4deg);
    align-self: flex-start;
    margin-top: 30px;
}

.approche-blob-right {
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    transform: rotate(4deg);
    align-self: flex-end;
    margin-bottom: 30px;
}

/* Responsive : blobs en mobile */
@media (max-width: 900px) {
    .approche-container {
        flex-direction: column;
    }

    .approche-blob {
        width: 200px;
        height: 230px;
    }

    .approche-blob-left {
        align-self: center;
        margin-left: 0;
    }

    .approche-blob-right {
        align-self: center;
        margin-right: 0;
    }
}

/* --- MOTIFS DE CONSULTATION --- */
#motifs {
    background: var(--bg-white);
}

.motifs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.motif-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    flex: 1 1 220px;
    max-width: 250px;
}

.motif-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.motif-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.motif-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.motif-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.motifs-conclusion {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 1.05rem;
    font-style: italic;
}

.motifs-conclusion i {
    color: var(--accent-color);
    margin-right: 6px;
}

/* --- SERVICES / INDICATIONS --- */
#services {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-white) 100%);
    position: relative;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

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

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.card:nth-child(odd) .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.card:nth-child(even) .card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.card p {
    color: #666;
    line-height: 1.8;
}

/* --- PROCESS --- */
#deroulement {
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
    padding: 40px 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: bold;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Playfair Display', serif;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.7;
}

.step-note {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-top: 30px;
    font-style: italic;
}

.step-note i {
    margin-right: 6px;
    color: #bbb;
}

/* --- PRICING --- */
#tarifs {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--secondary-color) 100%);
}

.price-card {
    background: white;
    border: 3px solid transparent;
    border-radius: var(--radius);
    padding: 60px 50px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.price-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0;
    font-family: 'Playfair Display', serif;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.payment-methods {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #777;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* --- CONTACT & FOOTER --- */
#contact {
    background: var(--bg-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px;
    border-radius: var(--radius);
    color: white;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    width: 40px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a {
    color: white;
}

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

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 500px;
}

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

footer {
    background: linear-gradient(135deg, #2D3142 0%, #1a1c28 100%);
    color: #fff;
    padding: 80px 20px 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s;
}

.footer-section a.link-footer {
    display: inline;
    margin-bottom: 0;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-section a.link-footer:hover {
    padding-left: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: #999;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- ACCESSIBILITÉ --- */
/* Focus visible pour navigation au clavier */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) a:focus {
    outline: none;
}

body.user-is-tabbing button:focus,
body.user-is-tabbing a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to content link pour accessibilité */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* Amélioration contraste texte */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000000;
    }
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-call-btn {
        animation: none;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .mobile-nav {
        display: flex;
    }

    body {
        padding-top: var(--nav-height);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .step::after {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

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

    .card:nth-child(5) {
        grid-column: 1 / 2;
    }

    .card:nth-child(6) {
        grid-column: 2 / 3;
    }
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }

    .floating-call-btn {
        display: flex;
    }

    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .desktop-btn {
        display: none;
    }

    body {
        padding-top: var(--nav-height);
    }

    /* Désactivation des animations reveal sur mobile */
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in {
        opacity: 1 !important;
        animation: none !important;
    }

    .hero {
        min-height: calc(100vh - var(--nav-height));
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-container::before {
        top: -10px;
        left: -10px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .card:nth-child(5),
    .card:nth-child(6) {
        grid-column: auto;
    }

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

    .btn {
        width: 100%;
        padding: 16px 35px;
        min-height: 50px;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 35px;
        text-align: center;
    }

    .contact-info h3 {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }

    .map-container {
        width: 100%;
        margin: 0 auto;
    }

    .price {
        font-size: 3.5rem;
    }

    /* Amélioration zones tactiles */
    .card {
        padding: 35px 25px;
    }

    .feature-badge {
        padding: 18px;
        min-height: 60px;
    }

    .contact-item {
        padding: 18px;
        min-height: 70px;
    }

    /* Optimisation texte mobile */
    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Fix espace blanc mobile */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 80px 20px;
    }

    .container {
        width: 100%;
        padding: 0 15px;
        overflow: visible;
    }

    .hero::before {
        display: none;
    }

    .bg-shape-1,
    .bg-shape-2 {
        display: none;
    }

    /* Carte prix mobile */
    .price-card {
        padding: 40px 30px;
    }

    /* Map container */
    .map-container {
        min-height: 350px;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }

    .mobile-nav {
        padding: 0 15px;
        height: 60px;
    }

    .nav-brand {
        font-size: 1.3rem;
    }

    .floating-call-btn {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }

    /* Désactivation complète des animations sur petits écrans */
    .reveal,
    .fade-in,
    .floating {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    /* Garder une animation subtile pour le bouton d'appel */
    .floating-call-btn {
        animation: pulse 2s infinite !important;
    }

    section {
        padding: 60px 15px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .container {
        overflow: visible;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 80px;
        height: 4px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-badge {
        padding: 15px;
    }

    .container {
        padding: 0 10px;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Cards mobile */
    .cards-container {
        gap: 25px;
    }

    .card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Process mobile */
    .step {
        padding: 30px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Prix mobile */
    .price-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 3rem;
    }

    .price-features li {
        font-size: 0.9rem;
    }

    /* Contact mobile */
    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        width: 35px;
    }

    /* Footer mobile */
    .footer-content {
        gap: 35px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .link-footer {
        color: var(--accent-color) !important;
    }
}
