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

:root {
    --primary-color: #A27FAC;
    --primary-dark: #6B4E71;
    --accent-color: #B8956A;
    --accent-light: #D4AF37;
    --dark: #2C2C2C;
    --light: #F8F5F2;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #6B4E71 0%, #A27FAC 50%, #B8956A 100%);
    --gradient-gold: linear-gradient(135deg, #B8956A 0%, #D4AF37 100%);
    --shadow: 0 10px 40px rgba(107, 78, 113, 0.15);
    --shadow-lg: 0 20px 60px rgba(107, 78, 113, 0.2);
    --glow: 0 0 30px rgba(184, 149, 106, 0.3);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Animated Background Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.nav-logo {
    height: 65px;
    width: auto;
    transition: transform 0.4s ease;
}

.navbar.scrolled .nav-logo {
    height: 55px;
}

.nav-brand:hover .nav-logo {
    transform: rotate(360deg) scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: var(--shadow);
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2C1E33 0%, #4A3456 25%, #6B4E71 50%, #4A3456 75%, #2C1E33 100%);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(162, 127, 172, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 149, 106, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(162, 127, 172, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-logo-container {
    margin-bottom: 30px;
    animation: logoAppear 1.5s ease-out;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-logo {
    width: 380px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(184, 149, 106, 0.7));
    animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 0 40px rgba(184, 149, 106, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--accent-light);
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-tagline {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.9s both;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: var(--shadow);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow);
}

.btn-glow {
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(184, 149, 106, 0.4); }
    50% { box-shadow: 0 0 40px rgba(184, 149, 106, 0.6); }
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon {
    background: var(--white);
    color: var(--accent-color);
    font-size: 1.5rem;
    padding: 0 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light);
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 25px;
}

.quote-box {
    margin-top: 40px;
    padding: 35px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.quote-box p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.value-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.value-icon-wrapper {
    margin-bottom: 25px;
}

.value-icon {
    font-size: 3.5rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 149, 106, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-glow {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--accent-light);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.9rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.service-card.featured .service-price {
    background: rgba(255, 255, 255, 0.15);
}

.price-amount {
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.service-card.featured .price-amount {
    color: var(--accent-light);
}

.price-duration {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.service-card.featured .price-duration {
    color: rgba(255, 255, 255, 0.8);
}

.service-card p {
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    margin: 35px 0;
    text-align: left;
}

.service-list li {
    padding: 10px 0;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-list li::before {
    color: var(--accent-light);
}

.service-card .btn {
    margin-top: 25px;
}

.services-note {
    text-align: center;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, rgba(162, 127, 172, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed var(--accent-color);
}

.services-note p {
    margin: 12px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.services-note strong {
    color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
    background: var(--light);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-decoration {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent-light);
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.author-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    text-align: left;
}

.author-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    text-align: left;
}

/* Contact Section - CORRIGÉ POUR MOBILE */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.info-card {
    background: var(--light);
    padding: 45px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    width: 100%;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 35px;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.badge-item {
    text-align: center;
    flex: 1;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.badge-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(107, 78, 113, 0.05) 0%, rgba(184, 149, 106, 0.05) 100%);
    padding: 55px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 106, 0.2);
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(162, 127, 172, 0.1);
}

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

.form-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 35px;
    position: relative;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 90px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* AOS animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: rotateY(-90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: rotateY(0);
}

/* RESPONSIVE - CORRECTIONS MOBILE */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        gap: 25px;
        backdrop-filter: blur(20px);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-logo {
        width: 280px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    /* CORRECTION CONTACT MOBILE */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

    section {
        padding: 80px 0;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 90px 15px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

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

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

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 240px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 35px;
    }

    .feature-item {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

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

    .nav-logo {
        height: 50px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .about-text .lead {
        font-size: 1.15rem;
    }

    .service-card {
        padding: 40px 20px;
    }

    .service-icon {
        font-size: 3.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .service-price {
        padding: 15px;
    }

    .services-note {
        padding: 25px 15px;
    }

    .services-note p {
        font-size: 0.95rem;
    }

    /* CORRECTION CONTACT MOBILE */
    .contact-form-container {
        padding: 25px 15px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .info-item {
        gap: 15px;
    }

    .info-icon {
        font-size: 1.8rem;
    }

    .badge-item {
        padding: 15px 10px;
    }

    .badge-item span {
        font-size: 2rem;
    }

    .badge-item p {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .value-card {
        padding: 35px 20px;
    }

    .testimonial-card {
        padding: 35px 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .hero-logo {
        width: 200px;
    }

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

    .nav-logo {
        height: 45px;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 30px 15px;
    }

    /* CORRECTION EXTRÊME POUR PETITS MOBILES */
    .contact-form-container {
        padding: 20px 10px;
    }

    .info-card {
        padding: 20px 10px;
    }
}


/* ============================================
   PAGES LÉGALES - CSS ADDITIONNEL
   ============================================ */

.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--light);
    position: relative;
}

.legal-page .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-page .section-header h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.legal-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-section ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.3;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.warning-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 149, 106, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-light);
}

.warning-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-light);
}

.warning-highlight {
    background: rgba(212, 175, 55, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.warning-box h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.rights-list {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.rights-list h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rights-list p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

/* Responsive pages légales */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-page .section-header h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }
}

/* SEO Internal Links Section */
.seo-links {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139,71,137,0.03), rgba(255,215,0,0.03));
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seo-link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border: 2px solid rgba(139,71,137,0.1);
    position: relative;
    overflow: hidden;
}

.seo-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139,71,137,0.2);
    border-color: #8b4789;
}

.seo-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.seo-link-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #8b4789;
    margin-bottom: 0.8rem;
}

.seo-link-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.link-arrow {
    font-size: 1.5rem;
    color: #8b4789;
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    transition: transform 0.3s ease;
}

.seo-link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* === STYLE PHOTO CENTRÉE AU-DESSUS === */

/* Container principal en colonne */
.about-content-centered {
    display: flex;
    flex-direction: column; /* Empile verticalement */
    align-items: center;    /* Centre horizontalement */
    max-width: 900px;       /* Largeur max pour la lecture */
    margin: 0 auto 4rem auto;
}

/* Bloc image centré */
.about-image-centered {
    width: 100%;
    max-width: 450px;      /* Taille idéale de la photo */
    margin-bottom: 3.5rem; /* Espace entre photo et texte */
    position: relative;
    padding: 20px;         /* Espace pour le cadre doré */
}

/* Bloc texte */
.about-text-centered {
    width: 100%;
}

/* Cadre photo stylisé */
.profile-frame {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 71, 137, 0.15);
}

.profile-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* Décoration dorée */
.frame-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #d4af37;
    border-radius: 25px;
    z-index: -1;
    opacity: 0.6;
}

/* Effet hover */
.profile-frame:hover .profile-photo {
    transform: scale(1.02);
}
