/* ===== HERO ULTRA-MODERNE ===== */

.luxe-hero-ultra-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* Couches d'arrière-plan dynamiques */
.luxe-hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxe-hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.luxe-hero-bg-primary {
    opacity: 0.3;
    background-image: url('https://adj.webgeneration.agency/wp-content/uploads/2025/07/e5ca9f3e1032925090961b7fff485c00.jpeg.webp');
}

.luxe-hero-bg-secondary {
    opacity: 0.2;
    background-image: url('https://adj.webgeneration.agency/wp-content/uploads/2025/07/Blue-Streetwear-Vintage-Outfit.jpg');
    animation: backgroundShift 15s infinite ease-in-out;
}

.luxe-hero-bg-tertiary {
    opacity: 0.1;
    background-image: url('https://adj.webgeneration.agency/wp-content/uploads/2025/07/a6dff377dd34adacbeaa802a444d47fd.jpg');
    animation: backgroundShift 20s infinite ease-in-out reverse;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

/* Overlay cristal */
.luxe-hero-crystal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(212, 175, 55, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 75%,
        rgba(212, 175, 55, 0.1) 100%
    );
    backdrop-filter: blur(1px);
    z-index: 2;
}

/* Particules flottantes */
.luxe-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.luxe-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
}

.luxe-particle:nth-child(1) { top: 20%; left: 10%; }
.luxe-particle:nth-child(2) { top: 60%; left: 80%; }
.luxe-particle:nth-child(3) { top: 40%; left: 30%; }
.luxe-particle:nth-child(4) { top: 80%; left: 60%; }
.luxe-particle:nth-child(5) { top: 15%; left: 70%; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translateY(-40px) translateX(-10px) scale(0.8);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) translateX(15px) scale(1.1);
        opacity: 0.9;
    }
}

/* Grille géométrique */
.luxe-hero-geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
}

.luxe-grid-svg {
    width: 100%;
    height: 100%;
    animation: gridPulse 8s infinite ease-in-out;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Container principal */
.luxe-hero-container-modern {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

/* Badge flottant */
.luxe-hero-floating-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    animation: badgeFloat 6s infinite ease-in-out;
}

.luxe-badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.5), rgba(255, 215, 0, 0.3));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-hero-floating-badge:hover .luxe-badge-glow {
    opacity: 1;
    animation: glowPulse 2s infinite ease-in-out;
}

.luxe-badge-text {
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.luxe-badge-sparkle {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #d4af37 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s infinite ease-in-out;
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Titre ultra-moderne */
.luxe-hero-title-ultra {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.luxe-title-word {
    display: inline-block;
    margin: 0 1rem;
}

.luxe-title-letter {
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: letterReveal 0.8s ease-out forwards;
    animation-delay: calc(var(--letter-index, 0) * 0.1s);
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
}

.luxe-title-letter[data-letter="L"] { --letter-index: 0; }
.luxe-title-letter[data-letter="u"] { --letter-index: 1; }
.luxe-title-letter[data-letter="x"] { --letter-index: 2; }
.luxe-title-letter[data-letter="e"] { --letter-index: 3; }
.luxe-title-letter[data-letter="É"] { --letter-index: 4; }
.luxe-title-letter[data-letter="l"] { --letter-index: 5; }
.luxe-title-letter[data-letter="é"] { --letter-index: 6; }
.luxe-title-letter[data-letter="g"] { --letter-index: 7; }
.luxe-title-letter[data-letter="a"] { --letter-index: 8; }
.luxe-title-letter[data-letter="n"] { --letter-index: 9; }
.luxe-title-letter[data-letter="c"] { --letter-index: 10; }

.luxe-title-separator {
    color: #d4af37;
    font-size: 0.8em;
    margin: 0 2rem;
    animation: separatorGlow 3s infinite ease-in-out;
}

.luxe-title-accent-ultra {
    display: block;
    color: #d4af37;
    font-style: italic;
    font-size: 0.7em;
    margin-top: 1rem;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s infinite ease-in-out, accentFloat 6s infinite ease-in-out;
}

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

@keyframes separatorGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 30px rgba(212, 175, 55, 1); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Description moderne */
.luxe-hero-description-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.luxe-description-line {
    display: block;
    opacity: 0;
    animation: lineReveal 1s ease-out forwards;
}

.luxe-description-line:nth-child(1) { animation-delay: 1s; }
.luxe-description-line:nth-child(2) { animation-delay: 1.2s; }
.luxe-description-line:nth-child(3) { animation-delay: 1.4s; }

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

/* Stats modernes */
.luxe-hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.luxe-stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.luxe-stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
}

.luxe-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    color: #d4af37;
    animation: iconFloat 4s infinite ease-in-out;
}

.luxe-stat-content {
    position: relative;
    z-index: 2;
}

.luxe-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.luxe-stat-plus,
.luxe-stat-percent {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
}

.luxe-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxe-stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-stat-card:hover .luxe-stat-glow {
    opacity: 1;
    animation: glowRotate 3s infinite linear;
}

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

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Actions modernes */
.luxe-hero-actions-modern {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.luxe-cta-holographic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.luxe-cta-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxe-cta-bg-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    opacity: 1;
}

.luxe-cta-bg-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #d4af37, #ffd700);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientShift 3s infinite ease-in-out;
}

