/* ===== CSS Variables ===== */
:root {
    /* Emma's Color Palette - ONLY 3 COLORS */
    --color-primary: #2F4446;
    --color-secondary: #5E3A4D;
    --color-tertiary: #FFFBF1;
    
    /* Text colors */
    --color-text: #FFFFFF;
    --color-text-dark: #2F4446;
    --color-text-light: #5E3A4D;
    
    /* Background colors */
    --color-bg: #2F4446;
    --color-bg-light: #FFFBF1;
    --color-bg-secondary: #5E3A4D;
    
    /* Border colors */
    --color-border: #5E3A4D;
    --color-border-light: #FFFBF1;
    
    /* Status colors */
    --color-success: #5E3A4D;
    --color-warning: #5E3A4D;
    --color-error: #5E3A4D;
    
    /* Neutral colors */
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* Cream colors (to replace missing variables) */
    --color-cream: #FFFBF1;
    --color-cream-light: #FFFBF1;
    --color-cream-dark: #F5F0E8;
    --color-bg-alt: #FFFBF1;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', 'Inter', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Font sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --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);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary);
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ===== Accessibility ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: var(--z-tooltip);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* ===== Mobile Hero Layout ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 var(--spacing-4xl) !important;
    }
    
    .hero__content--split {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero__text {
        order: 1;
        text-align: left !important;
        margin-top: 0 !important;
    }
    
    .hero__image {
        order: 2;
        margin: var(--spacing-sm) 0 !important;
    }
    
    .hero__text .hero__title {
        order: 1;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        font-size: var(--text-3xl) !important;
    }
    
    .hero__location-banner {
        margin-top: var(--spacing-sm) !important;
        margin-bottom: 0 !important;
    }
    
    .hero__text .hero__subtitle {
        order: 3;
        margin-top: 0 !important;
        margin-bottom: var(--spacing-sm) !important;
        font-size: var(--text-lg) !important;
    }
    
    .hero__text .stats-section {
        order: 4;
    }
    
    .hero__text .hero__actions {
        order: 5;
    }
    
    .hero__text .hero__cabinet {
        order: 6;
    }
    
    .hero__actions {
        justify-content: flex-start !important;
        flex-direction: column !important;
        gap: var(--spacing-xs) !important;
    }
    
    .hero__actions .btn {
        font-size: var(--text-base) !important;
        padding: var(--spacing-md) var(--spacing-lg) !important;
        border-radius: var(--radius-lg) !important;
        border-width: 1px !important;
    }
    
    /* Align all text to the left on mobile */
    .section__header {
        text-align: left !important;
    }
    
    .expertise-item {
        text-align: left !important;
    }
    
    .motif-card {
        text-align: left !important;
    }
    
    .benefits-header {
        text-align: center !important;
        margin-bottom: var(--spacing-xs) !important;
    }
    
    .step-card {
        text-align: left !important;
    }
    
    .about-content {
        text-align: left !important;
    }
    
    .about-bubbles {
        align-items: flex-start !important;
    }
    
    .bubble {
        text-align: left !important;
    }
}

@media (max-width: 400px) {
    .hero__text .hero__title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    .title__line {
        font-size: 1.75rem !important;
    }
}

/* ===== Mobile About Section Layout ===== */
@media (max-width: 768px) {
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-cta {
        display: block !important;
        margin-top: var(--spacing-lg) !important;
        text-align: left !important;
    }
    
    .about-cta .btn {
        width: 100% !important;
        justify-content: center !important;
        order: 2;
    }
}

/* ===== Mobile Benefits Section Layout ===== */
@media (max-width: 768px) {
    .benefits-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .benefits-hero {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    .benefits-header {
        order: -1;
        margin-bottom: var(--spacing-md);
    }
    
    .benefits-image {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .benefits-list {
        order: 2;
    }
    
    .benefits-cta {
        order: 3;
    }
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: all 0.3s ease;
}

.header__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 251, 241, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
}

.nav {
    position: relative;
    padding: var(--spacing-md) 0;
}

.nav__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav__logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-lg);
    color: var(--color-text-dark);
    transform: scale(1.2);
    transform-origin: left center;
    margin-left: 40px;
}

