/* ===========================
   PROVENCE ÉLITE CONCIERGERIE
   Site vitrine — Style élégant
   =========================== */

/* --- VARIABLES --- */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-tertiary: #EEEEEE;
    --bg-accent: #E8E8F0;
    --gold: #B8942E;
    --gold-light: #C8A951;
    --gold-glow: rgba(200, 169, 81, 0.15);
    --navy: #1e3a5f;
    --navy-light: #3182ce;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-dark: #444444;
    --text-muted: #AAAAAA;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- RESET --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gold { color: var(--gold); }

/* --- HEADER --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    color: var(--gold);
    margin-right: 4px;
}

/* Logo text white on hero, dark when scrolled */
#header .logo span {
    color: #FFFFFF;
}

#header.scrolled .logo span {
    color: var(--text-primary);
}

#header.scrolled .logo .gold {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.nav-links a:not(.btn-nav):hover {
    color: #FFFFFF;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Active nav link — no underline, just color */
.nav-links a.active-link {
    color: #FFFFFF;
}

/* Header scrolled — dark text on white bg */
#header.scrolled .nav-links a {
    color: var(--text-dark);
}

#header.scrolled .nav-links a.active-link {
    color: var(--navy);
}

#header.scrolled .nav-links a:not(.btn-nav):hover {
    color: var(--navy);
}

#header.scrolled .nav-links a:not(.btn-nav)::after {
    background: var(--navy);
}

.btn-nav {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    border-radius: 4px;
    color: #FFFFFF !important;
    font-weight: 500;
}

.btn-nav:hover {
    background: #FFFFFF;
    color: var(--gold) !important;
    border-color: #FFFFFF;
}

#header.scrolled .btn-nav {
    border-color: var(--navy);
    color: var(--navy) !important;
}

#header.scrolled .btn-nav:hover {
    background: var(--navy);
    color: #FFFFFF !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

#header.scrolled .menu-toggle span {
    background: #1A1A1A;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================
   HERO — Slider plein écran
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(15, 30, 50, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.hero h1 .gold {
    color: var(--gold-light);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.2);
}

.dot:hover {
    border-color: var(--gold-light);
}

.scroll-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 4;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================
   PARALLAX DIVIDERS
   ============================ */
.parallax-divider {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-short {
    height: 250px;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
}

.parallax-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    text-align: center;
    padding: 0 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.parallax-text .gold {
    color: var(--gold-light);
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 60px;
}

/* Centered section headers */
#services .section-label,
#services .section-title,
#services .section-desc,
#realisations .section-label,
#realisations .section-title,
#realisations .section-desc,
#temoignages .section-label,
#temoignages .section-title {
    text-align: center;
}

#services .section-desc,
#realisations .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   SERVICES — Cards avec images
   ============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    border-color: rgba(200, 169, 81, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-body {
    padding: 28px 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================
   GALLERY — Scroll horizontal
   ============================ */
/* ============================
   ABOUT — Images empilées
   ============================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 55%;
    border-radius: 12px;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.about-img-stack:hover .about-img-float {
    transform: translate(-5px, -5px);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 36px 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(200, 169, 81, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ============================
   CTA — Avec image de fond
   ============================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.cta-content h2 .gold {
    color: var(--gold-light);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 12px 16px;
    color: #1A1A1A;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BBBBBB;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: #FFFFFF;
    color: #1A1A1A;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gold-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--gold);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
}

/* --- FOOTER --- */
footer {
    background: #1A1A1A;
    color: #F5F5F5;
    border-top: none;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    color: #F5F5F5;
}

.footer-brand .logo .gold {
    color: var(--gold-light);
}

.footer-brand .logo .logo-icon {
    color: var(--gold-light);
}

.footer-brand p {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F5F5F5;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #999999;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    stroke: #999999;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--gold-light);
    background: rgba(200, 169, 81, 0.15);
}

.social-icon:hover svg {
    stroke: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #666666;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    /* Force dark text in mobile menu (white background) */
    .nav-links a {
        font-size: 1.1rem;
        color: #1A1A1A !important;
    }

    .nav-links a.active-link {
        color: var(--navy) !important;
    }

    .nav-links a:not(.btn-nav):hover {
        color: var(--navy) !important;
    }

    .btn-nav {
        border-color: var(--navy) !important;
        color: var(--navy) !important;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .section {
        padding: 60px 0;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image { order: -1; }

    .about-img-float {
        bottom: -20px;
        left: -15px;
        width: 50%;
    }

    .stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .parallax-divider {
        height: 280px;
        background-attachment: scroll;
    }

    .parallax-text {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .cta-section {
        background-attachment: scroll;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .parallax-text {
        font-size: 1rem;
        padding: 0 16px;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding: 0 18px 16px;
    }
}

/* ============================
   LOGO IMAGE
   ============================ */
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-img {
    width: 85px;
    height: 85px;
    border-radius: 0;
    object-fit: contain;
    margin-top: -12px;
    margin-right: -8px;
}

/* ============================
   ADVANTAGES — Pourquoi nous
   ============================ */
#pourquoi .section-label,
#pourquoi .section-title {
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.advantage-card {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.advantage-card:hover {
    border-color: rgba(200, 169, 81, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.advantage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advantage-card:hover .advantage-img img {
    transform: scale(1.08);
}

.advantage-body {
    padding: 24px 20px;
    text-align: center;
}

.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   FAQ — Accordion
   ============================ */
#faq .section-label,
#faq .section-title {
    text-align: center;
}

.faq-list {
    max-width: 760px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(30, 58, 95, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================
   MENTIONS LÉGALES
   ============================ */
.legal-page {
    padding-top: 140px;
}

.legal-content {
    max-width: 760px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.legal-block h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.legal-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-block strong {
    color: var(--text-primary);
}

.legal-back {
    margin-top: 20px;
}

/* ============================
   FOOTER — Legal link
   ============================ */
.footer-legal-link {
    margin-top: 16px;
}

.footer-legal-link a {
    font-size: 0.85rem;
    color: #999999;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal-link a:hover {
    color: var(--gold-light);
}
