/* ============================================
   YARUBA - Conciergerie Haut de Gamme
   Style Premium / Luxe discret
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors - Charte Maison Heritage */
    /* Couleurs principales - Thème NOIR */
    --color-black: #000000;
    --color-black-soft: #0a0a0a;
    --color-white: #F7F5F2;

    /* Couleurs secondaires - Toutes en noir */
    --color-ivory: #000000;
    --color-beige: #000000;
    --color-sand: #D8CFC4;
    --color-gray-warm: #8C8C8C;

    /* Accent luxe OR */
    --color-gold: #C6A76A;
    --color-gold-light: #d4b87a;
    --color-gold-dark: #b8944d;

    /* Nuances de gris - Plus foncées */
    --color-gray-100: #1a1a1a;
    --color-gray-200: #151515;
    --color-gray-300: #D8CFC4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #8C8C8C;
    --color-gray-600: #5a5a5a;
    --color-gray-700: #3a3a3a;
    --color-gray-800: #0a0a0a;
    --color-gray-900: #000000;

    /* Typography - Playfair Display + Inter */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* 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;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Border radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
}

/* ============================================
   LOADER ANIMATION
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.loader-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0;
    animation: fadeInLogo 1s ease 0.2s forwards;
}

.loader-logo-full {
    width: 650px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    animation: fadeInLogo 1.2s ease 0.2s forwards;
}

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

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-white);
    opacity: 0;
    animation: fadeInText 1s ease 0.8s forwards;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
}

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

.loader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: expandLine 1.2s ease 1.2s forwards;
}

@keyframes expandLine {
    to {
        width: 200px;
    }
}

/* Animation de pulsation après le dessin */
.loader-logo.pulse {
    animation: logoPulse 0.6s ease;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    background-color: var(--color-black);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-gold);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray-500);
    font-size: 0.8125rem;
}

.btn-nav:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 0.9375rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-full {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
}

.navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.navbar-menu.active {
    right: 0;
}

.navbar-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.navbar-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.navbar-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.navbar-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.navbar-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.navbar-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.navbar-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.navbar-menu.active li:nth-child(6) { transition-delay: 0.35s; }
.navbar-menu.active li:nth-child(7) { transition-delay: 0.4s; }

/* Overlay derrière le menu */
.navbar-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

.navbar-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-md) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-base);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--color-gold);
}

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

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

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Animation du menu burger vers X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

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

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

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.lang-selector {
    position: relative;
    margin-right: 15px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(198, 167, 106, 0.1);
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-code {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
}

.lang-current svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.lang-selector.active .lang-current svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #0a0a0a;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: rgba(198, 167, 106, 0.1);
}

.lang-option.active {
    color: var(--color-gold);
}

/* RTL Support for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .navbar-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .service-card,
html[dir="rtl"] .chat-message.user {
    text-align: right;
}

html[dir="rtl"] .chat-message.bot {
    text-align: right;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--color-gold);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: var(--space-lg);
}

.hero-slogan {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.video-sound-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-sound-btn:hover {
    background: var(--color-gold);
}

.video-sound-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.video-sound-btn:hover svg {
    color: var(--color-black);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: var(--space-lg);
}

.hero-subtitle {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.hero-title em {
    font-style: italic;
    color: var(--color-gray-300);
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Animations pour les chiffres */
@keyframes priceReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes numberPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(198, 167, 106, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(198, 167, 106, 0.6), 0 0 30px rgba(198, 167, 106, 0.4);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes d'animation pour les chiffres */
.animate-number {
    display: inline-block;
}

.animate-number.animated {
    animation: countUp 0.8s ease forwards;
}

.pricing-amount {
    opacity: 0;
    transform: translateY(20px);
}

.pricing-amount.price-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation au survol des prix */
.pricing-card:hover .pricing-amount {
    animation: pulse 0.6s ease;
    color: var(--color-gold);
}

/* Animation des valeurs du simulateur */
.simulator-results .season-price,
.simulator-results .revenue-value,
.simulator-results .net-value {
    transition: all 0.3s ease;
}

.simulator-results .net-value {
    animation: glow 2s ease-in-out infinite;
}

.simulator-results .revenue-value:hover,
.simulator-results .net-value:hover {
    transform: scale(1.05);
}

/* Effet shimmer pour les gros chiffres */
.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--color-gold) 0%,
        var(--color-gold-light) 25%,
        var(--color-white) 50%,
        var(--color-gold-light) 75%,
        var(--color-gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Animation cascade pour les cartes */
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

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

/* Animation number glow premium */
@keyframes numberGlow {
    0% {
        text-shadow: 0 0 0 transparent;
    }
    50% {
        text-shadow: 0 0 20px rgba(198, 167, 106, 0.6), 0 0 40px rgba(198, 167, 106, 0.4);
    }
    100% {
        text-shadow: 0 0 10px rgba(198, 167, 106, 0.3);
    }
}

/* Particules container */
.particles-container {
    pointer-events: none;
}

/* Animation pour les trust numbers */
.trust-number {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.trust-number.animated {
    animation: numberGlow 1s ease-out forwards;
}

/* ============================================
   BOOK FLIP ANIMATION - GSAP
   ============================================ */
.section-book {
    padding: 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-gold);
}

.book-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    padding: var(--space-lg) var(--space-sm);
    padding-top: calc(var(--space-lg) + 60px);
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.7) 50%, transparent 100%);
}

.book-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: var(--space-xs) var(--space-sm);
    background: transparent;
    border: 1px solid rgba(198, 167, 106, 0.2);
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
}

.book-nav-item:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.book-nav-item.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.book-nav-item .nav-number {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.book-nav-item .nav-title {
    font-size: 0.7rem;
    font-family: var(--font-serif);
}

.book-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 3000px;
    perspective-origin: 50% 50%;
}

.book {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.book-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: left center;
    cursor: pointer;
    will-change: transform;
}

.book-page .page-front,
.book-page .page-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0;
    overflow: hidden;
}

.book-page .page-front {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.book-page .page-back {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    transform: rotateY(180deg);
}

/* Page image background */
.book-page .page-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.book-page:hover .page-image {
    transform: scale(1.05);
}

.book-page .page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.7) 0%,
        rgba(15, 15, 15, 0.4) 50%,
        rgba(15, 15, 15, 0.8) 100%
    );
}

.book-page .page-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-md) var(--space-xl);
    color: var(--color-white);
    z-index: 2;
    text-align: center;
}

.book-page .page-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.page-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-gray-300);
}

.page-features li svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Page flip states - GSAP contrôle la rotation */
.book-page.flipped {
    /* La rotation est gérée par GSAP, pas par CSS */
    pointer-events: none;
}

.book-page.flipping {
    z-index: 100 !important;
}

/* État par défaut (non flippé) */
.book-page:not(.flipped):not(.flipping) {
    pointer-events: auto;
}

/* Stacking order for pages */
.book-page[data-page="0"] { z-index: 6; }
.book-page[data-page="1"] { z-index: 5; }
.book-page[data-page="2"] { z-index: 4; }
.book-page[data-page="3"] { z-index: 3; }
.book-page[data-page="4"] { z-index: 2; }
.book-page[data-page="5"] { z-index: 1; }

/* Flipped stacking */
.book-page.flipped[data-page="0"] { z-index: 1; }
.book-page.flipped[data-page="1"] { z-index: 2; }
.book-page.flipped[data-page="2"] { z-index: 3; }
.book-page.flipped[data-page="3"] { z-index: 4; }
.book-page.flipped[data-page="4"] { z-index: 5; }
.book-page.flipped[data-page="5"] { z-index: 6; }

/* Book shadow */
.book-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(10px);
}

/* Scroll hint */
.book-scroll-hint {
    text-align: center;
    margin-top: var(--space-xl);
    color: var(--color-gray-500);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounceHint 2s ease-in-out infinite;
}

.book-scroll-hint svg {
    width: 20px;
    height: 20px;
}

@keyframes bounceHint {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 1; }
}

/* Page turn effect shadow */
.book-page::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.book-page:hover::after {
    opacity: 1;
}

/* Page curl effect on hover */
.book-page:not(.flipped):hover {
    transform: rotateY(-15deg);
}