.logo__icon {
    font-size: var(--text-2xl);
}

.logo__text {
    color: var(--color-text-dark);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-extrabold);
}

.logo__specialty {
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    font-weight: var(--font-weight-medium);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav__link {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-dark);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav__link:hover {
    color: var(--color-secondary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm);
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    transition: all 0.3s ease;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-base);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.hero .btn--primary {
    background: #2F4446 !important;
    color: var(--color-text) !important;
    border: 2px solid #2F4446 !important;
}

.hero .btn--primary:hover {
    background: var(--color-bg) !important;
    color: var(--color-text) !important;
    border-color: var(--color-bg) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero .btn--secondary {
    background: transparent;
    color: #5E3A4D;
    border-color: #5E3A4D;
}

.hero .btn--secondary:hover {
    background: #5E3A4D;
    color: var(--color-text);
    border-color: #5E3A4D;
}

.header .btn--primary {
    background: var(--color-bg) !important;
    color: var(--color-cream) !important;
}

.header .btn--primary:hover {
    background: var(--color-bg-alt) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--color-cream);
    border-color: var(--color-cream);
}

.btn--secondary:hover {
    background: var(--color-cream);
    color: var(--color-bg);
}

.btn--large {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--text-lg);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-4xl);
    overflow: hidden;
    background: var(--color-bg-light);
}

.hero__separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-bg);
    z-index: 2;
}

.section__separator {
    width: 100%;
    height: 3px;
    background: #000000;
}

.section__separator-white {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
}


.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(47, 68, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(47, 68, 70, 0.1) 0%, transparent 50%);
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero__content--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: flex-start;
    text-align: left;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero__location-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: #2F4446;
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-bottom: var(--spacing-md);
}

.hero__image {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: -var(--spacing-xl);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 650px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    top: 5px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--color-secondary);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.hero__stats-badge {
    position: absolute;
    bottom: 5px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(47, 68, 70, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.badge-highlight {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
}

.badge__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__title {
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-secondary);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
    color: #000000;
    line-height: 1.2;
}

.title__line {
    display: block;
    font-size: var(--text-4xl);
    color: #000000;
    font-weight: var(--font-weight-extrabold);
}

@media (min-width: 768px) {
    .title__line {
        font-size: var(--text-5xl);
    }
}

.title__line--accent {
    color: #000000;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: #000000;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===== Stats Section ===== */
.stats-section {
    margin: var(--spacing-md) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-md);
    max-width: 500px;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-bg);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--color-bg);
    font-weight: var(--font-weight-medium);
}

/* ===== Sections ===== */
.section {
    padding: var(--spacing-2xl) 0;
}

.section--alt {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-light);
}

.section--chocolate {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg);
}

.section__subtitle {
    color: var(--color-text-dark);
}

.section--alt .section__title,
.section--alt .section__subtitle {
    color: var(--color-bg);
}

.section--alt .btn--primary {
    background: var(--color-bg) !important;
    color: var(--color-cream) !important;
}

.section--alt .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section--alt .btn--secondary {
    background: transparent;
    color: var(--color-bg);
    border-color: var(--color-bg);
}

.section--alt .btn--secondary:hover {
    background: var(--color-bg);
    color: var(--color-cream);
}

.section--alt .expertise-item,
.section--alt .motif-item,
.section--alt .approach-item,
.section--alt .benefit-card,
.section--alt .step,
.section--alt .review,
.section--alt .info-card,
.section--alt .form-card {
    background: rgba(255, 251, 241, 0.9);
    color: var(--color-text-dark);
}

.section--alt .expertise-item h3,
.section--alt .motif-content h3,
.section--alt .approach-item h3,
.section--alt .benefit-card h3,
.section--alt .step__content h3,
.section--alt .info-card h3,
.section--alt .form-card h3 {
    color: var(--color-text-dark);
}

