/* =========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================= */
:root {
    /* Colors */
    --clr-bg: #0a0a0c;
    --clr-bg-alt: #121216;
    --clr-surface: rgba(255, 255, 255, 0.03);
    --clr-surface-hover: rgba(255, 255, 255, 0.05);
    --clr-surface-border: rgba(255, 255, 255, 0.08);

    --clr-primary: #d4af37;
    /* Premium Gold */
    --clr-primary-hover: #f1c94f;
    --clr-primary-glow: rgba(212, 175, 55, 0.4);

    --clr-text: #f4f4f5;
    --clr-text-muted: #a1a1aa;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-glow: 0 0 20px var(--clr-primary-glow);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.5);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================= */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--clr-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 8rem 0;
    }
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================================
   CUSTOM CURSOR
   ========================================================================= */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--clr-primary-glow);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-surface-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 101;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
}

.desktop-nav {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 101;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-bg);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transform: translateY(20px);
    opacity: 0;
    display: block;
    transition: all var(--transition-normal);
}

.mobile-nav-overlay.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--clr-primary);
}

/* Delay for staggered animation in mobile nav */
.mobile-nav-links li:nth-child(1) a {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) a {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) a {
    transition-delay: 0.3s;
}

.mobile-nav-links li:nth-child(4) a {
    transition-delay: 0.4s;
}

.mobile-nav-links li:nth-child(5) a {
    transition-delay: 0.5s;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30, 30, 40, 1) 0%, var(--clr-bg) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    transform: scale(1.1);
    /* For parallax */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.3) 0%, rgba(10, 10, 12, 0.8) 70%, var(--clr-bg) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-text-wrapper {
    max-width: 800px;
}

.title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 4rem;
    }
}

.hero-text-wrapper .description {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-text-wrapper .description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* =========================================================================
   ANIMATIONS & REVEALS
   ========================================================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   SECTION HEADERS
   ========================================================================= */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-surface-border);
}

.section-title {
    font-size: 2.5rem;
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-primary);
    font-weight: 500;
}

.link-arrow i {
    transition: transform var(--transition-fast);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* =========================================================================
   SPECTACLE CARDS
   ========================================================================= */
.spectacle-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spectacle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
    background: var(--clr-surface-hover);
}

.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.spectacle-card:hover .card-image {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--clr-bg);
    color: var(--clr-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-meta i {
    color: var(--clr-primary);
    margin-right: 0.3rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.card-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* =========================================================================
   NEWSLETTER SECTION
   ========================================================================= */
.newsletter-section {
    padding: 2rem 0 6rem 0;
}

.newsletter-card {
    background: linear-gradient(145deg, var(--clr-surface) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }
}

.subscribe-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-surface-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-fast);
}

.subscribe-form input:focus {
    border-color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--clr-bg-alt);
    border-top: 1px solid var(--clr-surface-border);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-surface);
    color: #fff;
    border: 1px solid var(--clr-surface-border);
}

.social-links a:hover {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--clr-text-muted);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--clr-text-muted);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--clr-primary);
    margin-top: 4px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--clr-surface-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    color: var(--clr-primary);
}

/* =========================================================================
   PROGRAMMES FILTERS & MODAL
   ========================================================================= */
.filters-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--clr-surface);
    border: 1px solid var(--clr-surface-border);
    color: var(--clr-text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    background: var(--clr-surface-hover);
    color: #fff;
}

.filter-btn.active {
    background: var(--clr-primary);
    color: var(--clr-bg);
    border-color: var(--clr-primary);
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 2;
}

.modal-close:hover {
    color: #fff;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--clr-surface-border);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.row-group {
    display: flex;
    gap: 1rem;
}

.row-group .col {
    flex: 1;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-surface-border);
}

.total-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.total-price span {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

/* =========================================================================
   BILLETTERIE BUTTONS
   ========================================================================= */
.billetterie-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
    align-items: center;
}

.btn-billetterie-privee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #b8960c 0%, var(--clr-primary) 50%, #f1c94f 100%);
    color: #0a0a0c;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-billetterie-privee:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-billetterie-privee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-billetterie-privee:hover::before {
    left: 160%;
}

.badge-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0c;
    color: var(--clr-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-billetterie-publique {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-billetterie-publique:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.btn-billetterie-publique i,
.btn-billetterie-privee i {
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Ville badges */
.ville-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-full);
    background: var(--clr-surface);
    border: 1px solid var(--clr-surface-border);
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.ville-badge i {
    color: var(--clr-primary);
    font-size: 0.75rem;
}

.ville-badge:hover {
    background: var(--clr-surface-hover);
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
    transform: translateY(-2px);
}