.book-page:not(.flipped):hover .page-front {
    box-shadow:
        -5px 0 30px rgba(0, 0, 0, 0.3),
        inset 0 0 80px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .book-nav {
        padding-top: calc(var(--space-md) + 50px);
        gap: 0.25rem;
    }

    .book-nav-item {
        padding: 0.25rem 0.5rem;
    }

    .book-nav-item .nav-title {
        display: none;
    }

    .book-wrapper {
        perspective: 2000px;
    }

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

    .book-page .page-content h3 {
        font-size: 1.25rem;
    }

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

@media (max-width: 480px) {
    .book-page .page-content h3 {
        font-size: 1.1rem;
    }

    .book-page .page-content p {
        font-size: 0.85rem;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid var(--color-gold);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-subtitle {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

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

.section-description {
    font-size: 1.0625rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   VALUE SECTION
   ============================================ */
.section-value {
    background-color: var(--color-black);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.95);
}

.section-value .container {
    position: relative;
    z-index: 1;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
    background-color: rgba(31, 31, 31, 0.9);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    border: 1px solid rgba(198, 167, 106, 0.2);
}

.value-card:hover {
    background-color: rgba(31, 31, 31, 1);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-services {
    background-color: #F7F5F2;
    position: relative;
}

.section-services .section-subtitle {
    color: var(--color-gold);
}

.section-services .section-title {
    color: #000000;
}

.section-services .section-description {
    color: #333333;
}

.section-services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background-color: #0a0a0a;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198, 167, 106, 0.1);
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(198, 167, 106, 0.12);
    transform: translateY(-4px);
    border-color: rgba(198, 167, 106, 0.3);
}

/* Service Card Image */
.service-card-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

/* Service Card Content */
.service-card-content {
    padding: var(--space-md);
    position: relative;
}

.service-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--color-gold);
}

.service-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.section-method {
    background-color: var(--color-black);
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.method-text .section-subtitle {
    text-align: left;
}

.method-text .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.method-text > p {
    font-size: 1.0625rem;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.method-list {
    margin-bottom: var(--space-xl);
}

.method-list li {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.method-step {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
}

.method-list li strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.method-list li p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin: 0;
}

.method-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    background-color: var(--color-black);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.method-image-placeholder {
    display: none;
}

.method-image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.section-trust {
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600607687644-c7171b42498f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.92);
}

.section-trust .container {
    position: relative;
    z-index: 1;
}

.section-trust .section-subtitle {
    color: var(--color-gold);
}

.section-trust .section-title {
    color: var(--color-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.trust-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.trust-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    margin: 0;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.section-testimonial {
    background-color: var(--color-black);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(216, 207, 196, 0.92);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 500;
    color: var(--color-white);
}

.author-info {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.section-cta-final {
    background: linear-gradient(135deg, rgba(247, 245, 242, 0.95) 0%, rgba(216, 207, 196, 0.95) 100%),
                url('https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-xl);
}

/* ============================================
   CONTACT NEWSLETTER
   ============================================ */
.contact-newsletter {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(198, 167, 106, 0.2);
}

.contact-newsletter h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.contact-newsletter p {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-md);
}

.contact-newsletter-form {
    width: 100%;
}

.contact-newsletter-input {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.contact-newsletter-input:focus-within {
    border-color: var(--color-gold);
}

.contact-newsletter-input input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.9rem;
    outline: none;
}

.contact-newsletter-input input::placeholder {
    color: var(--color-gray-500);
}

.contact-newsletter-input button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-newsletter-input button:hover {
    background: var(--color-gold-light);
}

.contact-newsletter-input button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-newsletter-input button:hover svg {
    transform: translateX(3px);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(198, 167, 106, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(198, 167, 106, 0.6);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: var(--color-black);
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(198, 167, 106, 0.4);
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(198, 167, 106, 0.6);
}

.chatbot-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--color-black);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid var(--color-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot.active .chatbot-window {
    display: flex;
}

.chatbot.active .chat-icon {
    display: none;
}

.chatbot.active .close-icon {
    display: block !important;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #000000;
    border-bottom: 1px solid rgba(198, 167, 106, 0.3);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar svg {
    width: 24px;
    height: 24px;
    color: #000000;
}

.chatbot-info {
    display: flex;
    flex-direction: column;
}

.chatbot-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
}

.chatbot-status {
    font-size: 0.75rem;
    color: #4ade80;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: #1a1a1a;
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--color-gold);
    color: #000000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message p {
    margin: 0;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chat-option {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-option:hover {
    background: var(--color-gold);
    color: #000000;
}

.chatbot-input {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    background: #000000;
    border-top: 1px solid rgba(198, 167, 106, 0.3);
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

.chatbot-input input::placeholder {
    color: #666666;
}

.chatbot-input input:focus {
    border-color: var(--color-gold);
}

.chatbot-input button {
    width: 44px;
    height: 44px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: var(--color-gold-light);
}

.chatbot-input button svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-black);
    color: var(--color-gray-400);
    padding: var(--space-4xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.footer-logo span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-nav ul li {
    margin-bottom: var(--space-xs);
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-700);
    border-radius: 50%;
    color: var(--color-gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-800);
    font-size: 0.8125rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--color-gray-500);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ============================================
   PAGE HEADER (For sub-pages)
   ============================================ */
.page-header {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    background-color: var(--color-black);
    text-align: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(216, 207, 196, 0.95) 0%, rgba(247, 245, 242, 0.9) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .section-subtitle {
    margin-bottom: var(--space-sm);
}

.page-header .section-title {
    margin-bottom: var(--space-md);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.0625rem;
    color: var(--color-gray-400);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.service-detail-content p {
    font-size: 1rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

.service-detail-content ul {
    margin-top: var(--space-md);
}

.service-detail-content ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

.service-detail-content ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.service-detail-image {
    aspect-ratio: 4/3;
    background-color: var(--color-black);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-detail-image:nth-of-type(1) {
    background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-detail-image svg {
    display: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-intro-image {
    aspect-ratio: 3/4;
    background-color: var(--color-black);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.about-intro-image svg {
    display: none;
}

.about-intro-content h2 {
    margin-bottom: var(--space-lg);
}

.about-intro-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

.about-values {
    background-color: var(--color-black);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.96);
}

.about-values .container {
    position: relative;
    z-index: 1;
}

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

.values-list-item {
    padding: var(--space-xl);
    border-left: 2px solid var(--color-gold);
}

.values-list-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.values-list-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    margin: 0;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.pricing-intro p {
    font-size: 1.0625rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

/* Styles compacts pour Tarifs */
.page-header-compact {
    padding: calc(var(--space-lg) + 80px) 0 var(--space-sm);
}

.page-header-compact .section-title {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.page-header-compact .section-subtitle {
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
}

.section-compact {
    padding: var(--space-lg) 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pricing-card {
    background-color: var(--color-black);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 20px;
}

.pricing-card h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 0;
}

.pricing-period {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    margin-bottom: var(--space-md);
}

.pricing-features {
    text-align: left;
    margin-bottom: var(--space-md);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.85rem;
    color: var(--color-gray-400);
}

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

.pricing-features li svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    margin-top: 2px;
}

.pricing-card .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md) var(--space-lg);
    background-color: var(--color-black);
    border-radius: var(--radius-md);
}

.pricing-note p {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin: 0;
}

/* ============================================
   ZONE PAGE
   ============================================ */
.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.zone-map {
    aspect-ratio: 4/3;
    background-color: var(--color-black);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1524484485831-a92ffc0de03f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.zone-map svg {
    display: none;
}

.zone-list h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.zone-list ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: var(--color-gray-400);
    border-bottom: 1px solid var(--color-gray-200);
}

.zone-list ul li:last-child {
    border-bottom: none;
}

.zone-list ul li svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.zone-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background-color: var(--color-black);
    border-radius: var(--radius-md);
}

.zone-note p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1rem;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    margin-top: 2px;
}

.contact-item div strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-item div p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    margin: 0;
}

.contact-form {
    background-color: var(--color-black);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.form-row {
    display: flex;
    gap: var(--space-sm);
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-300);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-gray-300);
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

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

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

.form-submit {
    margin-top: var(--space-lg);
}

.form-submit .btn {
    width: 100%;
}

/* ============================================
   SERVICES PAGE - PREMIUM
   ============================================ */

/* Best Sellers Section */
.section-bestsellers {
    background-color: var(--color-black);
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.bestseller-card {
    position: relative;
    background-color: var(--color-black);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.bestseller-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bestseller-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.bestseller-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
}

.bestseller-icon svg {
    width: 100%;
    height: 100%;
}

.bestseller-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.bestseller-card p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.bestseller-price {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

/* ============================================
   VEHICLES PREMIUM SECTION
   ============================================ */
.section-vehicles-premium {
    position: relative;
    min-height: auto;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.vehicles-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.vehicles-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image de fond du hero (photo réelle de la flotte) */
.vehicles-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.vehicles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.vehicles-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Header */
.vehicles-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.vehicles-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-gold);
}

.vehicles-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

/* Main Layout */
.vehicles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    align-items: start;
}

/* Left: Cars List */
.vehicles-left {
    height: auto;
    overflow-y: visible;
    padding: var(--space-md);
    background: #151515;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(198, 167, 106, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.vehicles-left::-webkit-scrollbar {
    width: 6px;
}

.vehicles-left::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.vehicles-left::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold), #a38a4f);
    border-radius: 3px;
}

.vehicles-left::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

.cars-list-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(198, 167, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cars-list-title::before {
    content: '6 véhicules disponibles';
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(198, 167, 106, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(198, 167, 106, 0.3);
}

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

.car-item {
    display: flex !important;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.car-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.car-item:hover::before {
    transform: scaleY(1);
}

.car-item:hover {
    background: #2d2d2d;
    border-color: rgba(198, 167, 106, 0.5);
    transform: translateX(5px);
}

.car-item.active {
    background: linear-gradient(135deg, rgba(198, 167, 106, 0.25) 0%, rgba(198, 167, 106, 0.15) 100%);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(198, 167, 106, 0.2);
}

.car-item.active::before {
    transform: scaleY(1);
}

.car-item-image {
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: #1a1a1a;
}

.car-item.active .car-item-image {
    border-color: var(--color-gold);
}

.car-item:hover .car-item-image {
    border-color: rgba(198, 167, 106, 0.5);
}

.car-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    transition: transform 0.5s ease;
    filter: brightness(1);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.car-item:hover .car-item-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.car-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--space-sm);
}

.car-item-badge {
    display: inline-block;
    width: fit-content;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 8px rgba(198, 167, 106, 0.3);
}

.car-item-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.car-item-info p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.car-item-price {
    font-size: 0.85rem;
    color: #888888;
}

.car-item-price strong {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Right: Simulator */
.vehicles-right {
    display: flex;
    flex-direction: column;
}

.car-simulator {
    background: #151515;
    border: 1px solid rgba(198, 167, 106, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.simulator-preview {
    position: relative;
    /* Pas de hauteur fixe : le cadre épouse la photo, donc aucune coupe.
       Les photos portrait (intérieurs) s'affichent en entier et en grand. */
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.simulator-preview img {
    width: 100%;
    height: auto;
    display: block;
    /* la photo remplit toute la largeur et s'affiche en entier (aucune coupe) */
    transition: opacity 0.4s ease;
}

.simulator-car-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.95));
    display: flex;
    flex-direction: column;
    pointer-events: none; /* laisse passer les clics vers les flèches */
}

/* Flèches de navigation sur l'aperçu du véhicule */
.preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 13, 13, 0.55);
    border: 1px solid rgba(198, 167, 106, 0.5);
    color: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, color 0.3s ease;
}

.preview-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.preview-nav svg {
    width: 20px;
    height: 20px;
}

.preview-prev { left: 12px; }
.preview-next { right: 12px; }

/* Compteur de photos (ex : 2 / 6) */
.preview-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(198, 167, 106, 0.4);
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    z-index: 5;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.simulator-car-name span:first-child {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
}

.simulator-car-name span:last-child {
    font-size: 0.9rem;
    color: var(--color-gold);
}

/* Galerie de miniatures du véhicule sélectionné (s'adapte de 3 à 6 vues) */
.simulator-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: #151515;
}

.simulator-thumb {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    padding: 0;
    background: #1a1a1a;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.simulator-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.simulator-thumb:hover {
    border-color: rgba(198, 167, 106, 0.6);
}

.simulator-thumb:hover img {
    transform: scale(1.08);
}

.simulator-thumb.active {
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(198, 167, 106, 0.3);
}

.simulator-form {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.simulator-form h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simulator-field {
    margin-bottom: var(--space-md);
}

.simulator-field > label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: var(--space-sm);
}

.duration-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xs);
}

.duration-btn {
    padding: 0.6rem 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-gray-400);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.duration-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.duration-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.option-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.option-item input {
    display: none;
}

.option-check {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.option-item input:checked + .option-check {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.option-item input:checked + .option-check::after {
    content: '✓';
    color: var(--color-black);
    font-size: 0.7rem;
    font-weight: bold;
}

.option-name {
    flex: 1;
    font-size: 0.85rem;
    color: var(--color-white);
}

.option-price {
    font-size: 0.8rem;
    color: var(--color-gold);
}

.simulator-total {
    padding: var(--space-md);
    background: rgba(198, 167, 106, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

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

.total-row span:first-child {
    font-size: 0.9rem;
    color: var(--color-gray-300);
}

.total-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-gold);
}

.total-note {
    font-size: 0.7rem;
    color: var(--color-gray-500);
    margin-top: var(--space-xs);
}

.simulator-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.simulator-cta:hover {
    background: var(--color-gold-light);
}

/* Services Bar */
.vehicles-services-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-400);
    font-size: 0.85rem;
}

.service-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .vehicles-layout {
        grid-template-columns: 1fr;
    }

    .vehicles-left {
        max-height: none;
        overflow: visible;
    }

    .cars-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .vehicles-title {
        font-size: 2.2rem;
    }

    .cars-list {
        grid-template-columns: 1fr;
    }

    .car-item-image {
        width: 100px;
        height: 70px;
    }

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

    .vehicles-services-bar {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .service-badge {
        flex: 0 0 45%;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .vehicles-title {
        font-size: 1.8rem;
    }

    .car-item {
        flex-direction: column;
    }

    .car-item-image {
        width: 100%;
        height: 120px;
    }

    .service-badge {
        flex: 0 0 100%;
        justify-content: center;
    }
}

/* Experiences Section */
.section-experiences {
    background-color: var(--color-black);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.experience-card {
    background-color: var(--color-black);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    border: 1px solid var(--color-gray-200);
}

.experience-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-lg);
}

.experience-featured {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gray-800) 0%, rgba(198, 167, 106, 0.1) 100%);
}

.experience-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
}

.experience-icon svg {
    width: 100%;
    height: 100%;
}

.experience-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.experience-card > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-style: italic;
    line-height: 1.7;
}

.experience-card ul {
    margin: 0;
    padding: var(--space-sm) 0;
}

.experience-card ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.experience-card ul li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background-color: var(--color-gold);
    border-radius: 50%;
    margin-top: 0.5rem;
}