.section--alt .expertise-item p,
.section--alt .motif-content p,
.section--alt .approach-item p,
.section--alt .benefit-card p,
.section--alt .step__content p,
.section--alt .info-card p,
.section--alt .review__text,
.section--alt .review__author {
    color: var(--color-text-dark);
}

.section--alt .motif-icon,
.section--alt .approach-icon {
    background: var(--color-cream-dark);
}

.section--alt .video-placeholder {
    background: var(--color-cream-dark);
}

.section--alt .video-placeholder:hover {
    background: var(--color-cream-light);
}

.section--alt .video-placeholder p {
    color: var(--color-bg);
}

.section--alt .form-group input,
.section--alt .form-group textarea {
    background: var(--color-cream-dark);
    color: var(--color-bg);
}

.section--alt .form-group label {
    color: var(--color-bg);
}

.section--chocolate .section__title,
.section--chocolate .section__subtitle {
    color: var(--color-cream);
}

.section--chocolate .btn--primary {
    background: var(--color-cream);
    color: var(--color-bg);
}

.section--chocolate .btn--primary:hover {
    background: var(--color-cream-dark);
}

.section--chocolate .btn--secondary {
    background: transparent;
    color: var(--color-cream);
    border-color: var(--color-cream);
}

.section--chocolate .btn--secondary:hover {
    background: var(--color-cream);
    color: var(--color-bg);
}

.section--chocolate .expertise-item,
.section--chocolate .motif-item,
.section--chocolate .approach-item,
.section--chocolate .benefit-card,
.section--chocolate .step,
.section--chocolate .review,
.section--chocolate .info-card,
.section--chocolate .form-card {
    background: #2F4446;
    color: #FBF0E9;
}

.section--chocolate .expertise-item h3,
.section--chocolate .motif-content h3,
.section--chocolate .approach-item h3,
.section--chocolate .benefit-card h3,
.section--chocolate .step__content h3,
.section--chocolate .info-card h3,
.section--chocolate .form-card h3 {
    color: #FBF0E9;
}

.section--chocolate .expertise-item p,
.section--chocolate .motif-content p,
.section--chocolate .approach-item p,
.section--chocolate .benefit-card p,
.section--chocolate .step__content p,
.section--chocolate .info-card p,
.section--chocolate .review__text,
.section--chocolate .review__author {
    color: #FBF0E9;
}

.section--chocolate .motif-icon,
.section--chocolate .approach-icon {
    background: rgba(94, 58, 77, 0.8);
}

.section--chocolate .video-placeholder {
    background: rgba(94, 58, 77, 0.8);
}

.section--chocolate .video-placeholder:hover {
    background: rgba(94, 58, 77, 0.8);
}

.section--chocolate .video-placeholder p {
    color: var(--color-cream);
}

.section--chocolate .form-group input,
.section--chocolate .form-group textarea {
    background: rgba(94, 58, 77, 0.8);
    color: var(--color-cream);
}

.section--chocolate .form-group label {
    color: var(--color-cream);
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section--alt .section__header {
    margin-bottom: var(--spacing-md);
}

.section--alt .section__title-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-bg);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-cream) !important;
    text-transform: none;
    letter-spacing: 1px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section--chocolate .section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section--chocolate .section__title-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 251, 241, 0.15);
    border: 1px solid rgba(255, 251, 241, 0.3);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-cream);
    text-transform: none;
    letter-spacing: 1px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section--chocolate .section__title,
.section--chocolate .section__subtitle {
    color: var(--color-cream);
}

/* Style spécifique pour la section À propos uniquement */
#a-propos.section--chocolate .section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#a-propos.section--chocolate .section__title-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 251, 241, 0.15);
    border: 1px solid rgba(255, 251, 241, 0.3);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-cream);
    text-transform: none;
    letter-spacing: 1px;
    margin: 0 auto var(--spacing-lg) auto;
}

#a-propos.section--chocolate .section__title {
    color: #FBF0E9;
    text-align: left;
    margin: 0 0 var(--spacing-lg) 0;
}

