* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.align-items-center {
    align-items: center;
}

/* ===== BARRE DE NAVIGATION AMÉLIORÉE ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 12px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-light {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.logo-dark {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

nav.scrolled .logo-light {
    opacity: 0;
    visibility: hidden;
}

nav.scrolled .logo-dark {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.5s ease;
    margin-bottom: 0;
    gap: 8px;
    align-items: center;
}

.nav-links li {
    margin: 0 5px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 15px;
    position: relative;
    padding: 10px 16px;
    border-radius: 8px;
    overflow: hidden;
}

nav.scrolled .nav-links a {
    color: #333;
    font-size: 14px;
}

.nav-links a:hover {
    color: #FF7B00;
}

nav.scrolled .nav-links a:hover {
    color: #F07800;
}

.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF7B00, #FF9E44);
    transition: width 0.3s ease;
}

.nav-links a:hover:before {
    width: 100%;
}

.nav-links .ticket-btn {
    background: linear-gradient(135deg, rgba(240, 120, 0, 0.9), rgba(255, 155, 0, 0.9));
    color: white;
    border-radius: 50px;
    padding: 12px 22px 12px 18px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

.nav-links .ticket-btn:hover {
    background: linear-gradient(135deg, rgba(240, 120, 0, 1), rgba(255, 155, 0, 1));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.5);
}

.nav-links .ticket-btn:before {
    display: none;
}

nav.scrolled .nav-links .ticket-btn {
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.9), rgba(255, 155, 0, 0.9));
    color: white;
    border: 2px solid rgba(255, 123, 0, 0.3);
}

nav.scrolled .nav-links .ticket-btn:hover {
    background: linear-gradient(135deg, rgba(255, 123, 0, 1), rgba(255, 155, 0, 1));
}

.ticket-icon {
    display: inline-block;
    transform: rotate(15deg);
    transition: transform 0.3s ease;
    font-size: 16px;
}

.nav-links .ticket-btn:hover .ticket-icon {
    transform: rotate(25deg) scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

nav.scrolled .hamburger {
    color: #333;
}

nav.scrolled .hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ===== SECTION VIDÉO HERO AMÉLIORÉE ===== */
.video-section {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 40px;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
}

.text-carousel {
    position: relative;
    height: 240px;
    overflow: hidden;
    margin-bottom: 40px;
}

.text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.text-item.active {
    opacity: 1;
    transform: translateY(0);
}

.text-item h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    letter-spacing: -0.5px;
}

.text-item p {
    font-size: 1.4rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.orange-text {
    color: #F07800;
    background: linear-gradient(90deg, #FF7B00, #FF9E44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-indicators {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #FF7B00;
    transform: scale(1.2);
}

.cta-container {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 2;
    text-align: right;
}

.aftermovie-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.9), rgba(255, 155, 0, 0.9));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.aftermovie-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.aftermovie-btn:hover:before {
    left: 100%;
}

.aftermovie-btn:hover {
    background: linear-gradient(135deg, rgba(240, 120, 0, 1), rgba(255, 155, 0, 1));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

.aftermovie-btn i {
    margin-left: 10px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.aftermovie-btn:hover i {
    transform: scale(1.2);
}

.mouse-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.mouse-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.mouse-indicator .mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
    margin-bottom: 12px;
}

.mouse-indicator .wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: wheelAnimation 2s infinite;
}

@keyframes wheelAnimation {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.mouse-indicator .arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse-indicator .arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: -4px 0;
    animation: arrowAnimation 2s infinite;
}

.mouse-indicator .arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.mouse-indicator .arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ===== SECTION HISTOIRE AMÉLIORÉE - DESIGN ALTERNATIF ===== */
.history-alt-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 50%, #fff9f2 100%);
    position: relative;
    overflow: hidden;
}

.history-alt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.history-alt-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B00, transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #FF6B00;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.history-alt-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.title-number {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B00, #FF8C00, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 50px rgba(255, 107, 0, 0.3);
}

.title-text {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: left;
}

.highlight {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B00, transparent);
}

.history-alt-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Cartes d'histoire avec carrousel */
.history-cards-container {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    width: 100%;
}

.history-cards {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
    width: 100%;
}

.history-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    position: relative;
    background: white;
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.history-card:hover::before {
    left: 100%;
}

.history-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 0, 0.1);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.history-card:hover .card-background {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    filter: blur(20px);
}

.card-content {
    position: relative;
    z-index: 2;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.card-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.history-card:hover .card-decoration {
    opacity: 0.7;
    transform: scale(1.1);
}

.spark-icon,
.flame-icon,
.star-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

/* Contrôles du carrousel */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #FF6B00;
    color: #FF6B00;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #FF6B00;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #FF6B00;
    transform: scale(1.2);
}

/* Timeline horizontale */
.horizontal-timeline {
    margin: 60px 0;
}

.timeline-track {
    position: relative;
    height: 4px;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 2px;
    margin: 0 50px;
}

.timeline-progress {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #FF8C00);
    border-radius: 2px;
    width: 66.66%;
    transition: width 1s ease;
}

.timeline-milestones {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.milestone:hover {
    transform: translateY(-5px);
}

.milestone-dot {
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #FF6B00;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.milestone.active .milestone-dot {
    background: #FF6B00;
    border-color: #FF8C00;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.milestone-year {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.milestone.active .milestone-year {
    color: #FF6B00;
}

/* CTA Section */
.history-cta-alt {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.history-cta-alt::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    animation: rotate 10s linear infinite;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: #FF6B00;
    border-color: #FF6B00;
}

.cta-btn.secondary:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-3px);
}

/* ===== SECTION USP AMÉLIORÉE ===== */
.usp-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.1) 0%, transparent 70%);
}

.usp-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, transparent 70%);
}

.usp-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.usp-card {
    perspective: 1000px;
}

.usp-card-inner {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 123, 0, 0.1);
}

.usp-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FF7B00, #FF5500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.usp-card:hover .usp-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.usp-card:hover .usp-card-inner::before {
    transform: scaleX(1);
}

.usp-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.usp-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), rgba(255, 123, 0, 0.05));
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.usp-card:hover .usp-icon-bg {
    transform: rotate(0deg);
    background: linear-gradient(135deg, #FF7B00, #FF5500);
}

.usp-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: #FF7B00;
    transition: all 0.4s ease;
}