/* Corporate Section */
.section-corporate {
    background-color: var(--color-black);
}

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

.corporate-item {
    background-color: var(--color-black);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.corporate-item .section-subtitle {
    text-align: left;
    margin-bottom: var(--space-xs);
}

.corporate-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.corporate-item > p {
    font-size: 1rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.corporate-item ul {
    margin-bottom: var(--space-lg);
}

.corporate-item ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-size: 0.9375rem;
    color: var(--color-gray-300);
}

.corporate-item ul li:last-child {
    border-bottom: none;
}

.corporate-item ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.corporate-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.corporate-features span {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    padding: 0.375rem 0.875rem;
    background-color: var(--color-black);
    border-radius: 20px;
}

/* À la carte Section */
.section-alacarte {
    background-color: var(--color-black);
    padding: var(--space-3xl) 0;
}

.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.alacarte-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(198, 167, 106, 0.15);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
}

.alacarte-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.alacarte-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(198, 167, 106, 0.15);
    border-color: rgba(198, 167, 106, 0.4);
}

.alacarte-card:hover::before {
    border-color: var(--color-gold);
}

.alacarte-card-number {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-sm);
    z-index: 5;
    letter-spacing: 0.1em;
    border: 1px solid rgba(198, 167, 106, 0.3);
}

.alacarte-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.alacarte-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: brightness(0.9) saturate(1.1);
}

.alacarte-card:hover .alacarte-card-image img {
    transform: scale(1.15);
    filter: brightness(1) saturate(1.2);
}

.alacarte-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    transition: opacity 0.4s ease;
}

.alacarte-card:hover .alacarte-card-image::after {
    opacity: 0.9;
}

.alacarte-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.alacarte-card:hover .alacarte-card-content {
    transform: translateY(-10px);
}

.alacarte-card-content h4 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    transition: color 0.3s ease;
}

.alacarte-card:hover .alacarte-card-content h4 {
    color: var(--color-gold);
}

.alacarte-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.5;
}

.alacarte-card-more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--color-gold), #D4BA8A);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.alacarte-card-more span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.alacarte-card-more svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-black);
    transition: transform 0.3s ease;
}

.alacarte-card:hover .alacarte-card-more {
    transform: translateY(0);
}

.alacarte-card:hover .alacarte-card-more svg {
    transform: translateX(5px);
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.service-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(198, 167, 106, 0.3);
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
}

.service-modal.active .service-modal-content {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    background: rgba(198, 167, 106, 0.3);
}

.service-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

.service-modal-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(198, 167, 106, 0.2);
}

.service-modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.service-modal-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.service-modal-body {
    padding: 2rem;
}

.service-modal-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: justify;
}

.service-modal-features {
    margin-bottom: 2rem;
}

.service-modal-features h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.service-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.service-modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.service-modal-note {
    background: rgba(198, 167, 106, 0.1);
    border-left: 3px solid var(--color-gold);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.service-modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.service-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-black);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 167, 106, 0.3);
}

/* Box Modal - Coffrets détaillés */
.box-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.box-modal.active {
    opacity: 1;
    visibility: visible;
}

.box-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.box-modal-content {
    position: relative;
    width: 95%;
    max-width: 700px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(198, 167, 106, 0.4);
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
}

.box-modal.active .box-modal-content {
    transform: translateY(0) scale(1);
}

.box-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: rgba(198, 167, 106, 0.2);
    border: 1px solid rgba(198, 167, 106, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.box-modal-close:hover {
    background: rgba(198, 167, 106, 0.4);
    transform: rotate(90deg);
}

.box-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
}

.box-modal-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(198, 167, 106, 0.3);
    background: linear-gradient(180deg, rgba(198, 167, 106, 0.1) 0%, transparent 100%);
}