/* Contenu de la section À propos aligné à gauche */
#a-propos .about-grid {
    text-align: left;
}

.hero__title {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.section__title {
    font-family: var(--font-secondary);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section__title {
        font-size: var(--text-5xl);
    }
}

/* ===== Content with Image ===== */
.content-with-image {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.content-with-image--right {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: center;
}

.content-with-image--left {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: center;
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
    min-width: 0;
}

.image-block {
    flex: 1.5;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Image spécifique pour la section motifs - plus grande */
#motifs .section-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Image spécifique pour la section approche - plus grande */
#approche .section-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero__content--split {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: left !important;
    }
    
    .hero__text {
        align-items: flex-start !important;
    }
    
    .hero__actions {
        justify-content: flex-start !important;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .content-with-image {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .content-with-image--left {
        flex-direction: column;
    }
}

/* ===== Expertise Grid ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.expertise-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(47, 68, 70, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-cream);
}

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.expertise-icon {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-cream);
}

.expertise-item h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-cream);
    margin-bottom: var(--spacing-sm);
}

.expertise-item p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* ===== Motifs Section ===== */
.motifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: 0 0 var(--spacing-lg);
}

.motif-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 251, 241, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-dark);
}

.motif-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.motif-card .motif-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-lg);
    color: var(--color-secondary);
}

.motif-card h3 {
    font-size: var(--text-2xl) !important;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md) !important;
    line-height: 1.3;
}

.motif-card p {
    color: var(--color-text-dark);
    font-size: var(--text-base);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .motif-item {
        flex-direction: column;
        text-align: center;
    }
    
    .motif-icon {
        margin: 0 auto;
        transform: translateY(-2px);
    }
    
    #motifs .section__title {
        font-size: var(--text-3xl) !important;
        line-height: 1.3 !important;
        max-width: 340px !important;
        margin: 0 0 var(--spacing-lg) 0 !important;
        text-align: left !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* ===== Approach Features ===== */
.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 251, 241, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
}

.approach-icon {
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.approach-item h3 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-dark);
    line-height: 1.4;
}

.approach-conclusion {
    font-size: var(--text-lg);
    color: var(--color-text-dark);
    font-weight: var(--font-weight-medium);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    border-radius: var(--radius-lg);
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Benefits Hero ===== */
.benefits-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    padding-left: var(--spacing-xl);
    align-items: flex-start;
}

.benefits-header {
    text-align: left;
}

.benefits-title {
    font-family: var(--font-secondary);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-xs) !important;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: var(--text-lg);
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-left: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: #FBF0E9;
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--color-text-dark);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

.benefits-cta {
    margin-top: var(--spacing-lg);
}

.benefits-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .benefits-hero {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .benefits-content {
        padding-left: 0;
    }
    
    .benefits-header {
        text-align: center !important;
        margin: 0 auto var(--spacing-lg) auto !important;
        max-width: 800px !important;
    }
    
    .benefits-title {
        font-size: var(--text-3xl);
        font-family: var(--font-secondary);
        font-weight: var(--font-weight-extrabold);
        text-align: left !important;
        margin: 0 0 var(--spacing-lg) 0;
        line-height: 1.2;
    }
    
    .benefits-list {
        margin-left: -4px;
    }
    
    .benefits-img {
        max-width: 100%;
    }
    
    /* Alignement des puces sur mobile */
    .benefit-item {
        align-items: flex-start;
        text-align: left;
    }
    
    .benefit-check {
        margin-top: 2px;
        flex-shrink: 0;
        background: var(--color-secondary) !important;
    }
    
    .benefit-item span {
        display: block;
        line-height: 1.5;
        padding-left: 0;
        margin-left: 0;
        text-indent: 0;
        margin-bottom: var(--spacing-sm);
    }
    
    .benefit-item:last-child span {
        margin-bottom: 0;
    }
}

.text-center {
    text-align: center;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-content p {
    color: #FBF0E9;
    font-size: var(--text-base);
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.about-info-grid .info-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - var(--spacing-sm)/2);
}

