/* ================================================
   Elsa Beauté - Design System Premium
   Spa Provençal | Esthéticienne Bio
   ================================================ */

/* ================================================
   CSS Variables
   ================================================ */
:root {
    /* Colors - Lavender Palette */
    --lavande-clair: #E8E0F0;
    --lavande: #C4B5D6;
    --lavande-fonce: #9B8BB4;
    
    /* Colors - Sage Green */
    --vert-sauge: #A8B89E;
    --vert-sauge-fonce: #8A9A7E;
    
    /* Colors - Rose Powder */
    --rose-poudre: #F0D9E0;
    --rose-poudre-fonce: #E0B8C4;
    
    /* Colors - Gold Accents */
    --or-doux: #D4A853;
    --or: #B8943F;
    --or-fonce: #9A7B32;
    
    /* Neutrals */
    --blanc-creme: #FDFBF7;
    --blanc: #FFFFFF;
    --gris-chaud: #8A8279;
    --gris-fonce: #4A4540;
    --brun-terre: #6B5D4D;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 2rem;
    --font-4xl: 2.5rem;
    --font-5xl: 3.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 93, 77, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 93, 77, 0.1);
    --shadow-lg: 0 8px 32px rgba(107, 93, 77, 0.12);
    --shadow-xl: 0 16px 48px rgba(107, 93, 77, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gris-fonce);
    background-color: var(--blanc-creme);
    overflow-x: hidden;
    -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.3s var(--ease-out);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ================================================
   Typography
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--brun-terre);
}

h1 { font-size: var(--font-5xl); }
h2 { font-size: var(--font-4xl); }
h3 { font-size: var(--font-2xl); }
h4 { font-size: var(--font-xl); }

p {
    margin-bottom: var(--space-sm);
}

strong {
    font-weight: 600;
}

/* ================================================
   Utilities
   ================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vert-sauge-fonce);
    background: var(--lavande-clair);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: var(--font-4xl);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: var(--font-lg);
    color: var(--gris-chaud);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: var(--font-lg);
    color: var(--gris-chaud);
    max-width: 700px;
}

/* ================================================
   Canvas Particles
   ================================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ================================================
   Navigation
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: var(--font-xl);
    font-weight: 500;
    color: var(--brun-terre);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: none;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--font-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--brun-terre);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vert-sauge);
    transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brun-terre);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blanc-creme);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: var(--font-2xl);
    color: var(--brun-terre);
}

.mobile-cta {
    margin-top: var(--space-md);
}

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--font-sm);
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--vert-sauge);
    color: var(--blanc);
}

.btn-primary:hover {
    background: var(--vert-sauge-fonce);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--or-doux) 0%, var(--or) 100%);
    color: var(--blanc);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--blanc);
}

.btn-outline:hover {
    background: var(--blanc);
    color: var(--brun-terre);
}

.btn-full {
    width: 100%;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center top, rgba(200, 180, 220, 0.2) 0%, transparent 60%),
        linear-gradient(
            to bottom,
            rgba(107, 93, 77, 0.2) 0%,
            rgba(107, 93, 77, 0.4) 40%,
            rgba(107, 93, 77, 0.7) 100%
        );
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Effet de grain cinématographique */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Vignette subtile */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(50, 40, 50, 0.4) 100%);
    pointer-events: none;
}

/* ================================================
   Particules de lumière dorée - CSS PUR
   ================================================ */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

/* Particules individuelles */
.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 120, 0.8) 0%, rgba(255, 215, 120, 0) 70%);
    box-shadow: 
        0 0 10px rgba(255, 215, 120, 0.5),
        0 0 20px rgba(255, 215, 120, 0.3);
    animation: floatUp 8s ease-in-out infinite;
}

.hero-particles::before {
    width: 8px;
    height: 8px;
    left: 20%;
    top: 60%;
    animation-delay: 0s;
}

.hero-particles::after {
    width: 6px;
    height: 6px;
    left: 70%;
    top: 40%;
    animation-delay: 4s;
}

/* 12 particules fixes en CSS pur */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 240, 180, 1) 0%, rgba(255, 220, 130, 0.6) 40%, rgba(255, 200, 80, 0) 70%);
    box-shadow: 
        0 0 15px rgba(255, 230, 150, 0.9),
        0 0 30px rgba(255, 210, 100, 0.6),
        0 0 50px rgba(255, 190, 80, 0.3);
    animation: floatParticle var(--duration, 10s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(var(--dx, 20px), var(--dy, -100px)) scale(1);
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translate(var(--dx, 30px), var(--dy, -200px)) scale(0.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--blanc);
    padding: var(--space-4xl) var(--container-padding);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease-out 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--blanc);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line:nth-child(1) span {
    animation-delay: 0.5s;
}

.hero-title-line:nth-child(2) span {
    animation-delay: 0.7s;
}

.hero-title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-text {
    font-size: var(--font-lg);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease-out 1s forwards;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease-out 1.2s forwards;
}

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

/* Bouton CTA avec effet glow */
.btn-glow {
    position: relative;
    overflow: hidden;
    animation: btnGlow 2s ease-in-out infinite;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(212, 168, 83, 0.5), 0 0 40px rgba(212, 168, 83, 0.2); }
}

/* Scroll indicator élégant */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--blanc);
    font-size: var(--font-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    z-index: 10;
    animation: heroFadeUp 1s ease-out 1.5s forwards;
}

.hero-scroll span {
    font-family: var(--font-body);
}

.hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--blanc);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

/* ================================================
   Particules de lumière dorée (effet poussière solaire)
   ================================================ */