.box-modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.box-modal-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.box-modal-body {
    padding: 2rem;
}

.box-modal-section {
    margin-bottom: 2rem;
}

.box-modal-section h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(198, 167, 106, 0.2);
}

.box-modal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.box-modal-section p strong {
    color: var(--color-gold);
}

.box-modal-features {
    margin-bottom: 2rem;
}

.box-modal-features h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.box-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-modal-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.box-modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Box Options - Event */
.box-options {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.box-option {
    background: rgba(198, 167, 106, 0.15);
    border: 1px solid rgba(198, 167, 106, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.box-option:hover {
    background: rgba(198, 167, 106, 0.25);
    transform: translateY(-3px);
}

.box-option-persons {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1rem;
}

.box-note {
    background: rgba(198, 167, 106, 0.1);
    border-left: 3px solid var(--color-gold);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 1rem;
}

/* Box Options - Breakfast */
.box-modal-options {
    display: grid;
    gap: 1.5rem;
}

.box-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(198, 167, 106, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.box-option-card:hover {
    background: rgba(198, 167, 106, 0.08);
    border-color: rgba(198, 167, 106, 0.5);
    transform: translateX(5px);
}

.box-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(198, 167, 106, 0.2);
}

.box-option-icon {
    font-size: 1.5rem;
}

.box-option-header h5 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin: 0;
}

.box-option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-option-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.box-option-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.box-modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(198, 167, 106, 0.2);
}

.box-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(198, 167, 106, 0.4);
}

/* Stack card buttons */
.stack-card-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.stack-card-buttons .btn-secondary {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stack-card-buttons .btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.stack-card-buttons .btn-primary {
    background: var(--color-gold);
    border: 2px solid var(--color-gold);
    color: var(--color-black);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.stack-card-buttons .btn-primary:hover {
    background: #e0c87a;
    border-color: #e0c87a;
}

/* Concierge Section */
.section-concierge {
    background-color: var(--color-black);
    color: var(--color-white);
}

.concierge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.concierge-text .section-subtitle {
    color: var(--color-gold);
    text-align: left;
}

.concierge-text .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: var(--space-md);
}

.concierge-text > p {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-lg);
}

.concierge-list {
    margin: 0;
}

.concierge-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: var(--color-gray-300);
}

.concierge-list li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.concierge-card {
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-900) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-700);
    text-align: center;
}

.concierge-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.concierge-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

/* ============================================
   FONCTIONNEMENT PAGE
   ============================================ */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-3xl);
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: 0;
    width: 1px;
    background-color: var(--color-gray-200);
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    background-color: var(--color-black);
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
    padding-top: var(--space-md);
}

.process-content p {
    font-size: 1rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .btn-nav {
        display: none;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .method-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .method-image {
        order: -1;
    }

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

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

    .service-detail {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-intro-image {
        order: -1;
        aspect-ratio: 16/9;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .zone-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    /* Services Premium - Tablet */
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

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

    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .alacarte-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .alacarte-card-image {
        height: 240px;
    }

    .concierge-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .service-card-image {
        height: 180px;
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .process-step::before {
        display: none;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .process-content h3 {
        padding-top: 0;
    }

    /* Services Premium - Mobile */
    .bestsellers-grid {
        grid-template-columns: 1fr;
    }

    .bestseller-card {
        padding: var(--space-lg);
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .alacarte-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .alacarte-card {
        max-width: 100%;
    }

    .alacarte-card-image {
        height: 220px;
    }

    .alacarte-card-content h4 {
        font-size: 1.15rem;
    }

    .alacarte-card-number {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }

    .alacarte-card-content p {
        font-size: 0.8rem;
    }

    .vehicle-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8125rem;
    }

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

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

/* ============================================
   SLIDESHOW - FONCTIONNEMENT
   ============================================ */
.section-slideshow {
    padding: 0;
    background-color: var(--color-black);
    min-height: 100vh;
    position: relative;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation tabs */
.slideshow-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9) 0%, transparent 100%);
    padding: var(--space-lg) var(--space-md);
}

.slide-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.slide-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.4s ease;
}

.slide-nav-item.active::after,
.slide-nav-item:hover::after {
    width: 80%;
}

.slide-nav-item .nav-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-500);
    transition: all 0.4s ease;
}

.slide-nav-item.active .nav-number,
.slide-nav-item:hover .nav-number {
    color: var(--color-gold);
}

.slide-nav-item .nav-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.slide-nav-item.active .nav-title,
.slide-nav-item:hover .nav-title {
    color: var(--color-white);
}

/* Slides container */
.slideshow-container {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Individual slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide image */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.35) 0%,
        rgba(15, 15, 15, 0.15) 50%,
        rgba(15, 15, 15, 0.25) 100%
    );
}

/* Slide content */
.slide-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: var(--space-4xl) var(--space-xl);
    margin-left: 10%;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.slide-content h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.slide-content > p {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
}

/* Slide features */
.slide-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-gray-200);
}

.slide-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Slideshow controls */
.slideshow-controls {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.slide-control {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gray-500);
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slide-control:hover {
    border-color: var(--color-gold);
    background: rgba(198, 167, 106, 0.1);
}

.slide-control svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.slide-control:hover svg {
    color: var(--color-gold);
}

.slide-progress {
    width: 200px;
    height: 2px;
    background-color: var(--color-gray-300);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

/* Responsive - Slideshow */
@media (max-width: 1024px) {
    .slideshow-nav {
        flex-wrap: wrap;
        gap: var(--space-xs);
        padding: var(--space-md);
    }

    .slide-nav-item {
        padding: var(--space-xs) var(--space-sm);
    }

    .slide-nav-item .nav-number {
        font-size: 1.25rem;
    }

    .slide-nav-item .nav-title {
        font-size: 0.625rem;
    }

    .slide-content {
        margin-left: 5%;
        padding: var(--space-3xl) var(--space-lg);
    }

    .slide-number {
        font-size: 4rem;
    }

    .slide-content h3 {
        font-size: 2rem;
    }
}

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

    .slide-content {
        margin-left: 0;
        padding: var(--space-2xl) var(--space-md);
        max-width: 100%;
    }

    .slide-number {
        font-size: 3rem;
    }

    .slide-content h3 {
        font-size: 1.75rem;
    }

    .slide-content > p {
        font-size: 1rem;
    }

    .slideshow-controls {
        bottom: var(--space-lg);
    }

    .slide-progress {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .slide-control {
        width: 44px;
        height: 44px;
    }

    .slide-progress {
        width: 80px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-features li {
        font-size: 0.875rem;
    }
}

/* ============================================
   SLIDESHOW SERVICES - Variante
   ============================================ */
.section-services-slideshow {
    min-height: 90vh;
}

.section-services-slideshow .slideshow-wrapper {
    min-height: 90vh;
}

.section-services-slideshow .slideshow-container {
    min-height: 90vh;
}

.section-services-slideshow .slide-overlay {
    background: linear-gradient(
        to right,
        rgba(15, 15, 15, 0.45) 0%,
        rgba(15, 15, 15, 0.25) 40%,
        rgba(15, 15, 15, 0.1) 100%
    );
}

.section-services-slideshow .slide-content {
    max-width: 550px;
}

.section-services-slideshow .slide-features li {
    background: rgba(198, 167, 106, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.25rem;
}

.section-services-slideshow .slide-features li:hover {
    background: rgba(198, 167, 106, 0.2);
}

/* ============================================
   PACK EXPERIENCES SLIDESHOW
   ============================================ */
.section-experiences-slideshow {
    min-height: 80vh;
    max-height: 900px;
    overflow: hidden;
    position: relative;
}

.section-experiences-slideshow .slideshow-wrapper {
    min-height: 80vh;
    max-height: 900px;
    position: relative;
}

.section-experiences-slideshow .slides-container {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 900px;
    overflow: hidden;
}

.section-experiences-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.section-experiences-slideshow .slide.active {
    opacity: 1;
    visibility: visible;
}

.section-experiences-slideshow .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section-experiences-slideshow .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.section-experiences-slideshow .slide.active .slide-image img {
    transform: scale(1);
}

.section-experiences-slideshow .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.4) 0%,
        rgba(15, 15, 15, 0.2) 50%,
        rgba(15, 15, 15, 0.15) 100%
    );
    z-index: 1;
}

.section-experiences-slideshow .slide-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: var(--space-2xl);
    margin-left: 8%;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.section-experiences-slideshow .slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.section-experiences-slideshow .slide-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.section-experiences-slideshow .slide-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-experiences-slideshow .slide-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
}

.section-experiences-slideshow .slide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-experiences-slideshow .slide-features li {
    background: rgba(198, 167, 106, 0.12);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--color-gold);
    font-size: 0.9rem;
    color: var(--color-gray-200);
    transition: all 0.3s ease;
}

.section-experiences-slideshow .slide-features li:hover {
    background: rgba(198, 167, 106, 0.2);
    padding-left: 1.25rem;
}

/* Navigation tabs en bas */
.section-experiences-slideshow .slide-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 100%);
    padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.section-experiences-slideshow .slide-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.section-experiences-slideshow .slide-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.4s ease;
}