.about-info-grid .info-card {
    text-align: center;
    padding: var(--spacing-sm);
    background: transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(251, 240, 233, 0.3) !important;
    transition: transform 0.3s ease;
    color: #FBF0E9;
}

.about-info-grid .info-card:hover {
    transform: translateY(-2px);
}

.about-info-grid .info-icon {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-xs);
    color: #FBF0E9;
}

.about-info-grid .info-card h3 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: #FBF0E9;
    margin-bottom: var(--spacing-xs);
}

.about-info-grid .info-card p {
    color: #FFF5E1;
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.about-cta {
    margin-top: var(--spacing-md);
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-md);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

/* ===== Diplômes Dropdown ===== */
.diplomes-dropdown {
    width: 100%;
    max-width: 400px;
}

.diplomes-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 2px solid rgba(251, 240, 233, 0.3) !important;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: #FBF0E9;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.diplomes-toggle:hover {
    background: rgba(251, 240, 233, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.diplomes-toggle svg {
    transition: transform 0.3s ease;
}

.diplomes-toggle.active svg {
    transform: rotate(180deg);
}

.diplomes-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-sm);
}

.diplomes-content.active {
    max-height: 400px;
    overflow-y: auto;
    padding: var(--spacing-md);
    background: rgba(251, 240, 233, 0.05);
    border: 2px solid rgba(251, 240, 233, 0.2) !important;
    border-radius: var(--radius-lg);
}

.diplomes-section {
    margin-bottom: var(--spacing-lg);
}

.diplomes-section:last-child {
    margin-bottom: 0;
}

.diplomes-section h4 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: #FBF0E9;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(251, 240, 233, 0.2);
}

.diplome-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(251, 240, 233, 0.1);
}

.diplome-item:last-child {
    border-bottom: none;
}

.diplome-title {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: #FBF0E9;
    line-height: 1.3;
}

.diplome-school {
    font-size: var(--text-xs);
    color: #FFF5E1;
    font-style: italic;
}

.diplome-year {
    font-size: var(--text-xs);
    color: #FFF5E1;
    font-weight: var(--font-weight-semibold);
    align-self: flex-start;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .about-info-grid .info-card {
        border: 2px solid var(--color-secondary) !important;
    }
    
    .about-img {
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .about-cta {
        margin-top: var(--spacing-md);
        text-align: left !important;
    }
    
    /* Force le bouton à gauche même si le parent est centré */
    .about-cta .btn {
        justify-content: flex-start !important;
        text-align: left !important;
        display: inline-flex !important;
        width: auto !important;
    }
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.step-card {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: #FFFBF1;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-dark);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #2F4446;
    color: white;
    border-radius: 50%;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-xl);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.step-content p {
    color: var(--color-text-dark);
    font-size: var(--text-base);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: left;
        gap: var(--spacing-md);
        align-items: flex-start;
        color: var(--color-text-dark);
    }
    
    .step-number {
        margin: 0 0 var(--spacing-md) 0;
        background: #2F4446 !important;
    }
}

/* ===== Cabinet Card ===== */
.hero__cabinet {
    margin-top: var(--spacing-lg);
    width: 100%;
}

.cabinet-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.cabinet-link:hover {
    transform: translateY(-2px);
}

.cabinet-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-pine-green);
    transition: all 0.3s ease;
}

.cabinet-card:hover {
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 1);
}

.cabinet-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.cabinet-info {
    flex: 1;
    color: #000000;
}

.cabinet-info h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
    color: #000000;
}

.cabinet-info p {
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    color: #000000;
}

.hero__cabinet .cabinet-cta {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-pine-green);
    transition: color 0.3s ease;
}

.hero__cabinet .cabinet-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