.particle-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.particle-light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

/* Ligne décorative animée */
.hero-decor {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
    opacity: 0;
    animation: heroFadeUp 1s ease-out 1.8s forwards;
}

/* ================================================
   Intro Section
   ================================================ */
.intro {
    padding: var(--space-4xl) 0;
    background: var(--blanc-creme);
    position: relative;
    z-index: 2;
}

.intro-grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-content {
    text-align: center;
}

.intro-content .section-title {
    margin-bottom: var(--space-md);
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--blanc);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--brun-terre);
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.intro-image-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--rose-poudre);
    border-radius: var(--radius-full);
    z-index: -1;
}

/* ================================================
   Services Section
   ================================================ */
.services {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--blanc-creme) 0%, var(--lavande-clair) 100%);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    gap: var(--space-lg);
}

.service-card {
    background: var(--blanc);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out);
}

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

.service-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--or-doux);
    color: var(--blanc);
    font-size: var(--font-xs);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-content {
    padding: var(--space-md);
}

.service-title {
    font-size: var(--font-xl);
    margin-bottom: var(--space-xs);
}

.service-desc {
    font-size: var(--font-sm);
    color: var(--gris-chaud);
    margin-bottom: var(--space-sm);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--lavande-clair);
}

.service-duration {
    font-size: var(--font-sm);
    color: var(--gris-chaud);
}

.service-price {
    font-family: var(--font-heading);
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--or);
}

/* ================================================
   About Section
   ================================================ */
.about {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--rose-poudre);
    opacity: 0.3;
    transform: skewY(-3deg);
    transform-origin: top right;
}

.about-grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--blanc);
}

.about-image-secondary img {
    width: 100%;
}

.about-decor {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    color: var(--lavande);
    opacity: 0.5;
}

.about-content {
    padding-left: var(--space-lg);
}

.about-text {
    font-size: var(--font-lg);
    color: var(--gris-chaud);
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.about-feature {
    display: flex;
    gap: var(--space-sm);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--vert-sauge);
    color: var(--blanc);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-sm);
    flex-shrink: 0;
}

.about-feature-content h4 {
    font-size: var(--font-base);
    margin-bottom: 4px;
}

.about-feature-content p {
    font-size: var(--font-sm);
    color: var(--gris-chaud);
    margin-bottom: 0;
}

/* ================================================
   Galerie Section
   ================================================ */
.galerie {
    padding: var(--space-4xl) 0;
    background: var(--blanc);
    position: relative;
    z-index: 2;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.galerie-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.galerie-item:first-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(107, 93, 77, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

.galerie-overlay span {
    color: var(--blanc);
    font-family: var(--font-heading);
    font-size: var(--font-lg);
}

/* ================================================
   Testimonials Section
   ================================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--lavande-clair);
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: var(--space-xl);
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s var(--ease-out);
}

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

.testimonial-text {
    font-family: var(--font-heading);
    font-size: var(--font-xl);
    font-style: italic;
    color: var(--brun-terre);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--vert-sauge);
    color: var(--blanc);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    color: var(--brun-terre);
}

.testimonial-location {
    font-size: var(--font-sm);
    color: var(--gris-chaud);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    background: var(--blanc);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    color: var(--brun-terre);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--vert-sauge);
    color: var(--blanc);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-xs);
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--lavande);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.dot.active {
    background: var(--vert-sauge);
    width: 30px;
}

/* ================================================
   Contact Section
   ================================================ */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--blanc-creme);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    gap: var(--space-2xl);
}

.contact-text {
    font-size: var(--font-lg);
    color: var(--gris-chaud);
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--lavande-clair);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: var(--font-sm);
    color: var(--gris-chaud);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--vert-sauge-fonce);
}

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

.contact-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--rose-poudre);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--vert-sauge);
    color: var(--blanc);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--blanc);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: var(--font-2xl);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--brun-terre);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--font-base);
    border: 2px solid var(--lavande-clair);
    border-radius: var(--radius-md);
    background: var(--blanc-creme);
    transition: all 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vert-sauge);
    background: var(--blanc);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gris-chaud);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B5D4D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: var(--font-xs);
    color: var(--gris-chaud);
    text-align: center;
    margin-top: var(--space-md);
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--brun-terre);
    color: var(--blanc);
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    color: var(--blanc);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: var(--font-sm);
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-lg);
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
    background: var(--vert-sauge);
}

.footer-nav h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--blanc);
}

.footer-nav ul li,
.footer-hours ul li {
    margin-bottom: var(--space-xs);
    font-size: var(--font-sm);
}

.footer-nav a {
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-hours ul li {
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
}

.footer-contact p {
    font-size: var(--font-sm);
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

.footer-contact a {
    opacity: 0.8;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: var(--font-sm);
    opacity: 0.6;
    margin-bottom: var(--space-xs);
}

.footer-credit {
    opacity: 0.4;
}

/* ================================================
   Animations
   ================================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.6s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.8s; }

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

/* ================================================
   Responsive - Tablet
   ================================================ */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .galerie-item:first-child {
        grid-column: span 1;
        aspect-ratio: 1;
    }
}

/* ================================================
   Responsive - Desktop
   ================================================ */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-cta {
        display: inline-flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .intro-content {
        text-align: left;
    }
    
    .intro-features {
        justify-content: flex-start;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        padding-left: var(--space-2xl);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    h1 { font-size: var(--font-5xl); }
    h2 { font-size: var(--font-4xl); }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .container {
        --container-padding: 2rem;
    }
}

/* ================================================
   Reduced Motion
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}