.usp-card:hover .usp-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.usp-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.usp-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.usp-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 123, 0, 0.03), transparent);
    transition: left 0.6s ease;
}

.usp-card:hover .usp-hover-effect {
    left: 100%;
}

.usp-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #FF7B00, #FF5500);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.modern-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-cta-btn:hover::before {
    left: 100%;
}

.modern-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.4);
}

.modern-cta-btn i {
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
    transform: translateX(5px);
}

.modern-cta-btn.large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .usp-grid {
        gap: 20px;
    }

    .usp-card-inner {
        padding: 30px 25px;
    }

    .history-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .text-item h1 {
        font-size: 2.5rem;
    }

    .text-item p {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .title-number {
        font-size: 4rem;
    }

    .title-text {
        font-size: 2.2rem;
    }

    .history-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav.scrolled {
        padding: 10px 20px;
    }

    .content {
        padding: 0 20px;
    }

    .text-item h1 {
        font-size: 2rem;
    }

    .text-item p {
        font-size: 1.1rem;
    }

    .cta-container {
        right: 20px;
        bottom: 50px;
    }

    .aftermovie-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 24px;
    }

    nav.scrolled .nav-links {
        background: rgba(255, 255, 255, 0.95);
    }

    nav.scrolled .nav-links a {
        color: #333;
    }

    .history-alt-title {
        flex-direction: column;
        gap: 10px;
    }

    .title-number {
        font-size: 3.5rem;
    }

    .title-text {
        font-size: 2rem;
        text-align: center;
    }

    .timeline-track {
        margin: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .text-item h1 {
        font-size: 1.8rem;
    }

    .text-item p {
        font-size: 1rem;
    }

    .text-carousel {
        height: 200px;
        margin-bottom: 30px;
    }

    .aftermovie-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .title-number {
        font-size: 3rem;
    }

    .title-text {
        font-size: 1.8rem;
    }

    .history-cta-alt {
        padding: 30px 20px;
    }

    .usp-section {
        padding: 80px 0;
    }

    .usp-header {
        margin-bottom: 40px;
    }
}
/* ===== SECTION PROGRAMMES SIMPLIFIÉE ===== */
.programmes-simple-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.programmes-simple-header {
    text-align: center;
    margin-bottom: 60px;
}

.programmes-simple-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programmes-simple-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
}

/* Overview Cards */
.programme-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.overview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.overview-content p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 1rem;
}

.overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: rgba(255, 107, 0, 0.1);
    color: #FF6B00;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Programme Actions */
.programme-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: #FF6B00;
    transform: translateY(-5px);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #FF6B00;
    font-size: 1.8rem;
}

.action-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.action-card p {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}

.download-btn, .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.download-btn {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    color: white;
}

.view-btn {
    background: rgba(255, 107, 0, 0.1);
    color: #FF6B00;
    border: 2px solid rgba(255, 107, 0, 0.2);
}

.view-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

/* ===== SECTION COMING SOON - DESIGN LIGNE ET CLAIR ===== */
.festival-coming-soon-light {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 50%, #fff9f2 100%);
    position: relative;
    overflow: hidden;
}

.festival-coming-soon-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
}