@media (max-width: 768px) {
    .hero__text {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero__actions {
        order: 1;
    }
    
    .hero__cabinet {
        margin-top: var(--spacing-md);
        width: 100%;
        order: 2;
    }
    
    .cabinet-link {
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.3s ease;
    }

    .cabinet-link:hover {
        transform: translateY(-2px);
    }

    .cabinet-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--radius-lg);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        border: 2px solid var(--color-pine-green);
        transition: all 0.3s ease;
    }

    .cabinet-card:hover {
        box-shadow: var(--shadow-xl);
        background: rgba(255, 255, 255, 1);
    }

    .cabinet-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: var(--radius-md);
        flex-shrink: 0;
    }

    .cabinet-info {
        flex: 1;
        color: #000000;
        text-align: left;
    }

    .cabinet-info h4 {
        font-size: var(--text-lg);
        font-weight: var(--font-weight-semibold);
        margin-bottom: var(--spacing-xs);
        color: #000000;
    }

    .cabinet-info p {
        font-size: var(--text-sm);
        margin-bottom: var(--spacing-sm);
        line-height: 1.4;
        color: #000000;
    }

    .hero__cabinet .cabinet-cta {
        font-size: var(--text-sm);
        font-weight: var(--font-weight-semibold);
        color: var(--color-pine-green);
        display: inline-flex;
        align-items: center;
        gap: var(--spacing-xs);
    }
}

/* ===== Reviews Carousel ===== */
.reviews-carousel {
    margin: var(--spacing-2xl) 0;
}

@media (max-width: 768px) {
    .reviews-carousel {
        margin: var(--spacing-lg) 0;
    }
    
    .google-review-img {
        max-height: 450px !important;
    }
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    overflow: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 251, 241, 0.9);
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn--prev {
    left: 10px;
}

.carousel-btn--next {
    right: 10px;
}

.carousel-track {
    display: block;
    transition: transform 0.3s ease;
    width: 100%;
}