.section-experiences-slideshow .slide-nav-item.active::after,
.section-experiences-slideshow .slide-nav-item:hover::after {
    width: 70%;
}

.section-experiences-slideshow .slide-nav-item .nav-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-500);
    transition: all 0.4s ease;
}

.section-experiences-slideshow .slide-nav-item.active .nav-number,
.section-experiences-slideshow .slide-nav-item:hover .nav-number {
    color: var(--color-gold);
}

.section-experiences-slideshow .slide-nav-item .nav-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.section-experiences-slideshow .slide-nav-item.active .nav-title,
.section-experiences-slideshow .slide-nav-item:hover .nav-title {
    color: var(--color-white);
}

/* Controls (flèches) */
.section-experiences-slideshow .slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(198, 167, 106, 0.4);
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.section-experiences-slideshow .slide-control.prev {
    left: var(--space-lg);
}

.section-experiences-slideshow .slide-control.next {
    right: var(--space-lg);
}

.section-experiences-slideshow .slide-control:hover {
    border-color: var(--color-gold);
    background: rgba(198, 167, 106, 0.15);
}

.section-experiences-slideshow .slide-control svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.section-experiences-slideshow .slide-control:hover svg {
    color: var(--color-gold);
}

/* Progress bar */
.section-experiences-slideshow .slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(198, 167, 106, 0.2);
    z-index: 25;
}

.section-experiences-slideshow .progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

/* Responsive experiences slideshow */
@media (max-width: 1024px) {
    .section-experiences-slideshow,
    .section-experiences-slideshow .slideshow-wrapper,
    .section-experiences-slideshow .slides-container {
        min-height: 70vh;
        max-height: 750px;
    }

    .section-experiences-slideshow .slide-content {
        margin-left: 5%;
        max-width: 90%;
        padding: var(--space-xl);
    }

    .section-experiences-slideshow .slide-nav {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: var(--space-lg) var(--space-sm) var(--space-md);
    }

    .section-experiences-slideshow .slide-nav-item {
        padding: 0.4rem 0.6rem;
    }

    .section-experiences-slideshow .slide-nav-item .nav-number {
        font-size: 1rem;
    }

    .section-experiences-slideshow .slide-nav-item .nav-title {
        font-size: 0.55rem;
    }

    .section-experiences-slideshow .slide-control {
        width: 40px;
        height: 40px;
    }

    .section-experiences-slideshow .slide-control.prev {
        left: var(--space-sm);
    }

    .section-experiences-slideshow .slide-control.next {
        right: var(--space-sm);
    }
}

@media (max-width: 768px) {
    .section-experiences-slideshow,
    .section-experiences-slideshow .slideshow-wrapper,
    .section-experiences-slideshow .slides-container {
        min-height: 85vh;
        max-height: none;
    }

    .section-experiences-slideshow .slide-content {
        margin-left: 0;
        margin: 0 auto;
        padding: var(--space-lg);
        text-align: center;
    }

    .section-experiences-slideshow .slide-number {
        font-size: 2.5rem;
    }

    .section-experiences-slideshow .slide-title {
        font-size: 1.5rem;
    }

    .section-experiences-slideshow .slide-description {
        font-size: 0.9rem;
    }

    .section-experiences-slideshow .slide-features {
        text-align: left;
    }

    .section-experiences-slideshow .slide-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .section-experiences-slideshow .slide-nav {
        padding: var(--space-md) var(--space-xs) var(--space-sm);
    }

    .section-experiences-slideshow .slide-nav-item {
        padding: 0.3rem 0.4rem;
    }

    .section-experiences-slideshow .slide-nav-item .nav-number {
        font-size: 0.9rem;
    }

    .section-experiences-slideshow .slide-nav-item .nav-title {
        font-size: 0.5rem;
    }

    .section-experiences-slideshow .slide-control {
        display: none;
    }

    .section-experiences-slideshow .btn {
        width: 100%;
    }
}

/* ============================================
   STACK SCROLL ANIMATION - Expériences
   ============================================ */
.section-stack-scroll {
    position: relative;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    overflow: hidden;
}

.stack-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.stack-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
}

/* Individual Card Styling */
.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    will-change: transform, opacity;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.stack-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stack-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s ease-out;
    filter: brightness(1.15);
}

.stack-card.active .stack-card-image img {
    transform: scale(1);
}

.stack-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
}

.stack-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3xl);
    max-width: 600px;
    z-index: 10;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-card.active .stack-card-content {
    transform: translateY(0);
    opacity: 1;
}

.stack-card-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 30px rgba(198, 167, 106, 0.3);
}

.stack-card-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.stack-card-description {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.stack-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stack-card-features li {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-gold);
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stack-card-features li:hover {
    background: rgba(198, 167, 106, 0.2);
    padding-left: 1.5rem;
}

/* Navigation */
.stack-nav {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: var(--space-xs);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(198, 167, 106, 0.2);
}

.stack-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: var(--space-xs) var(--space-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.stack-nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-nav-item.active::after,
.stack-nav-item:hover::after {
    width: 80%;
}

.stack-nav-item .nav-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-500);
    transition: all 0.3s ease;
}

.stack-nav-item.active .nav-number,
.stack-nav-item:hover .nav-number {
    color: var(--color-gold);
    transform: scale(1.1);
}

.stack-nav-item .nav-title {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    transition: color 0.3s ease;
}

.stack-nav-item.active .nav-title,
.stack-nav-item:hover .nav-title {
    color: var(--color-white);
}

/* Scroll Hint */
.stack-scroll-hint {
    position: absolute;
    bottom: calc(var(--space-xl) + 80px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: scrollHintBounce 2s ease-in-out infinite;
}

.stack-scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: scrollHintArrow 2s ease-in-out infinite;
}

@keyframes scrollHintBounce {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes scrollHintArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Progress Bar */
.stack-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 30;
}

.stack-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), #d4b87a);
    transition: width 0.15s ease-out;
    box-shadow: 0 0 10px rgba(198, 167, 106, 0.5);
}

/* Card shadows for depth effect */
.stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stack-card.transitioning::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .stack-card-content {
        padding: var(--space-2xl);
        max-width: 500px;
    }

    .stack-card-number {
        font-size: 3rem;
    }

    .stack-nav {
        padding: var(--space-xs) var(--space-sm);
        gap: 0.25rem;
    }

    .stack-nav-item {
        padding: var(--space-xs);
    }
}

@media (max-width: 768px) {
    .stack-wrapper {
        height: 100vh;
    }

    .stack-card-content {
        padding: var(--space-xl);
        max-width: 100%;
        text-align: center;
    }

    .stack-card-number {
        font-size: 2.5rem;
    }

    .stack-card-title {
        font-size: 1.5rem;
    }

    .stack-card-description {
        font-size: 0.95rem;
    }

    .stack-card-features {
        text-align: left;
    }

    .stack-card-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .stack-nav {
        bottom: var(--space-lg);
        padding: var(--space-xs);
        gap: 0.15rem;
    }

    .stack-nav-item {
        padding: 0.3rem 0.4rem;
    }

    .stack-nav-item .nav-number {
        font-size: 0.9rem;
    }

    .stack-nav-item .nav-title {
        font-size: 0.5rem;
    }

    .stack-scroll-hint {
        bottom: calc(var(--space-lg) + 70px);
        font-size: 0.65rem;
    }

    .stack-card .btn {
        width: 100%;
    }
}

/* ============================================
   PROCESS HORIZONTAL SCROLL - Fonctionnement
   ============================================ */
.section-process-scroll {
    padding: 0;
    background-color: var(--color-black);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.section-process-scroll .container {
    max-width: 100%;
    padding: 0;
    height: 100vh;
}

.section-process-scroll .slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Process Navigation - horizontal en haut */
.section-process-scroll .slideshow-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.8) 50%, transparent 100%);
    padding: var(--space-lg) var(--space-md);
    padding-top: calc(var(--space-lg) + 60px);
}

.section-process-scroll .slide-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.section-process-scroll .slide-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: width 0.4s ease;
}

.section-process-scroll .slide-nav-item.active::after,
.section-process-scroll .slide-nav-item:hover::after {
    width: 100%;
}

.section-process-scroll .slide-nav-item .nav-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-500);
    transition: all 0.4s ease;
}

.section-process-scroll .slide-nav-item.active .nav-number {
    color: var(--color-gold);
    transform: scale(1.1);
}

.section-process-scroll .slide-nav-item:hover .nav-number {
    color: var(--color-gold);
}

.section-process-scroll .slide-nav-item .nav-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.section-process-scroll .slide-nav-item.active .nav-title,
.section-process-scroll .slide-nav-item:hover .nav-title {
    color: var(--color-white);
}

/* Container horizontal pour les slides */
.section-process-scroll .slideshow-container {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Track horizontal qui contient tous les slides */
.process-slides-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

/* Slides individuels pour le scroll horizontal */
.section-process-scroll .slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.section-process-scroll .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-process-scroll .slide.active .slide-image {
    transform: scale(1);
}

.section-process-scroll .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.4) 0%,
        rgba(15, 15, 15, 0.2) 40%,
        rgba(15, 15, 15, 0.15) 100%
    );
}