.luxe-cta-holographic:hover .luxe-cta-bg-secondary {
    opacity: 1;
}

.luxe-cta-bg-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.6), rgba(255, 215, 0, 0.4));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-cta-holographic:hover .luxe-cta-bg-glow {
    opacity: 1;
    animation: glowPulse 2s infinite ease-in-out;
}

.luxe-cta-text {
    position: relative;
    z-index: 2;
}

.luxe-cta-icon-container {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.luxe-cta-holographic:hover .luxe-cta-icon-container {
    transform: translateX(5px);
}

.luxe-cta-icon {
    width: 100%;
    height: 100%;
}

.luxe-cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.luxe-cta-holographic:active .luxe-cta-ripple {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.luxe-cta-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.luxe-cta-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-cta-glass:hover .luxe-cta-glass-bg {
    opacity: 1;
}

.luxe-cta-glass-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-cta-glass:hover .luxe-cta-glass-border {
    opacity: 1;
    animation: borderRotate 2s infinite linear;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Éléments flottants */
.luxe-hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.luxe-floating-card {
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    animation: cardFloat 8s infinite ease-in-out;
}

.luxe-card-quality {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.luxe-card-delivery {
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.luxe-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-floating-card:hover .luxe-card-glow {
    opacity: 1;
}

.luxe-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.luxe-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    color: #d4af37;
}

.luxe-card-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.luxe-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.luxe-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.luxe-card-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: cardParticleFloat 6s infinite ease-in-out;
}

.luxe-card-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.luxe-card-particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.luxe-card-particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(-30px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(10px); }
}

@keyframes cardParticleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(0.8);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Indicateur de scroll */
.luxe-hero-scroll-indicator-modern {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.luxe-scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.luxe-scroll-animation {
    position: relative;
    width: 2px;
    height: 40px;
}

.luxe-scroll-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.8) 50%, transparent 100%);
    animation: scrollLineMove 2s infinite ease-in-out;
}

.luxe-scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    animation: scrollDotMove 2s infinite ease-in-out;
}

@keyframes scrollLineMove {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes scrollDotMove {
    0% { transform: translateX(-50%) translateY(0px); }
    100% { transform: translateX(-50%) translateY(34px); }
}

/* ===== MARQUES ULTRA-SOPHISTIQUÉES ===== */

.luxe-brands-ultra-modern {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

/* Fond avec profondeur */
.luxe-brands-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxe-brands-depth-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.luxe-brands-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.luxe-brands-layer-1 {
    background: radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: layerMove1 20s infinite ease-in-out;
}

.luxe-brands-layer-2 {
    background: radial-gradient(ellipse at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: layerMove2 25s infinite ease-in-out reverse;
}

.luxe-brands-layer-3 {
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    animation: layerMove3 30s infinite ease-in-out;
}

@keyframes layerMove1 {
    0%, 100% { transform: translateX(0%) translateY(0%); }
    25% { transform: translateX(10%) translateY(-5%); }
    50% { transform: translateX(-5%) translateY(10%); }
    75% { transform: translateX(5%) translateY(-10%); }
}

@keyframes layerMove2 {
    0%, 100% { transform: translateX(0%) translateY(0%) scale(1); }
    33% { transform: translateX(-8%) translateY(8%) scale(1.1); }
    66% { transform: translateX(8%) translateY(-8%) scale(0.9); }
}

@keyframes layerMove3 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Particules de luxe */
.luxe-brands-luxury-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.luxe-luxury-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: luxuryParticleFloat 12s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes luxuryParticleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(0.8);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translateY(-60px) translateX(-20px) scale(1);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-30px) translateX(30px) scale(1.1);
        opacity: 0.9;
    }
}