.review-card {
    display: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card.active {
    display: block;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.review-stars {
    color: #f39c12;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
}

.review-date {
    color: #7f8c8d;
    font-size: var(--text-sm);
}

.review-text {
    color: #2c3e50;
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.review-google-image {
    margin: var(--spacing-md) 0;
    text-align: center;
}

.google-review-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    display: block;
}

.google-review-img[src*="avis%204"] {
    object-fit: contain;
    max-height: 220px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: var(--font-weight-semibold);
    color: #2c3e50;
    font-size: var(--text-base);
}

.author-info {
    color: #7f8c8d;
    font-size: var(--text-sm);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #3E2723;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3E2723;
}

.indicator:hover {
    background: rgba(62, 39, 35, 0.3);
}

.google-reviews-link {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.google-reviews-link .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .carousel-container {
        gap: var(--spacing-md);
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        z-index: 10;
    }
    
    .carousel-btn--prev {
        left: 0px;
    }
    
    .carousel-btn--next {
        right: 0px;
    }
    
    .review-card {
        flex: 0 0 280px;
        padding: var(--spacing-lg);
    }
    
    .carousel-track {
        gap: var(--spacing-md);
    }
}

/* ===== Reviews ===== */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.review {
    padding: var(--spacing-xl);
    background: rgba(255, 251, 241, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
}

.review__stars {
    color: #fbbf24;
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-md);
}

.review__text {
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.review__author {
    color: var(--color-secondary);
    font-weight: var(--font-weight-medium);
    text-align: right;
}

/* ===== Video Testimonial ===== */
.video-testimonial {
    margin-top: var(--spacing-xl);
}

.video-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.testimonial-video {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.testimonial-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.video-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.section--alt .video-title {
    color: var(--color-text-dark);
}

.section--chocolate .video-title {
    color: #FBF0E9;
}

.video-placeholder {
    background: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: var(--color-bg-light);
    border-color: var(--color-primary);
}

.video-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-md);
}

.video-placeholder p {
    color: var(--color-text-dark);
}

.video-duration {
    color: var(--color-secondary);
    font-size: var(--text-sm);
}

/* ===== FAQ Section ===== */

.faq-card {
    background: transparent;
    border: 2px solid rgba(251, 240, 233, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.faq-card h3 {
    color: #FBF0E9;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    border-bottom: 1px solid rgba(251, 240, 233, 0.1);
    padding-bottom: var(--spacing-md);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: var(--spacing-md);
    background: rgba(251, 240, 233, 0.05);
    border: 2px solid rgba(251, 240, 233, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(251, 240, 233, 0.1);
    border-color: rgba(251, 240, 233, 0.4);
}

.faq-question span {
    color: #FBF0E9;
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    flex: 1;
}

.faq-question svg {
    color: #FBF0E9;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .faq-question {
        margin: 0 var(--spacing-md) !important;
        max-width: calc(100% - var(--spacing-lg)) !important;
    }
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: var(--spacing-md);
}

.faq-answer p {
    color: #FFF5E1;
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 0;
}

/* ===== Modern Bubbles ===== */
.about-bubbles {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.bubble {
    display: flex;
    align-items: center;
    background: rgba(251, 240, 233, 0.1);
    border: 2px solid rgba(251, 240, 233, 0.2);
    border-radius: 50px;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bubble:hover {
    transform: translateY(-2px);
    background: rgba(251, 240, 233, 0.15);
    border-color: rgba(251, 240, 233, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bubble-icon {
    font-size: var(--text-2xl);
    margin-right: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.bubble-content h3 {
    color: #FBF0E9;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 var(--spacing-xs) 0;
}

.bubble-content p {
    color: #FFF5E1;
    font-size: var(--text-sm);
    margin: 0;
}

@media (max-width: 768px) {
    .about-bubbles {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }
    
    .bubble {
        padding: var(--spacing-md);
        align-self: flex-start;
    }
    
    .bubble-icon {
        background: var(--color-pine-green) !important;
    }
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    padding: var(--spacing-lg);
    background: rgba(255, 251, 241, 0.9);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-secondary);
    transition: all 0.3s ease;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border-light);
}

.info-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: #FBF0E9;
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: #FBF0E9;
    line-height: 1.6;
}

.info-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.info-card-link:hover .info-card {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    align-items: flex-start;
}

.form-card {
    width: 100%;
    padding: var(--spacing-xl);
    background: rgba(255, 251, 241, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
}

.form-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--text-base);
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(94, 58, 77, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        display: flex;
        flex-direction: column;
    }
    
    .contact-info {
        order: 2;
    }
    
    .faq-section {
        order: 1;
    }
    
    .map-section {
        order: 3;
        margin-top: var(--spacing-xl) !important;
    }
    
    /* Force la réorganisation de toute la section contact */
    #contact.section--chocolate .container {
        display: flex !important;
        flex-direction: column !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    #contact.section--chocolate .section__header {
        order: 0 !important;
    }
    
    #contact.section--chocolate .contact-grid {
        order: 1 !important;
    }
    
    #contact.section--chocolate .map-section {
        order: 2 !important;
    }
}

/* ===== Map Section ===== */
.map-section {
    margin-top: var(--spacing-2xl);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer__section h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
}

.footer__section p {
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer__section ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__section ul li a {
    color: var(--color-text-dark);
    transition: color 0.2s ease;
}

.footer__section ul li a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-dark);
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--color-secondary);
}

.footer__bottom {
    border-top: 1px solid var(--color-border-light);
    padding-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer__bottom p {
    color: var(--color-text-dark);
}

.footer__links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__links a {
    color: var(--color-text-dark);
    font-size: var(--text-sm);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__links {
        justify-content: center;
    }
}

/* ===== Mobile Menu ===== */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    /* Header mobile plus fin et caché au scroll */
    .nav {
        padding: var(--spacing-sm) 0;
    }
    
    .header.header--hidden {
        transform: translateY(-100%);
    }
    
    /* Bouton prendre rendez-vous plus petit sur mobile */
    .nav__actions .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--text-sm);
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-2xl);
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: var(--z-modal);
    }
    
    .nav__menu--open {
        right: 0;
    }
    
    .nav__toggle--open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle--open span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle--open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-text-light);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-bg-warm);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