/* Contenu du slide */
.section-process-scroll .slide-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding: var(--space-4xl) var(--space-xl);
    margin-left: 8%;
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                opacity 0.8s ease 0.2s;
}

.section-process-scroll .slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.section-process-scroll .slide-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.6;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-process-scroll .slide.active .slide-number {
    opacity: 1;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
}

.section-process-scroll .slide-content h3 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.section-process-scroll .slide.active .slide-content h3 {
    transform: translateX(0);
    opacity: 1;
}

.section-process-scroll .slide-content > p {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}

.section-process-scroll .slide.active .slide-content > p {
    transform: translateX(0);
    opacity: 1;
}

/* Features list */
.section-process-scroll .slide-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section-process-scroll .slide-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-gray-200);
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.section-process-scroll .slide.active .slide-features li {
    transform: translateX(0);
    opacity: 1;
}

.section-process-scroll .slide.active .slide-features li:nth-child(1) { transition-delay: 0.5s; }
.section-process-scroll .slide.active .slide-features li:nth-child(2) { transition-delay: 0.6s; }
.section-process-scroll .slide.active .slide-features li:nth-child(3) { transition-delay: 0.7s; }

.section-process-scroll .slide-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Progress bar en bas */
.section-process-scroll .slideshow-controls {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.section-process-scroll .slide-control {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(198, 167, 106, 0.4);
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-process-scroll .slide-control:hover {
    background: rgba(198, 167, 106, 0.2);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.section-process-scroll .slide-control svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.section-process-scroll .slide-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.section-process-scroll .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Scroll hint */
.process-scroll-hint {
    position: absolute;
    bottom: calc(var(--space-xl) + 80px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    z-index: 50;
    animation: scrollHintBounce 2s infinite;
    pointer-events: none;
}

.process-scroll-hint span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-400);
}

.process-scroll-hint svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

@keyframes scrollHintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Decorative elements */
.process-step-indicator {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 50;
}

.process-step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(198, 167, 106, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.process-step-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(198, 167, 106, 0.5);
    transform: scale(1.3);
}

.process-step-dot:hover {
    border-color: var(--color-gold);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-process-scroll .slideshow-nav {
        padding-top: calc(var(--space-md) + 50px);
        gap: 0;
    }

    .section-process-scroll .slide-nav-item {
        padding: var(--space-xs) var(--space-sm);
    }

    .section-process-scroll .slide-nav-item .nav-number {
        font-size: 1.2rem;
    }

    .section-process-scroll .slide-nav-item .nav-title {
        font-size: 0.6rem;
    }

    .section-process-scroll .slide-content {
        max-width: 550px;
        margin-left: 5%;
        padding: var(--space-3xl) var(--space-lg);
    }

    .section-process-scroll .slide-number {
        font-size: 4.5rem;
    }

    .section-process-scroll .slide-content h3 {
        font-size: 2.2rem;
    }

    .process-step-indicator {
        right: 3%;
    }
}

@media (max-width: 768px) {
    .section-process-scroll .slideshow-nav {
        padding: var(--space-sm);
        padding-top: calc(var(--space-sm) + 50px);
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-process-scroll .slide-nav-item .nav-title {
        display: none;
    }

    .section-process-scroll .slide-nav-item .nav-number {
        font-size: 1rem;
    }

    .section-process-scroll .slide-content {
        max-width: 100%;
        margin-left: 0;
        padding: var(--space-xl) var(--space-md);
        padding-top: 120px;
    }

    .section-process-scroll .slide-number {
        font-size: 3.5rem;
    }

    .section-process-scroll .slide-content h3 {
        font-size: 1.8rem;
    }

    .section-process-scroll .slide-content > p {
        font-size: 1rem;
    }

    .section-process-scroll .slideshow-controls {
        bottom: var(--space-md);
    }

    .section-process-scroll .slide-control {
        width: 40px;
        height: 40px;
    }

    .section-process-scroll .slide-progress {
        width: 120px;
    }

    .process-step-indicator {
        display: none;
    }

    .process-scroll-hint {
        bottom: calc(var(--space-md) + 60px);
    }
}

@media (max-width: 480px) {
    .section-process-scroll .slide-content {
        padding: var(--space-lg) var(--space-sm);
        padding-top: 100px;
    }

    .section-process-scroll .slide-number {
        font-size: 2.5rem;
    }

    .section-process-scroll .slide-content h3 {
        font-size: 1.5rem;
    }

    .section-process-scroll .slide-content > p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .section-process-scroll .slide-features li {
        font-size: 0.85rem;
    }

    .section-process-scroll .slideshow-controls {
        gap: var(--space-sm);
    }

    .section-process-scroll .slide-progress {
        width: 80px;
    }
}

/* ============================================
   SIMULATEUR DE REVENUS
   ============================================ */
.section-simulator {
    background: var(--color-black);
    padding: var(--space-xl) 0;
}

.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

/* Formulaire (colonne gauche) */
.simulator-form {
    background: var(--color-black-soft);
    border: 1px solid rgba(198, 167, 106, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.simulator-field {
    margin-bottom: var(--space-sm);
}

.simulator-field:last-child {
    margin-bottom: 0;
}

.simulator-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

/* Options boutons */
.simulator-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.simulator-option {
    background: transparent;
    border: 1px solid rgba(198, 167, 106, 0.3);
    color: var(--color-white);
    padding: 0.4rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.simulator-option:hover {
    border-color: var(--color-gold);
    background: rgba(198, 167, 106, 0.1);
}

.simulator-option.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* Options standing avec multiplicateur */
.standing-options .simulator-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.4rem 1rem;
}

.option-title {
    font-weight: 500;
}

.option-multiplier {
    font-size: 0.75rem;
    opacity: 0.7;
}

.simulator-option.active .option-multiplier {
    opacity: 1;
}

/* Select dropdown */
.simulator-select-wrapper {
    position: relative;
}

.simulator-select {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(198, 167, 106, 0.3);
    color: var(--color-white);
    padding: 0.5rem 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    appearance: none;
    transition: border-color var(--transition-fast);
}

.simulator-select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.simulator-select option {
    background: var(--color-black);
    color: var(--color-white);
}

.simulator-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    pointer-events: none;
}

/* Sliders */
.simulator-slider-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.simulator-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(198, 167, 106, 0.2);
    border-radius: 3px;
    outline: none;
}

.simulator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.simulator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.simulator-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.simulator-slider-value {
    min-width: 80px;
    text-align: right;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-white);
}

.simulator-slider-value span {
    font-weight: 600;
    color: var(--color-gold);
}

/* Équipements */
.simulator-equipments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border: 1px solid rgba(198, 167, 106, 0.15);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.equipment-item:hover {
    border-color: rgba(198, 167, 106, 0.4);
}

.equipment-item input {
    display: none;
}

.equipment-check {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(198, 167, 106, 0.4);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.equipment-check svg {
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.equipment-item input:checked + .equipment-check {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.equipment-item input:checked + .equipment-check svg {
    opacity: 1;
    stroke: var(--color-black);
}

.equipment-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.equipment-item input:checked ~ .equipment-label {
    color: var(--color-white);
}

/* Résultats (colonne droite) */
.simulator-results {
    background: linear-gradient(145deg, var(--color-black-soft) 0%, rgba(198, 167, 106, 0.08) 100%);
    border: 1px solid rgba(198, 167, 106, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(198, 167, 106, 0.15);
    margin-bottom: var(--space-sm);
}

.results-header h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-white);
    margin: 0;
}

.occupancy-rate {
    text-align: right;
}

.occupancy-label {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.occupancy-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* Prix par nuit */
.results-price {
    margin-bottom: var(--space-sm);
}

.price-label {
    font-size: 0.7rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.price-seasons {
    display: flex;
    gap: var(--space-sm);
}

.price-season {
    flex: 1;
    background: rgba(198, 167, 106, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.season-name {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gray-400);
    margin-bottom: 0.15rem;
}

.season-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

/* Revenus */
.results-revenue {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(198, 167, 106, 0.15);
}

.revenue-row {
    display: flex;
    gap: var(--space-sm);
}

.revenue-item {
    flex: 1;
    background: rgba(198, 167, 106, 0.05);
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-gold);
}

.revenue-label {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.revenue-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

/* Commission */
.results-commission {
    margin-bottom: var(--space-sm);
}

.commission-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--color-gray-400);
    margin-bottom: 0.35rem;
}

.commission-label svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

.commission-row {
    display: flex;
    gap: var(--space-sm);
}

.commission-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.commission-type {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.commission-value {
    font-size: 0.8rem;
    color: #e57373;
}

/* Revenus nets */
.results-net {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(198, 167, 106, 0.15);
}

.net-row {
    display: flex;
    gap: var(--space-sm);
}

.net-item {
    flex: 1;
    background: rgba(198, 167, 106, 0.08);
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
}

.net-item.highlight {
    background: var(--color-gold);
}

.net-label {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.net-item.highlight .net-label {
    color: rgba(15, 15, 15, 0.7);
}

.net-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold);
}

.net-item.highlight .net-value {
    color: var(--color-black);
}

/* Analyse */
.results-analysis {
    margin-bottom: var(--space-sm);
}

.results-analysis h4,
.results-recommendations h4 {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-gold);
    margin: 0 0 0.35rem;
}

.results-analysis p {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin: 0;
}

/* Recommandations */
.results-recommendations {
    margin-bottom: var(--space-sm);
}

.results-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-recommendations li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--color-gray-300);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(198, 167, 106, 0.1);
}

.results-recommendations li:last-child {
    border-bottom: none;
}

.results-recommendations svg {
    width: 12px;
    height: 12px;
    color: #81c784;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA */
.results-cta {
    text-align: center;
}

.results-cta .btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

/* Responsive simulateur */
@media (max-width: 1024px) {
    .simulator-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .simulator-form,
    .simulator-results {
        padding: var(--space-lg);
    }

    .simulator-options {
        gap: 0.4rem;
    }

    .simulator-option {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .standing-options .simulator-option {
        padding: 0.6rem 1rem;
    }

    .simulator-equipments {
        grid-template-columns: 1fr 1fr;
    }

    .equipment-item {
        padding: 0.4rem 0.5rem;
    }

    .equipment-label {
        font-size: 0.75rem;
    }

    .price-seasons,
    .revenue-row,
    .commission-row,
    .net-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .occupancy-rate {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .simulator-equipments {
        grid-template-columns: 1fr;
    }

    .simulator-slider-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .simulator-slider-value {
        text-align: left;
    }
}

/* ============================================
   PREMIUM CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-sans);
}

/* Toggle Button */
.chatbot-toggle {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #D4BA8A 50%, var(--color-gold) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(198, 167, 106, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(198, 167, 106, 0.5), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.chatbot-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.chatbot-toggle-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-black);
    transition: all 0.3s ease;
}

.chatbot-toggle-icon .icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.chatbot-container.active .chatbot-toggle-icon .icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.chatbot-container.active .chatbot-toggle-icon .icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Pulse Animation */
.chatbot-toggle-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-gold);
    animation: chatbot-pulse 2s infinite;
    z-index: -1;
}

@keyframes chatbot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chatbot-container.active .chatbot-toggle-pulse {
    display: none;
}

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 400px;
    height: 550px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(198, 167, 106, 0.1);
    border: 1px solid rgba(198, 167, 106, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.chatbot-container.active .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(198, 167, 106, 0.15) 0%, rgba(198, 167, 106, 0.05) 100%);
    border-bottom: 1px solid rgba(198, 167, 106, 0.2);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid rgba(198, 167, 106, 0.3);
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-header-text h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 4px 0;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: status-blink 2s infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(198, 167, 106, 0.3);
}

.chatbot-close svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(198, 167, 106, 0.3) transparent;
}

.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(198, 167, 106, 0.3);
    border-radius: 10px;
}