/* Container principal */
.luxe-brands-container-ultra {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

/* En-tête ultra */
.luxe-brands-header-ultra {
    text-align: center;
    margin-bottom: 5rem;
}

.luxe-brands-title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.luxe-brands-title-ultra {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.luxe-brands-title-main {
    color: #ffffff;
    display: block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.luxe-brands-title-accent {
    color: #d4af37;
    display: block;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s infinite ease-in-out;
}

.luxe-brands-title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: titleGlowPulse 6s infinite ease-in-out;
}

.luxe-brands-title-underline {
    position: relative;
    width: 100px;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    margin: 1rem auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.luxe-brands-underline-fill {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: underlineFill 3s infinite ease-in-out;
}

@keyframes titleGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes underlineFill {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.luxe-brands-subtitle-ultra {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.luxe-brands-subtitle-line {
    display: block;
    opacity: 0;
    animation: subtitleReveal 1s ease-out forwards;
}

.luxe-brands-subtitle-line:nth-child(1) { animation-delay: 0.5s; }
.luxe-brands-subtitle-line:nth-child(2) { animation-delay: 0.7s; }

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

/* Carrousel 3D */
.luxe-brands-carousel-3d {
    position: relative;
    margin-bottom: 5rem;
}

.luxe-brands-perspective-container {
    perspective: 1200px;
    perspective-origin: center center;
}

.luxe-brands-track-3d {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cartes de marques 3D */
.luxe-brand-card-3d {
    flex: 0 0 300px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.luxe-brand-card-3d:hover {
    transform: rotateY(180deg) scale(1.05);
}

.luxe-brand-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.luxe-brand-card-front,
.luxe-brand-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.luxe-brand-card-front {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxe-brand-card-back {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(15px);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.luxe-brand-logo-container {
    position: relative;
    text-align: center;
}

.luxe-brand-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: logoGlowPulse 4s infinite ease-in-out;
}

.luxe-brand-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.luxe-brand-logo-accent {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: accentGlow 3s infinite ease-in-out;
}

@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes accentGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.luxe-brand-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.luxe-brand-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: brandParticleFloat 8s infinite ease-in-out;
}

.luxe-brand-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.luxe-brand-particle:nth-child(2) {
    top: 70%;
    right: 20%;
    animation-delay: 2.5s;
}

.luxe-brand-particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: 5s;
}

@keyframes brandParticleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(0.8);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-25px) scale(1.2);
        opacity: 1;
    }
}

/* Info au dos de la carte */
.luxe-brand-info {
    text-align: center;
    color: #ffffff;
}

.luxe-brand-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.luxe-brand-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.luxe-brand-stats {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.luxe-brand-stats span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation ultra */
.luxe-brands-navigation-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.luxe-brands-nav-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.luxe-nav-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-brands-nav-btn:hover .luxe-nav-btn-bg {
    opacity: 1;
}

.luxe-nav-btn-icon {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.luxe-brands-nav-btn:hover .luxe-nav-btn-icon {
    transform: scale(1.2);
}

.luxe-nav-btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.luxe-brands-nav-btn:active .luxe-nav-btn-ripple {
    animation: navRippleEffect 0.6s ease-out;
}

@keyframes navRippleEffect {
    to {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Indicateurs ultra */
.luxe-brands-indicators-ultra {
    display: flex;
    gap: 0.5rem;
}

.luxe-brand-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxe-brand-indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

.luxe-brand-indicator:not(.active):hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

/* Stats des marques */
.luxe-brands-stats-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.luxe-brands-stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.luxe-brands-stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
}

.luxe-stat-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-brands-stat-card:hover .luxe-stat-card-glow {
    opacity: 1;
    animation: statGlowRotate 3s infinite linear;
}

.luxe-stat-card-content {
    position: relative;
    z-index: 2;
}

.luxe-stat-card-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.luxe-stat-card-percent {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
}

.luxe-stat-card-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes statGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Effet de transition */
.luxe-brands-transition-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.luxe-transition-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(212, 175, 55, 0.1) 25%,
        rgba(255, 215, 0, 0.05) 50%,
        rgba(212, 175, 55, 0.1) 75%,
        transparent 100%
    );
    animation: waveMove 8s infinite linear;
}

@keyframes waveMove {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxe-hero-container-modern {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .luxe-hero-title-ultra {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .luxe-title-word {
        margin: 0 0.5rem;
    }
    
    .luxe-hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .luxe-stat-card {
        padding: 1.5rem;
    }
    
    .luxe-hero-actions-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .luxe-cta-holographic,
    .luxe-cta-glass {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .luxe-floating-card {
        display: none;
    }
    
    .luxe-brands-container-ultra {
        padding: 0 1rem;
    }
    
    .luxe-brands-track-3d {
        flex-direction: column;
        align-items: center;
    }
    
    .luxe-brand-card-3d {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    .luxe-brands-stats-ultra {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .luxe-brands-stat-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .luxe-hero-ultra-modern {
        min-height: 90vh;
    }
    
    .luxe-hero-description-modern {
        font-size: 1rem;
    }
    
    .luxe-stat-number {
        font-size: 2rem !important;
    }
    
    .luxe-brands-ultra-modern {
        padding: 4rem 0;
    }
    
    .luxe-brands-header-ultra {
        margin-bottom: 3rem;
    }
    
    .luxe-brands-carousel-3d {
        margin-bottom: 3rem;
    }
}