.coming-soon-container-light {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Header */
.coming-soon-header {
    margin-bottom: 60px;
}

.festival-tagline-light {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FF6B00;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.festival-title-light {
    font-size: 4rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.title-year {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Compte à rebours en ligne */
.countdown-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.count-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.count-label {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.count-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B00;
    margin: 0 10px;
    align-self: flex-end;
    margin-bottom: 25px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Informations de l'événement en ligne */
.event-info-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-line-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.info-line-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B00;
    font-size: 1.1rem;
}

.info-line-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.info-line-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.info-line-text span {
    font-size: 0.9rem;
    color: #718096;
}

.info-line-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 107, 0, 0.2);
    margin: 0 30px;
}

/* Actions en ligne */
.actions-line {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.action-btn-primary, .action-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.action-btn-primary {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.action-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    color: white;
}

.action-btn-secondary {
    background: white;
    color: #FF6B00;
    border: 2px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.action-btn-secondary:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
    border-color: #FF6B00;
}

/* Newsletter en ligne */
.newsletter-line {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-line p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form-light {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.newsletter-form-light input[type="email"] {
    flex: 1;
    max-width: 300px;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: #1a202c;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form-light input[type="email"]:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.newsletter-form-light button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form-light button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

/* Animations */
.count-number {
    animation: countPulse 1s ease-in-out infinite;
}

.countdown-item:nth-child(1) .count-number {
    animation-delay: 0s;
}

.countdown-item:nth-child(3) .count-number {
    animation-delay: 0.5s;
}

.countdown-item:nth-child(5) .count-number {
    animation-delay: 1s;
}

.countdown-item:nth-child(7) .count-number {
    animation-delay: 1.5s;
}

@keyframes countPulse {
    0%, 100% { 
        transform: scale(1);
        color: #1a202c;
    }
    50% { 
        transform: scale(1.05);
        color: #FF6B00;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .festival-coming-soon-light {
        padding: 80px 0;
    }
    
    .festival-title-light {
        font-size: 2.5rem;
    }
    
    .countdown-line {
        gap: 5px;
    }
    
    .count-number {
        font-size: 2.5rem;
    }
    
    .count-separator {
        font-size: 2rem;
        margin: 0 5px;
        margin-bottom: 20px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .event-info-line {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .info-line-separator {
        width: 80%;
        height: 1px;
        margin: 0;
    }
    
    .info-line-item {
        justify-content: center;
        text-align: center;
    }
    
    .info-line-text {
        align-items: center;
    }
    
    .actions-line {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn-primary, .action-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .newsletter-form-light {
        flex-direction: column;
    }
    
    .newsletter-form-light input[type="email"] {
        max-width: none;
        width: 100%;
    }
    
    .newsletter-form-light button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-container-light {
        padding: 0 15px;
    }
    
    .festival-title-light {
        font-size: 2rem;
    }
    
    .count-number {
        font-size: 2rem;
    }
    
    .count-label {
        font-size: 12px;
    }
    
    .count-separator {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .newsletter-line {
        padding: 25px 20px;
    }
    
    .newsletter-line p {
        font-size: 1rem;
    }
}

/* ===== MODAL PDF ===== */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdf-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.modal-header h3 {
    margin: 0;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #718096;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #FF6B00;
    background: rgba(255, 107, 0, 0.1);
}

.modal-body {
    padding: 0;
    height: 60vh;
}

.pdf-container {
    width: 100%;
    height: 100%;
    background: #f8fafc;
}

.pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .coming-soon-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .coming-soon-text {
        padding-right: 0;
    }
    
    .event-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .detail {
        justify-content: center;
    }
    
    .coming-soon-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .programmes-simple-header h2,
    .coming-soon-text h2 {
        font-size: 2.5rem;
    }
    
    .programme-overview,
    .programme-actions {
        grid-template-columns: 1fr;
    }
    
    .countdown-simple {
        gap: 20px;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ticket-btn, .notify-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .programmes-simple-section,
    .coming-soon-section {
        padding: 80px 0;
    }
    
    .overview-card,
    .action-card {
        padding: 30px 20px;
    }
    
    .visual-card {
        padding: 30px 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header,
    .modal-footer {
        padding: 20px;
    }
    
    .modal-body {
        height: 50vh;
    }
}

/* ===== SECTION COMING SOON PREMIUM AVEC GLASSMORPHISME ===== */
.festival-coming-soon-premium {
    padding: 140px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.festival-coming-soon-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.coming-soon-container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Carte en verre */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Header Premium */
.coming-soon-header-premium {
    margin-bottom: 60px;
    position: relative;
}

.festival-tagline-premium {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 25px 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.festival-tagline-premium::before,
.festival-tagline-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
}

.festival-tagline-premium::before {
    left: -50px;
}

.festival-tagline-premium::after {
    right: -50px;
}

.festival-title-premium {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.festival-title-premium::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.title-year-premium {
    background: linear-gradient(135deg, #FFD700, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.title-year-premium::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FF6B00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.festival-title-premium:hover .title-year-premium::after {
    transform: scaleX(1);
}

/* Compte à rebours Premium */
.countdown-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    perspective: 500px;
}

.count-number-premium {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-item-premium:hover .count-number-premium {
    transform: rotateY(15deg);
    color: #FFD700;
}

.count-label-premium {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.count-label-premium::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
}

.count-separator-premium {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    align-self: center;
    margin-bottom: 40px;
    animation: pulseSeparator 1.5s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes pulseSeparator {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Informations de l'événement Premium */
.event-info-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-info-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    z-index: -1;
}

.info-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
}

.info-item-premium i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 0, 0.9));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    transition: transform 0.3s ease;
}

.info-item-premium:hover i {
    transform: scale(1.1) rotate(5deg);
}

.info-text-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.info-text-premium strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.info-text-premium span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.info-separator-premium {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 0 40px;
}

/* Actions Premium */
.actions-premium {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.action-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.action-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.action-btn-premium:hover::before {
    left: 100%;
}

.action-btn-primary-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 0, 0.9));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-btn-primary-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

.action-btn-secondary-premium {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.action-btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations Premium */
@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.countdown-item-premium:nth-child(1) .count-number-premium {
    animation: floatElement 3s ease-in-out infinite;
}

.countdown-item-premium:nth-child(3) .count-number-premium {
    animation: floatElement 3s ease-in-out infinite 0.5s;
}

.countdown-item-premium:nth-child(5) .count-number-premium {
    animation: floatElement 3s ease-in-out infinite 1s;
}

.countdown-item-premium:nth-child(7) .count-number-premium {
    animation: floatElement 3s ease-in-out infinite 1.5s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .festival-title-premium {
        font-size: 4rem;
    }
    
    .count-number-premium {
        font-size: 3.5rem;
    }
    
    .countdown-item-premium {
        min-width: 100px;
    }
    
    .event-info-premium {
        flex-direction: column;
        gap: 25px;
        padding: 25px 30px;
    }
    
    .info-separator-premium {
        width: 80%;
        height: 1px;
        margin: 0;
    }
    
    .glass-card {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .festival-coming-soon-premium {
        padding: 100px 0;
    }
    
    .festival-title-premium {
        font-size: 3rem;
    }
    
    .countdown-premium {
        gap: 20px;
    }
    
    .count-number-premium {
        font-size: 2.8rem;
    }
    
    .count-separator-premium {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .actions-premium {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn-premium {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .glass-card {
        padding: 40px 25px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .festival-title-premium {
        font-size: 2.5rem;
    }
    
    .count-number-premium {
        font-size: 2.2rem;
    }
    
    .count-label-premium {
        font-size: 12px;
    }
    
    .glass-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .event-info-premium {
        padding: 20px;
    }
}

 /* ===== STYLES POUR LA SECTION EXPOSANTS & PARTENAIRES ===== */

        /* Section Exposants */
        .exhibitors-section {
            padding: 100px 0;
            background: white;
            color: #333;
        }

        .exhibitors-section .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 15px;
            text-align: center;
        }

        .exhibitors-section .section-title span {
            background: linear-gradient(135deg, #FF6B00, #FF8C00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .exhibitors-section .section-subtitle {
            font-size: 1.2rem;
            color: #718096;
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Navigation par catégories */
        .categories-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .category-btn {
            padding: 12px 24px;
            background: #f5f5f5;
            border: none;
            border-radius: 30px;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .category-btn.active,
        .category-btn:hover {
            background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }

        /* Grille des exposants */
        .exhibitors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Cartes carrées des exposants */
        .exhibitor-card-square {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 35px 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 280px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .exhibitor-card-square:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border-color: rgba(255, 107, 0, 0.2);
        }

        /* Styles pour différencier les vues */
        .category-main-card {
            display: flex;
        }

        .subcategory-card {
            display: none;
        }

        /* Icônes des cartes */
        .card-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .exhibitor-card-square:hover .card-icon {
            transform: scale(1.1);
        }

        .card-icon i {
            font-size: 32px;
            font-weight: 300;
        }

        /* Contenu des cartes */
        .exhibitor-card-square h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #222;
            font-weight: 600;
            flex-grow: 1;
        }

        .places-available {
            margin-bottom: 25px;
            color: #666;
            font-size: 0.95rem;
        }

        .places-count {
            font-size: 2.2rem;
            font-weight: 700;
            color: #FF6B00;
            display: block;
            line-height: 1.2;
        }

        /* Boutons */
        .btn-reserve-square {
            padding: 12px 35px;
            background: #FF6B00;
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 80%;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .btn-reserve-square:hover {
            background: #FF8C00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }

        /* Style pour le bouton "Voir les options" */
        .btn-reserve-square[data-category] {
            background: linear-gradient(135deg, #FF6B00, #FF8C00);
        }

        .btn-reserve-square[data-category]:hover {
            background: linear-gradient(135deg, #FF8C00, #FF6B00);
        }

        /* ===== STYLES LÉGERS POUR LES NOUVELLES SECTIONS ===== */

        /* Variables de couleurs cohérentes */
        :root {
            --primary-orange: #FF6B00;
            --primary-orange-light: #FF8C00;
            --bg-light: #fff9f2;
            --bg-white: #ffffff;
            --text-dark: #1a202c;
            --text-light: #718096;
            --border-light: rgba(255, 107, 0, 0.1);
            --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        /* Section Header Léger */
        .section-header-light {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            padding: 6px 16px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-header-light h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .highlight {
            color: var(--primary-orange);
        }

        .section-header-light p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== SECTION RECRUTEMENT LÉGÈRE ===== */
        .recruitment-section-light {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .benefits-light {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .benefit-item-light {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: var(--bg-white);
            border-radius: 15px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .benefit-item-light:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-soft);
            border-color: var(--primary-orange);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .benefit-content p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.5;
        }

        .recruitment-cta-light {
            text-align: center;
            padding: 40px;
            background: var(--bg-light);
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }

        .recruitment-cta-light h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .cta-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .cta-btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
        }

        /* ===== SECTION PARTENAIRES AVEC CARROUSEL DOUBLE LIGNE ===== */
        .partners-section-light {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .double-carousel-container {
            margin: 50px 0;
            overflow: hidden;
            position: relative;
        }

        .carousel-line {
            padding: 20px 0;
            position: relative;
        }

        .carousel-line-1 {
            animation: scrollLeft 40s linear infinite;
        }

        .carousel-line-2 {
            animation: scrollRight 35s linear infinite;
        }

        .carousel-track {
            display: flex;
            gap: 30px;
        }

        .carousel-slide {
            display: flex;
            gap: 30px;
            flex-shrink: 0;
        }

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-white);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            transform: translateY(-3px);
            border-color: var(--primary-orange);
            box-shadow: var(--shadow-soft);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
            filter: grayscale(0.3);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0);
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-100% - 30px));
            }
        }

        @keyframes scrollRight {
            0% {
                transform: translateX(calc(-100% - 30px));
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Pause animation on hover */
        .double-carousel-container:hover .carousel-line-1,
        .double-carousel-container:hover .carousel-line-2 {
            animation-play-state: paused;
        }

        .partners-cta-light {
            text-align: center;
            padding: 40px;
            background: var(--bg-white);
            border-radius: 15px;
            border: 1px solid var(--border-light);
            margin-top: 40px;
        }

        .partners-cta-light h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .partners-cta-light p {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* ===== MODAL LÉGER ===== */
        .modal-overlay-light {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-overlay-light.active {
            display: flex;
        }

        .modal-light {
            background: var(--bg-white);
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .modal-header-light {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            background: var(--bg-white);
            border-radius: 20px 20px 0 0;
            z-index: 10;
        }

        .modal-header-light h3 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .modal-close-light {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s ease;
        }

        .modal-close-light:hover {
            color: var(--primary-orange);
        }

        .modal-body-light {
            padding: 30px;
        }

        .download-section-light {
            margin-bottom: 30px;
        }

        .download-card-light {
            text-align: center;
            padding: 30px;
            background: var(--bg-light);
            border-radius: 15px;
            border: 2px dashed var(--primary-orange);
        }

        .download-card-light i {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .download-card-light h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .download-card-light p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .download-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .download-btn-light:hover {
            background: var(--primary-orange-light);
            transform: translateY(-2px);
        }

        .contact-form-light h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .form-row-light {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group-light {
            margin-bottom: 15px;
        }

        .form-group-light input,
        .form-group-light select,
        .form-group-light textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 0.95rem;
            background: var(--bg-white);
            color: var(--text-dark);
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group-light input:focus,
        .form-group-light select:focus,
        .form-group-light textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
        }

        .form-group-light textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn-light {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .exhibitors-section .section-title {
                font-size: 2.5rem;
            }

            .categories-tabs {
                gap: 8px;
            }

            .category-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .exhibitors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .exhibitor-card-square {
                height: 260px;
                padding: 25px 15px;
            }

            .card-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .card-icon i {
                font-size: 28px;
            }

            .places-count {
                font-size: 1.9rem;
            }

            .section-header-light h2 {
                font-size: 2rem;
            }

            .benefits-light {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefit-item-light {
                padding: 20px;
            }

            .form-row-light {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .carousel-slide {
                gap: 20px;
            }

            .partner-logo {
                width: 120px;
                height: 70px;
            }

            .modal-light {
                margin: 0;
                max-width: 100%;
            }

            .modal-body-light {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .exhibitors-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .recruitment-cta-light,
            .partners-cta-light {
                padding: 30px 20px;
            }

            .partner-logo {
                width: 100px;
                height: 60px;
            }

            .download-card-light {
                padding: 20px;
            }
        }

         /* ===== STYLES LÉGERS ET MODERNES ===== */

        /* Variables de couleurs cohérentes */
        :root {
            --primary-orange: #FF6B00;
            --primary-orange-light: #FF8C00;
            --bg-light: #fff9f2;
            --bg-white: #ffffff;
            --text-dark: #1a202c;
            --text-light: #718096;
            --border-light: rgba(255, 107, 0, 0.1);
            --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        /* Section Header Léger */
        .section-header-light {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            padding: 6px 16px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-header-light h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .highlight {
            color: var(--primary-orange);
        }

        .section-header-light p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== SECTION RECRUTEMENT LÉGÈRE ===== */
        .recruitment-section-light {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .benefits-light {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .benefit-item-light {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: var(--bg-white);
            border-radius: 15px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .benefit-item-light:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-soft);
            border-color: var(--primary-orange);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .benefit-content p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.5;
        }

        .recruitment-cta-light {
            text-align: center;
            padding: 40px;
            background: var(--bg-light);
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }

        .recruitment-cta-light h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .cta-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .cta-btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
        }

        /* ===== SECTION PARTENAIRES AVEC CARROUSEL DOUBLE LIGNE ===== */
        .partners-section-light {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .double-carousel-container {
            margin: 50px 0;
            overflow: hidden;
            position: relative;
        }

        .carousel-line {
            padding: 20px 0;
            position: relative;
        }

        .carousel-line-1 {
            animation: scrollLeft 40s linear infinite;
        }

        .carousel-line-2 {
            animation: scrollRight 35s linear infinite;
        }

        .carousel-track {
            display: flex;
            gap: 30px;
        }

        .carousel-slide {
            display: flex;
            gap: 30px;
            flex-shrink: 0;
        }

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-white);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            transform: translateY(-3px);
            border-color: var(--primary-orange);
            box-shadow: var(--shadow-soft);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
            filter: grayscale(0.3);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0);
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-100% - 30px));
            }
        }

        @keyframes scrollRight {
            0% {
                transform: translateX(calc(-100% - 30px));
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Pause animation on hover */
        .double-carousel-container:hover .carousel-line-1,
        .double-carousel-container:hover .carousel-line-2 {
            animation-play-state: paused;
        }

        .partners-cta-light {
            text-align: center;
            padding: 40px;
            background: var(--bg-white);
            border-radius: 15px;
            border: 1px solid var(--border-light);
            margin-top: 40px;
        }

        .partners-cta-light h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .partners-cta-light p {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* ===== MODAL LÉGER ===== */
        .modal-overlay-light {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-overlay-light.active {
            display: flex;
        }

        .modal-light {
            background: var(--bg-white);
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .modal-header-light {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            background: var(--bg-white);
            border-radius: 20px 20px 0 0;
            z-index: 10;
        }

        .modal-header-light h3 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .modal-close-light {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s ease;
        }

        .modal-close-light:hover {
            color: var(--primary-orange);
        }

        .modal-body-light {
            padding: 30px;
        }

        .download-section-light {
            margin-bottom: 30px;
        }

        .download-card-light {
            text-align: center;
            padding: 30px;
            background: var(--bg-light);
            border-radius: 15px;
            border: 2px dashed var(--primary-orange);
        }

        .download-card-light i {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .download-card-light h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .download-card-light p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .download-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .download-btn-light:hover {
            background: var(--primary-orange-light);
            transform: translateY(-2px);
        }

        .contact-form-light h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .form-row-light {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group-light {
            margin-bottom: 15px;
        }

        .form-group-light input,
        .form-group-light select,
        .form-group-light textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 0.95rem;
            background: var(--bg-white);
            color: var(--text-dark);
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group-light input:focus,
        .form-group-light select:focus,
        .form-group-light textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
        }

        .form-group-light textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn-light {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .section-header-light h2 {
                font-size: 2rem;
            }

            .benefits-light {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefit-item-light {
                padding: 20px;
            }

            .form-row-light {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .carousel-slide {
                gap: 20px;
            }

            .partner-logo {
                width: 120px;
                height: 70px;
            }

            .modal-light {
                margin: 0;
                max-width: 100%;
            }

            .modal-body-light {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {

            .recruitment-cta-light,
            .partners-cta-light {
                padding: 30px 20px;
            }

            .partner-logo {
                width: 100px;
                height: 60px;
            }

            .download-card-light {
                padding: 20px;
            }
        }

        /* ===== SECTION PLAN 3D AMÉLIORÉE ===== */
.map-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.map-content-real {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    height: 600px;
    position: relative;
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.map-3d-container {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-3d-scene {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Styles 3D existants conservés */
.scene-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transform: rotateX(60deg) translateZ(-100px);
}

.building, .poi, .character {
    /* Styles d'animation conservés */
}

.map-sidebar {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.legend-compact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 12px;
}

.legend-items-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.legend-item:hover {
    background: var(--bg-light);
    border-color: var(--border-light);
    transform: translateX(5px);
}

.legend-color {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-color.scene { background: #ff5630; }
.legend-color.restaurant { background: #FF7B00; }
.legend-color.boutique { background: #36b37e; }
.legend-color.vip { background: #6554c0; }
.legend-color.service { background: #00b8d9; }
.legend-color.entrance { background: #3498db; }

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.action-section h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    text-align: left;
}

.action-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateX(8px);
    border-color: var(--primary-orange);
}

.action-btn i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* ===== SECTION BILLETTERIE AMÉLIORÉE ===== */
.ticketing-section-elegant {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
}

.tickets-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-card-elegant {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.ticket-card-elegant:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-orange);
}

.ticket-card-elegant.featured {
    border-color: var(--primary-orange);
    transform: scale(1.02);
}

.ticket-card-elegant.featured:hover {
    transform: scale(1.02) translateY(-12px);
}

.ticket-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ticket-card-elegant:hover .ticket-glow {
    opacity: 1;
}

.ticket-badge-elegant {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.ticket-header-elegant {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-light);
}

.ticket-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.ticket-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.ticket-price .currency {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.ticket-price .period {
    font-size: 0.95rem;
    color: var(--text-light);
}

.ticket-features-elegant {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.feature-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.feature-item .fa-check {
    color: #4CAF50;
}

.feature-item .fa-times {
    color: #f44336;
}

.ticket-actions {
    text-align: center;
}

.btn-ticket-elegant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    color: var(--text-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-ticket-elegant:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-ticket-elegant.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-color: var(--primary-orange);
    color: white;
}

.btn-ticket-elegant.primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.payment-compact {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    max-width: 400px;
    margin: 40px auto 0;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.payment-header i {
    color: #4CAF50;
    font-size: 1.3rem;
}

.payment-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.payment-methods-compact {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-method-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 90px;
    border: 1px solid transparent;
}

.payment-method-compact:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.payment-method-compact i {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.payment-method-compact span {
    font-size: 0.9rem;
    font-weight: 600;
}


/* ===== ICÔNE PANIER INDÉPENDANTE ===== */
.nav-cart-item {
    margin-left: 5px;
}

.nav-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-cart-icon:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-cart-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-cart-icon:hover i {
    transform: scale(1.1);
}

.cart-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cart-bubble.empty {
    opacity: 0;
    transform: scale(0);
}

/* Adaptation pour le scroll */
nav.scrolled .nav-cart-icon {
    background: rgba(255, 107, 0, 0.05);
    color: #333;
    border-color: rgba(255, 107, 0, 0.1);
}

nav.scrolled .nav-cart-icon:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

nav.scrolled .cart-bubble {
    border-color: white;
}

/* Animation pulse quand des articles sont ajoutés */
.cart-bubble.pulse {
    animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-cart-item {
        margin-left: 0;
    }
    
    .nav-cart-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-cart-icon i {
        font-size: 1.1rem;
    }
    
    .cart-bubble {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}
/* ===== SECTION BOUTIQUE  ===== */
 .modern-shop-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* En-tête */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.header-content {
    flex: 1;
}

.section-subtitle-shop {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.1;
}

.accent {
    color: #FF6B00;
}

.section-description {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.6;
    max-width: 600px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #FF6B00;
    color: #FF6B00;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-btn:hover {
    background: #FF6B00;
    color: white;
    transform: translateY(-2px);
}

/* Contrôles boutique */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.filters-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.filter-category {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-category label {
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 20px;
    font-weight: 500;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #FF6B00;
    color: white;
    border-color: #FF6B00;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-group label {
    font-weight: 600;
    color: #4a5568;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

/* Grille produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Carte produit */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Galerie Produit */
.product-gallery {
    position: relative;
    padding-top: 100%;
    background: #f8fafc;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.main-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-media img,
.main-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-media img.active,
.main-media video.active {
    opacity: 1;
}

.product-video {
    background: #000;
}

/* Miniatures galerie */
.gallery-thumbnails {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.thumbnail {
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.thumbnail.active {
    border-color: #FF6B00;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.new {
    background: #48BB78;
    color: white;
}

.badge.popular {
    background: #ED8936;
    color: white;
}

.badge.eco {
    background: #38B2AC;
    color: white;
}

.badge.limited {
    background: #9F7AEA;
    color: white;
}

/* Boutons actions */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #a0aec0;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #e53e3e;
    background: #fed7d7;
}

.wishlist-btn.active i {
    font-weight: 900;
}

/* Contrôles galerie */
.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-gallery:hover .gallery-controls {
    opacity: 1;
}

.gallery-prev,
.gallery-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2D3748;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #FF6B00;
    color: white;
}

/* Indicateur média */
.media-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Informations produit */
.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Features produit */
.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #718096;
}

.feature i {
    color: #FF6B00;
}

/* Variants améliorés */
.product-variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.variant-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.size-options {
    display: flex;
    gap: 5px;
}

.size-option {
    width: 30px;
    height: 30px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option.active,
.size-option:hover {
    background: #FF6B00;
    color: white;
    border-color: #FF6B00;
}

.color-options {
    display: flex;
    gap: 8px;
}

.color-option {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option.active {
    border-color: #2d3748;
    transform: scale(1.2);
}

/* Meta informations */
.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.in-stock {
    color: #48BB78;
}

.limited {
    color: #ED8936;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #4299E1;
    font-weight: 600;
}

/* Footer produit */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF6B00;
}

.price-note {
    font-size: 0.8rem;
    color: #718096;
}

.add-to-cart-btn {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #e55a00;
    transform: translateY(-1px);
}

/* Chargement plus */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .modern-shop-section {
        padding: 60px 0;
    }

    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-thumbnails {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .thumbnail {
        width: 40px;
        height: 40px;
    }

    .gallery-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .product-features {
        flex-direction: column;
        gap: 8px;
    }

    .gallery-thumbnails {
        gap: 5px;
    }

    .thumbnail {
        width: 35px;
        height: 35px;
    }
}

/* ===== SECTION BOUTIQUE CARROUSEL MOYEN ===== */
.merch-section-carousel {
    padding: 100px 0;
    background: var(--bg-white);
}

.categories-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.category-nav-btn.active,
.category-nav-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.products-carousel-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.products-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.product-card-medium {
    flex: 0 0 320px;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card-medium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-orange);
}

.product-image-medium {
    position: relative;
    height: 220px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-medium img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-medium:hover .product-image-medium img {
    transform: scale(1.1);
}

.product-badge-medium {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.product-actions-medium {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card-medium:hover .product-actions-medium {
    opacity: 1;
    transform: translateX(0);
}

.action-btn-medium {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn-medium:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.product-info-medium {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info-medium h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-info-medium p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-meta-medium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-price-medium {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.product-sizes-medium {
    display: flex;
    gap: 8px;
}

.size-option {
    padding: 6px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option.active,
.size-option:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.add-to-cart-medium {
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    border-radius: 12px;
    margin-top: auto;
}

.add-to-cart-medium:hover {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.carousel-progress {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 33%;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.special-offer-compact {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    padding: 30px 35px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.offer-content-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.offer-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.offer-price-compact {
    text-align: center;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1.1rem;
    display: block;
}

.new-price {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
}

.offer-btn-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: white;
    color: var(--primary-orange);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.offer-btn-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tickets-display-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .products-carousel-track {
        gap: 20px;
    }
    
    .product-card-medium {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .map-content-real {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .map-sidebar {
        order: -1;
    }
    
    .tickets-display-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .ticket-card-elegant.featured {
        transform: none;
    }
    
    .offer-content-compact {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .categories-carousel-nav {
        gap: 10px;
    }
    
    .category-nav-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .map-3d-container {
        height: 300px;
    }
    
    .payment-methods-compact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .payment-method-compact {
        width: 100%;
        max-width: 200px;
    }
    
    .product-card-medium {
        flex: 0 0 280px;
    }
}


/* ===== SECTION PLAN 3D RÉALISTE ===== */
.map-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.map-content-real {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    height: 600px;
    position: relative;
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.map-3d-container {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-3d-scene {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.scene-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transform: rotateX(60deg) translateZ(-100px);
}

.building {
    position: absolute;
    transition: all 0.3s ease;
    cursor: pointer;
}

.building:hover {
    transform: translateY(-5px) scale(1.05);
}

.building-roof {
    width: 100%;
    height: 20px;
    background: #e74c3c;
    transform: rotateX(45deg);
}

.building-walls {
    width: 100%;
    height: 80px;
    background: #c0392b;
}

.main-stage {
    width: 120px;
    height: 100px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.food-zone {
    width: 80px;
    height: 60px;
    top: 50%;
    left: 30%;
}

.boutique-zone {
    width: 70px;
    height: 50px;
    top: 45%;
    left: 70%;
}

.vip-zone {
    width: 60px;
    height: 40px;
    top: 35%;
    left: 20%;
}

.poi {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.poi-marker {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.entrance {
    top: 80%;
    left: 10%;
    background: #3498db;
}

.restroom {
    top: 60%;
    left: 85%;
    background: #9b59b6;
}

.first-aid {
    top: 70%;
    left: 15%;
    background: #e74c3c;
}

.character {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #34495e;
    border-radius: 50%;
    animation: wander 10s infinite linear;
}

.character-1 {
    top: 55%;
    left: 40%;
    animation-delay: 0s;
}

.character-2 {
    top: 65%;
    left: 60%;
    animation-delay: 3s;
}

.character-3 {
    top: 45%;
    left: 50%;
    animation-delay: 6s;
}

.map-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.map-sidebar {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.legend-compact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legend-items-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.legend-item:hover {
    background: var(--bg-light);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-color.scene {
    background: #ff5630;
}

.legend-color.restaurant {
    background: #FF7B00;
}

.legend-color.boutique {
    background: #36b37e;
}

.legend-color.vip {
    background: #6554c0;
}

.legend-color.service {
    background: #00b8d9;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateX(5px);
}

.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes wander {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -15px);
    }

    50% {
        transform: translate(10px, 20px);
    }

    75% {
        transform: translate(-15px, 10px);
    }
}

/* ===== SECTION BILLETTERIE ÉLÉGANTE ===== */
.ticketing-section-elegant {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
}

.tickets-carousel-container {
    position: relative;
    margin: 50px 0;
    padding: 0 60px;
}

.tickets-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.tickets-carousel::-webkit-scrollbar {
    display: none;
}

.ticket-card-elegant {
    flex: 0 0 350px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ticket-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ticket-card-elegant.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.ticket-card-elegant.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ticket-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ticket-card-elegant:hover .ticket-glow {
    opacity: 1;
}

.ticket-badge-elegant {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-header-elegant {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.ticket-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.ticket-price .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.ticket-price .currency {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.ticket-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.ticket-features-elegant {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.feature-item i {
    width: 20px;
    text-align: center;
}

.feature-item .fa-check {
    color: #4CAF50;
}

.feature-item .fa-times {
    color: #f44336;
}

.ticket-actions {
    text-align: center;
}

.btn-ticket-elegant {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-ticket-elegant:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.btn-ticket-elegant.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-color: var(--primary-orange);
    color: white;
}

.btn-ticket-elegant.primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.payment-compact {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    max-width: 400px;
    margin: 40px auto 0;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.payment-header i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.payment-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.payment-methods-compact {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-method-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 10px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
}

.payment-method-compact:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.payment-method-compact i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.payment-method-compact span {
    font-size: 0.85rem;
    font-weight: 600;
}


/* Section Boutique Simplifiée */
.merch-section-simple {
    padding: 80px 0;
    background: var(--bg-white);
}

.categories-simple-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.category-btn-simple {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn-simple.active,
.category-btn-simple:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.products-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card-simple {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.product-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-simple {
    position: relative;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-simple img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.product-badge-simple {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-actions-simple {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn-simple {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn-simple:hover {
    background: var(--primary-orange);
    color: white;
}

.product-info-simple {
    padding: 20px;
}

.product-info-simple h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-info-simple p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-meta-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price-simple {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.product-sizes-simple {
    display: flex;
    gap: 5px;
}

.size-option {
    padding: 4px 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option.active,
.size-option:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.add-to-cart-simple {
    width: 100%;
    padding: 12px;
    background: var(--primary-orange);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
}

.add-to-cart-simple:hover {
    background: var(--primary-orange-light);
}

/* Section Billetterie Simplifiée */
.ticketing-section-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
}

.tickets-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ticket-card-simple {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.ticket-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ticket-card-simple.featured {
    border-color: var(--primary-orange);
    transform: scale(1.02);
}

.ticket-card-simple.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.ticket-badge-simple {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.ticket-header-simple {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.ticket-type {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.ticket-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.ticket-price .currency {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.ticket-price .period {
    font-size: 0.8rem;
    color: var(--text-light);
}

.ticket-features-simple {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.feature-item i {
    width: 16px;
    text-align: center;
}

.feature-item .fa-check {
    color: #4CAF50;
}

.feature-item .fa-times {
    color: #f44336;
}

.ticket-actions-simple {
    text-align: center;
}

.btn-ticket-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ticket-simple:hover {
    background: #e9ecef;
}

.btn-ticket-simple.primary {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-ticket-simple.primary:hover {
    background: var(--primary-orange-light);
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid-simple {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .tickets-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ticket-card-simple.featured {
        transform: none;
    }

    .ticket-card-simple.featured:hover {
        transform: translateY(-5px);
    }
}

/* Offre spéciale premium */
.special-offer-premium {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.special-offer-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0.5;
}

.offer-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
}

.offer-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.offer-header-premium h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-header-premium p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.offer-details-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.offer-products-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.offer-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.product-miniature {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.product-miniature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.offer-plus {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
}

.offer-price-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
}

.savings-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.offer-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-orange);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animation de rotation pour l'effet de lueur */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Variables CSS manquantes */
:root {
    --primary-orange: #FF6B00;
    --primary-orange-light: #FF8C42;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-light: #e9ecef;
    --text-dark: #2d3748;
    --text-light: #6c757d;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Amélioration du touch sur mobile */
@media (hover: none) {
    .carousel-item-centered {
        opacity: 0.8;
    }

    .product-actions-centered {
        opacity: 1;
    }
}

/* Responsive Design amélioré */
@media (max-width: 768px) {
    .carousel-item-centered {
        width: 250px;
        opacity: 0.8;
    }

    .carousel-item-centered.active {
        width: 280px;
    }

    .carousel-nav-centered {
        width: 40px;
        height: 40px;
    }

    .prev-centered {
        left: 10px;
    }

    .next-centered {
        right: 10px;
    }

    .offer-details-premium {
        flex-direction: column;
        gap: 20px;
    }

    .offer-products-premium {
        order: 2;
    }

    .offer-price-premium {
        order: 1;
    }

    .special-offer-premium {
        padding: 30px 20px;
    }

    .offer-header-premium h3 {
        font-size: 1.5rem;
    }

    .categories-carousel-nav {
        gap: 8px;
    }

    .category-nav-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .carousel-item-centered {
        width: 220px;
    }

    .carousel-item-centered.active {
        width: 240px;
    }

    .offer-products-premium {
        gap: 10px;
    }

    .product-miniature {
        width: 50px;
        height: 50px;
    }

    .product-miniature img {
        width: 30px;
        height: 30px;
    }
}

/* Améliorations UX du carrousel */
.carousel-feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10000;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.carousel-feedback.info {
    background: #2196F3;
}

.carousel-feedback.success {
    background: #4CAF50;
}

/* Amélioration de l'accessibilité */
.carousel-item-centered:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 4px;
}

/* Indicateurs plus visibles */
.indicator-centered {
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-centered:hover {
    transform: scale(1.3);
    background: var(--primary-orange-light);
}

/* Feedback visuel pendant l'interaction */
.carousel-container-centered {
    transition: filter 0.3s ease;
}

/* Amélioration responsive */
@media (max-width: 768px) {
    .carousel-nav-centered {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .carousel-feedback {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }

    .carousel-feedback.show {
        transform: translateY(0);
    }
}

/* Animation de pulse pour l'élément actif */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
    }
}

.carousel-item-centered.active .product-card-centered {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* État de chargement amélioré */
.add-to-cart-centered.loading {
    background: #6c757d;
    cursor: not-allowed;
}

.add-to-cart-centered.success {
    background: #4CAF50;
}

/* Animations pour les nouvelles sections */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-simple {
    animation: fadeIn 0.6s ease forwards;
}

.ticket-card-simple {
    animation: fadeIn 0.6s ease forwards;
}

/* Animation pour le bouton d'ajout au panier */
@keyframes bounce {

    0%,
    20%,
    60%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    80% {
        transform: translateY(-5px);
    }
}

.add-to-cart-simple:active {
    animation: bounce 0.6s ease;
}

/* Effet de pulse pour les billets en vedette */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.ticket-card-simple.featured {
    animation: pulse 2s infinite;
}

/* Styles pour le feedback utilisateur */
.user-feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10000;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.user-feedback.info {
    background: #2196F3;
    color: white;
}

.user-feedback.success {
    background: #4CAF50;
    color: white;
}

.user-feedback.error {
    background: #f44336;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .user-feedback {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }

    .user-feedback.show {
        transform: translateY(0);
    }
}

/* ===== VARIABLES ===== */
:root {
    --footer-bg-dark: #1a1a1a;
    --footer-bg-darker: #151515;
    --footer-text: #ffffff;
    --footer-text-light: #b0b0b0;
    --footer-text-lighter: #888888;
    --primary-orange: #FF7B00;
    --primary-orange-dark: #FF5500;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);
}

/* ===== FOOTER GRID - STRUCTURE PRINCIPALE ===== */
.festizik-footer-grid {
    background: linear-gradient(135deg, var(--footer-bg-dark) 0%, var(--footer-bg-darker) 100%);
    color: var(--footer-text);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.festizik-footer-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 123, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 123, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===== SECTION PRINCIPALE EN GRILLE ===== */
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 70px 0 50px;
    align-items: start;
}

/* Colonne Brand */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.footer-description {
    color: var(--footer-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Grille Social */
.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(5, 44px);
    gap: 12px;
    margin-top: 10px;
}

.social-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    color: var(--footer-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 123, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-grid-item:hover {
    background: rgba(255, 123, 0, 0.1);
    border-color: rgba(255, 123, 0, 0.3);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.social-grid-item:hover::before {
    left: 100%;
}

/* Colonnes Navigation */
.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-grid-title {
    color: var(--footer-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-grid-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
}

/* Grille des liens */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.footer-grid-link {
    color: var(--footer-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-flex;
    align-items: center;
}

.footer-grid-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-grid-link:hover {
    color: var(--footer-text);
    transform: translateX(5px);
}

.footer-grid-link:hover::before {
    width: 100%;
}

/* Colonne Contact */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Grille Contact */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-grid-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
}

.contact-grid-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 8px;
    color: var(--primary-orange);
    margin-top: 2px;
}

.contact-grid-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-grid-text span {
    color: var(--footer-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-grid-text small {
    color: var(--footer-text-lighter);
    font-size: 0.85rem;
}

/* Grille Newsletter */
.newsletter-grid {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color-light);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.newsletter-grid-title {
    color: var(--footer-text);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-grid-form {
    display: grid;
    gap: 12px;
}

.newsletter-input-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    position: relative;
}

.newsletter-input-group input {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--footer-text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: var(--footer-text-lighter);
}

.newsletter-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 123, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
}

.newsletter-grid-btn {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.newsletter-grid-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange-dark), #FF3D00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

/* ===== SÉPARATEUR ===== */
.footer-grid-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 20px 0;
}

/* ===== BAS DE FOOTER ===== */
.footer-bottom-grid {
    padding: 25px 0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.copyright-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    align-items: center;
}

.copyright-grid p {
    color: var(--footer-text-lighter);
    font-size: 0.9rem;
    margin: 0;
}

.achievement-grid {
    display: flex;
}

.achievement-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 123, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 123, 0, 0.5);
    }
}

.legal-links-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 25px;
}

.legal-links-grid a {
    color: var(--footer-text-lighter);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

.legal-links-grid a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.legal-links-grid a:hover {
    color: var(--footer-text);
}

.legal-links-grid a:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
        padding: 50px 0 40px;
    }
}

@media (max-width: 900px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    
    .footer-social-grid {
        grid-template-columns: repeat(5, 40px);
    }
}

@media (max-width: 768px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 30px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .copyright-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
    }
    
    .legal-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }
    
    .newsletter-input-group {
        grid-template-columns: 1fr;
    }
    
    .footer-social-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid-container {
        padding: 0 15px;
    }
    
    .footer-main-grid {
        gap: 30px;
    }
    
    .newsletter-grid {
        padding: 20px;
    }
    
    .legal-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-social-grid {
        grid-template-columns: repeat(5, 36px);
        gap: 8px;
    }
    
    .social-grid-item {
        width: 36px;
        height: 36px;
    }
}

/* Animation pour les liens */
@keyframes linkSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(5px);
    }
}

.footer-grid-link:hover {
    animation: linkSlide 0.3s ease forwards;
}