/* Message Bubbles */
.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: message-appear 0.3s ease;
}

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

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(198, 167, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.message-avatar.user-avatar {
    background: var(--color-gold);
}

.message-avatar.user-avatar svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-black);
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--color-gold) 0%, #D4BA8A 100%);
    color: var(--color-black);
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(198, 167, 106, 0.6);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Suggestions */
.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid rgba(198, 167, 106, 0.1);
}

.suggestion-btn {
    padding: 8px 14px;
    background: rgba(198, 167, 106, 0.1);
    border: 1px solid rgba(198, 167, 106, 0.3);
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: rgba(198, 167, 106, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Input Area */
.chatbot-input-container {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(198, 167, 106, 0.15);
}

.chatbot-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 167, 106, 0.2);
    border-radius: 14px;
    padding: 4px 4px 4px 16px;
    transition: all 0.3s ease;
}

.chatbot-input-wrapper:focus-within {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(198, 167, 106, 0.15);
}

.chatbot-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.9rem;
    padding: 10px 0;
    outline: none;
}

.chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chatbot-send {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #D4BA8A 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(198, 167, 106, 0.4);
}

.chatbot-send svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-black);
}

.chatbot-powered {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 10px 0 0 0;
}

.chatbot-powered span {
    color: var(--color-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-toggle {
        width: 58px;
        height: 58px;
    }

    .chatbot-window {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .chatbot-container.active .chatbot-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .chatbot-header {
        padding: 15px;
    }

    .chatbot-messages {
        padding: 15px;
    }

    .chatbot-suggestions {
        padding: 10px 15px;
    }

    .chatbot-input-container {
        padding: 12px 15px;
    }
}

/* ============================================
   MATINÉE PARISIENNE - STACKED PHOTOS IN CARD
   ============================================ */

/* Container pour la stack-card Matinée */
.stack-card-matinee {
    position: relative;
}

/* Container des photos en fond - plein écran */
.matinee-bg-container {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block !important;
}

/* Chaque photo couvre tout le fond */
.matinee-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.matinee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Z-index pour l'empilement */
.matinee-photo[data-photo="0"] { z-index: 7; }
.matinee-photo[data-photo="1"] { z-index: 6; }
.matinee-photo[data-photo="2"] { z-index: 5; }
.matinee-photo[data-photo="3"] { z-index: 4; }
.matinee-photo[data-photo="4"] { z-index: 3; }
.matinee-photo[data-photo="5"] { z-index: 2; }
.matinee-photo[data-photo="6"] { z-index: 1; }

/* Photo qui s'envole */
.matinee-photo.is-flying {
    transform: translateX(100%) scale(0.8) !important;
    opacity: 0;
    z-index: 20 !important;
}

/* Overlay au-dessus des images */
.stack-card-matinee .stack-card-overlay {
    z-index: 8;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* Contenu au-dessus de tout */
.stack-card-matinee .stack-card-content {
    z-index: 10;
}

/* Bouton avec icône SVG */
.stack-card-buttons .btn-secondary svg {
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.stack-card-buttons .btn-secondary:hover svg {
    stroke: var(--color-black);
}

/* ============================================
   MENU LIGHTBOX / MODAL
   ============================================ */

.menu-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.lightbox-close:hover svg {
    stroke: var(--color-black);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: var(--space-lg);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE - LIGHTBOX
   ============================================ */

@media (max-width: 480px) {
    .lightbox-close {
        top: -40px;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   COFFRETS — Vitrine carrousel (refonte design)
   ============================================ */
.section-coffrets {
    position: relative;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.coffrets-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* En-tête */
.coffrets-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.coffrets-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-gold);
}

.coffrets-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

/* Onglets */
.coffrets-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.coffret-tab {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(198, 167, 106, 0.25);
    color: var(--color-gray-400);
    padding: 0.6rem 1.3rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.coffret-tab .num {
    font-size: 0.7rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.coffret-tab .ttl {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.coffret-tab:hover {
    border-color: var(--color-gold);
    color: var(--color-white);
}

.coffret-tab.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.coffret-tab.active .num,
.coffret-tab.active .ttl {
    color: var(--color-black);
}

/* Scène + flèches */
.coffret-stage {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.coffret-slides {
    flex: 1;
    position: relative;
    min-width: 0;
}

.coffret-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(198, 167, 106, 0.5);
    color: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 5;
}

.coffret-arrow:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.coffret-arrow svg { width: 22px; height: 22px; }

/* Slides : une seule visible à la fois */
.coffret-slide { display: none; }

.coffret-slide.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    animation: coffretFade 0.5s ease;
}

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

.coffret-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(198, 167, 106, 0.2);
    background: #151515;
}

.coffret-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Le bloc matinée (7 photos) remplit la zone photo */
.coffret-photo .matinee-bg-container { border-radius: inherit; }

/* Infos */
.coffret-info { padding: var(--space-md) 0; }

.coffret-index {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: rgba(198, 167, 106, 0.6);
    margin-bottom: var(--space-sm);
}

.coffret-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.coffret-desc {
    font-size: 1rem;
    color: var(--color-gray-300);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.coffret-features {
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.coffret-features li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--color-gray-300);
    font-size: 0.92rem;
}

.coffret-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* Compteur */
.coffret-counter {
    text-align: center;
    margin-top: var(--space-lg);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 900px) {
    .coffret-slide.active { grid-template-columns: 1fr; gap: var(--space-lg); }
    .coffrets-title { font-size: 2rem; }
    .coffret-name { font-size: 1.6rem; }
    .coffret-arrow { width: 40px; height: 40px; }
}

@media (max-width: 600px) {
    .coffret-stage { gap: var(--space-xs); }
    .coffret-arrow { width: 36px; height: 36px; }
    .coffret-arrow svg { width: 18px; height: 18px; }
    .coffret-tab { padding: 0.5rem 0.9rem; }
    .coffret-tab .ttl { font-size: 0.8rem; }
}

/* ============================================
   SERVICES — Liste éditoriale + image au survol (refonte DA)
   ============================================ */
.section-services .services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: var(--space-lg);
}

.service-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 1.8rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transition: padding-left 0.4s ease, background 0.4s ease;
}

/* Liseré or qui se déploie au survol */
.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.service-row:hover::before { transform: scaleY(1); }

.service-row:hover {
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(198, 167, 106, 0.06), transparent 60%);
}

.service-row-num {
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: #B08D3E;
    width: 3rem;
    transition: color 0.4s ease;
}

.service-row:hover .service-row-num { color: #8a6d2c; }

.service-row-text { flex: 1; min-width: 0; }

.service-row-text h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.service-row:hover .service-row-text h3 { color: #8a6d2c; }

/* Description : révélée au survol (desktop) */
.service-row-text p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: max-height 0.45s ease, opacity 0.45s ease, margin-top 0.45s ease;
}

.service-row:hover .service-row-text p {
    max-height: 90px;
    opacity: 1;
    margin-top: 0.5rem;
}

.service-row-arrow {
    flex-shrink: 0;
    color: #B08D3E;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
}

.service-row-arrow svg { width: 26px; height: 26px; display: block; }

.service-row:hover .service-row-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #8a6d2c;
}

/* Image flottante qui suit le curseur */
.services-hover-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    height: 230px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    z-index: 60;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(198, 167, 106, 0.4);
    transition: opacity 0.35s ease;
    will-change: transform;
}

.services-hover-img.visible { opacity: 1; }

/* Mobile / tablette : pas de survol → liste lisible, descriptions visibles, pas d'image flottante */
@media (max-width: 900px) {
    .services-hover-img { display: none; }
    .service-row { gap: var(--space-md); padding: 1.4rem 0; }
    .service-row-text h3 { font-size: 1.35rem; }
    .service-row-text p {
        max-height: none;
        opacity: 1;
        margin-top: 0.5rem;
    }
    .service-row-arrow { display: none; }
    .service-row:hover { padding-left: 0.5rem; }
}

/* ============================================
   SERVICES DE PRESTIGE — cartes (services.html)
   Réutilise l'anatomie .corporate-item, DA noir + or.
   ============================================ */
.section-prestige { background-color: var(--color-black); }

.prestige-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.prestige-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-gray-200);
    border: 1px solid rgba(198, 167, 106, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.prestige-card:hover {
    border-color: rgba(198, 167, 106, 0.5);
    transform: translateY(-4px);
}

.prestige-card__icon {
    width: 46px;
    height: 46px;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}
.prestige-card__icon svg { width: 100%; height: 100%; }

.prestige-card .section-subtitle { text-align: left; margin-bottom: var(--space-xs); }

.prestige-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.prestige-card__tagline {
    color: var(--color-gray-400);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.prestige-card__note {
    color: var(--color-gray-400);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.prestige-card ul {
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
}
.prestige-card ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(198, 167, 106, 0.12);
    font-size: 0.9375rem;
    color: var(--color-gray-300);
}
.prestige-card ul li:last-child { border-bottom: none; }
.prestige-card ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.5rem;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.prestige-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-md);
}
.prestige-card__tarif {
    font-family: var(--font-serif);
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.prestige-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(198, 167, 106, 0.5);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
}

/* ============================================
   GRILLE TARIFAIRE CHAUFFEUR (tarifs.html)
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Table desktop */
.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-md);
}
.pricing-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.pricing-table thead th {
    background-color: var(--color-gray-200);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    border-bottom: 1px solid rgba(198, 167, 106, 0.3);
    vertical-align: bottom;
}
.pricing-table thead th:first-child { text-align: left; }
.pt-cat { display: block; font-family: var(--font-serif); font-size: 1rem; color: var(--color-gold); }
.pt-sub { display: block; font-size: 0.7rem; color: var(--color-gray-400); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }

.pricing-table tbody th[scope="row"] {
    text-align: left;
    padding: var(--space-md) var(--space-sm);
    color: var(--color-white);
    font-weight: 400;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 260px;
}
.pt-presta { display: block; }
.pt-detail { display: block; font-size: 0.75rem; color: var(--color-gray-500); margin-top: 0.2rem; font-style: italic; }

.pricing-table tbody td {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    color: var(--color-gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-table tbody tr:hover td,
.pricing-table tbody tr:hover th { background-color: rgba(198, 167, 106, 0.05); }

/* Cartes mobile (par catégorie) */
.pricing-mobile { display: none; }
.pricing-mobile-card {
    background-color: var(--color-gray-200);
    border: 1px solid rgba(198, 167, 106, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}
.ptm-head { border-bottom: 1px solid rgba(198, 167, 106, 0.3); padding-bottom: var(--space-sm); margin-bottom: var(--space-sm); }
.ptm-head h3 { font-family: var(--font-serif); color: var(--color-gold); font-size: 1.3rem; }
.ptm-head p { color: var(--color-gray-400); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.15rem; }
.ptm-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ptm-line:last-child { border-bottom: none; }
.ptm-presta { color: var(--color-gray-300); font-size: 0.875rem; flex: 1; }
.ptm-presta em { color: var(--color-gray-500); font-style: italic; }
.ptm-val { color: var(--color-white); font-weight: 500; text-align: right; white-space: nowrap; }

/* Blocs d'informations */
.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}
.pricing-info-block h3 {
    font-family: var(--font-serif);
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(198, 167, 106, 0.3);
}
.pricing-info-block ul { list-style: none; margin: 0; padding: 0; }
.pricing-info-block li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--color-gray-300);
    font-size: 0.9rem;
}
.pricing-info-block li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.5rem;
    background-color: var(--color-gold);
    border-radius: 50%;
}
.pricing-info-block--legal { margin-top: var(--space-xl); }
.pricing-info-block--legal li { font-size: 0.8rem; color: var(--color-gray-500); }
.pricing-info-block--legal li::before { background-color: var(--color-gray-600); }

/* Bascule table <-> cartes mobile */
@media (max-width: 860px) {
    .pricing-table-wrap { display: none; }
    .pricing-mobile { display: block; }
}
@media (max-width: 600px) {
    .prestige-card { padding: var(--space-lg); }
    .prestige-card__badge { position: static; display: inline-block; margin-bottom: var(--space-sm); align-self: flex-start; }
}

/* ============================================
   COLLECTION AUTOMOBILE — onglets Véhicules / Grille tarifaire
   ============================================ */
.vehicles-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}
.veh-tab {
    background: transparent;
    border: 1px solid rgba(198, 167, 106, 0.35);
    color: var(--color-gray-300);
    padding: 0.65rem 1.6rem;
    border-radius: 40px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.veh-tab:hover { border-color: var(--color-gold); color: var(--color-white); }
.veh-tab.active { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-black); }

.veh-tab-panel { display: none; }
.veh-tab-panel.active { display: block; animation: coffretFade 0.4s ease; }

.veh-grille-inner {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(198, 167, 106, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}
.veh-grille-title {
    font-family: var(--font-serif);
    color: var(--color-white);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: var(--space-lg);
}
@media (max-width: 600px) {
    .veh-grille-inner { padding: var(--space-md); }
    .veh-tab { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
}

/* ============================================
   BAS DE PAGE — Conciergerie ↔ Coordonnées côte à côte
   ============================================ */
/* Le bloc coordonnées + newsletter occupe la colonne droite de la Conciergerie */
.concierge-content > .contact-info {
    background-color: var(--color-gray-200);
    border: 1px solid rgba(198, 167, 106, 0.15);
    border-radius: var(--radius-md);
    /* Case compacte : moins large, moins haute, alignée à droite de sa colonne */
    padding: var(--space-lg);
    max-width: 400px;
    margin-left: auto;
    align-self: center;
}

.concierge-content > .contact-info h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
}

.concierge-content > .contact-info .contact-details { gap: var(--space-sm); }

.concierge-content > .contact-info .contact-item {
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
}

.concierge-content > .contact-info .contact-newsletter {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
}

/* Le formulaire, désormais seul dans la section Contact : centré, pas étiré */
.contact-content--solo {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
}

/* Côte à côte conservé sur écran moyen (au lieu d'empiler dès 1024px) */
@media (min-width: 861px) and (max-width: 1024px) {
    .concierge-content,
    .contact-content:not(.contact-content--solo) {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 860px) {
    .concierge-content > .contact-info { padding: var(--space-lg); }
}

/* ============================================
   RESPONSIVE — correctifs boutons flottants, footer & formulaire (mobile)
   ============================================ */
@media (max-width: 768px) {
    /* Boutons flottants : taille réduite, symétriques, collés aux coins */
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 16px;
        left: 16px;
    }
    .whatsapp-btn svg { width: 28px; height: 28px; }

    .chatbot {
        bottom: 16px;
        right: 16px;
    }
    .chatbot-toggle {
        width: 56px;
        height: 56px;
    }

    /* Le bas du footer (copyright + liens légaux) ne passe plus SOUS les boutons */
    .footer-bottom {
        padding-bottom: 80px;
    }

    /* Formulaire de contact : Nom / Email empilés (au lieu d'être serrés côte à côte) */
    .contact-form .form-row {
        flex-direction: column;
    }
}
