/* Variables ultra modernes avec identité burkinabé */
:root {
    /* Palette de couleurs Burkina Faso */
    --primary: #e63946;
    /* Rouge burkinabé */
    --primary-dark: #d62828;
    --secondary: #2a9d8f;
    /* Vert burkinabé */
    --accent: #f77f00;
    /* Orange/jaune burkinabé */
    --success: #2a9d8f;
    --warning: #f77f00;
    --error: #e63946;

    /* Couleurs neutres modernes */
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Neumorphism */
    --neu-light: #ffffff;
    --neu-dark: #d1d9e6;
    --neu-shadow-light: 20px 20px 60px #bebebe;
    --neu-shadow-dark: -20px -20px 60px #ffffff;

    /* Ombres modernes */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);

    /* Transitions fluides */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Bordures */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
}

/* Reset et base ultra moderne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background: linear-gradient(135deg, #e63946 0%, #2a9d8f 50%, #f77f00 100%);
    background-attachment: fixed;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Effet de particules flottantes avec couleurs burkinabé */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%,
            rgba(230, 57, 70, 0.2) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%,
            rgba(42, 157, 143, 0.2) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 40%,
            rgba(247, 127, 0, 0.2) 0%,
            transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

/* Navigation glassmorphism */
.filo-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.filo-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0 0 2rem 2rem;
    z-index: -1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    height: 70px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition-bounce);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.nav-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.nav-badge::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: var(--transition-slow);
}

.nav-badge:hover::before {
    left: 100%;
}

.nav-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.4);
}

.badge-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
}

.nav-badge:hover .badge-icon {
    transform: rotate(10deg) scale(1.2);
}

/* Hero Section avec arrière-plan burkinabé */
.hero {
    background: url("../img/mainpage_foreground.png") center/cover no-repeat;
    background-attachment: fixed;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(230, 57, 70, 0.4) 0%,
            rgba(42, 157, 143, 0.3) 50%,
            rgba(247, 127, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25), 0 16px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%,
            rgba(230, 57, 70, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 80%,
            rgba(42, 157, 143, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 60%,
            rgba(247, 127, 0, 0.08) 0%,
            transparent 50%);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg,
            rgba(42, 157, 143, 0.9) 0%,
            rgba(230, 57, 70, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(42, 157, 143, 1) 0%,
            rgba(230, 57, 70, 1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-badge:hover::before {
    opacity: 1;
}

.badge-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.03em;
    text-align: center;
    position: relative;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.hero-accent {
    color: #f77f00;
    text-shadow: 0 0 15px rgba(247, 127, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    font-weight: 800;
    display: block;
    margin-top: 0.5rem;
}

.hero-accent::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(247, 127, 0, 0.8) 20%,
            rgba(247, 127, 0, 1) 50%,
            rgba(247, 127, 0, 0.8) 80%,
            transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(247, 127, 0, 0.4);
}

.hero-description {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    text-align: center;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

/* Stats modernes */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    flex: 1;
    max-width: 220px;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%,
            rgba(247, 127, 0, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 70%,
            rgba(230, 57, 70, 0.08) 0%,
            transparent 50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 16px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #f77f00;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(247, 127, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.8);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
    line-height: 1.3;
}

/* Motif délimiteur burkinabé */
.section-divider {
    width: 100%;
    height: 80px;
    background: url("../img/motifbf.png") repeat-x center/contain;
    background-size: auto 100%;
    position: relative;
    margin: 2rem 0;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.section-divider:hover {
    opacity: 1;
    transform: scaleY(1.1);
}

.section-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(230, 57, 70, 0.1) 0%,
            rgba(42, 157, 143, 0.1) 50%,
            rgba(247, 127, 0, 0.1) 100%);
    z-index: 1;
    transition: var(--transition-normal);
}

.section-divider:hover::before {
    background: linear-gradient(90deg,
            rgba(230, 57, 70, 0.2) 0%,
            rgba(42, 157, 143, 0.2) 50%,
            rgba(247, 127, 0, 0.2) 100%);
}

/* Animation du motif */
@keyframes motifFloat {

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

    50% {
        background-position: 100% 50%;
    }
}

.section-divider {
    animation: motifFloat 20s ease-in-out infinite;
}

/* Actions Section ultra moderne */
.actions-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.actions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%,
            rgba(230, 57, 70, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%,
            rgba(42, 157, 143, 0.05) 0%,
            transparent 50%);
    z-index: -1;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #ffffff;
    margin-bottom: 5rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

/* Cartes d'action ultra modernes */
.action-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-3xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    animation: cardFloat 0.8s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

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

.action-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-3xl);
    z-index: -1;
}

.action-card::after {
    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 4s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.action-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.action-card:hover::after {
    animation-duration: 1s;
}

/* Couleurs spécifiques pour chaque carte */
.ticket-card {
    border-top: 3px solid var(--primary);
}

.ticket-card:hover {
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(99, 102, 241, 0.3);
}

.badge-card {
    border-top: 3px solid var(--secondary);
}

.badge-card:hover {
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(139, 92, 246, 0.3);
}

.search-card {
    border-top: 3px solid var(--accent);
}

.search-card:hover {
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(6, 182, 212, 0.3);
}

/* Contenu des cartes */
.card-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-bounce);
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.action-card:hover .card-icon {
    transform: rotate(15deg) scale(1.2);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.card-content p {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.card-features {
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.card-features li {
    padding: 0.75rem 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition-fast);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.card-features li:hover {
    color: #f77f00;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(247, 127, 0, 0.8),
        0 0 20px rgba(247, 127, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.card-features li::before {
    content: "✨";
    margin-right: 0.75rem;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.card-features li:hover::before {
    transform: rotate(20deg) scale(1.2);
}

/* Boutons modernes */
.card-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-btn::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: var(--transition-slow);
}

.card-btn:hover::before {
    left: 100%;
}

.card-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-2xl), 0 0 20px rgba(255, 255, 255, 0.3);
    color: var(--dark);
}

.card-btn.secondary {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-btn.secondary:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(6, 182, 212, 0.4);
}

/* Styles pour les boutons avec icônes */
.btn-text {
    margin-right: 0.5rem;
}

.btn-icon {
    transition: var(--transition-bounce);
    font-size: 1.2rem;
}

.card-btn:hover .btn-icon {
    transform: translateX(5px) scale(1.2);
}

/* Styles pour les icônes de contact */
.contact-icon {
    margin-right: 0.5rem;
    transition: var(--transition-bounce);
}

.footer-contact span:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Info Section moderne */
.info-section {
    padding: 4rem 0 2rem;
    background: transparent;
    position: relative;
}

.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%,
            rgba(42, 157, 143, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 80%,
            rgba(247, 127, 0, 0.05) 0%,
            transparent 50%);
    z-index: -1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition-bounce);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.info-card h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.info-card p {
    color: #ffffff;
    line-height: 1.7;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* Footer moderne */
.filo-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.filo-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.8),
            rgba(30, 41, 59, 0.6));
    z-index: -1;
}

.footer-logo {
    height: 90px;
    margin-bottom: 2rem;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition-bounce);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.footer-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    font-weight: 500;
}

.footer-contact span:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive ultra moderne */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 95%;
        padding: 4rem 3rem;
    }

    .hero-stats {
        gap: 2.5rem;
    }

    .stat-item {
        min-width: 160px;
        max-width: 200px;
        padding: 2rem 1.5rem;
    }

    .actions-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
        min-height: 100vh;
    }

    .hero-content {
        padding: 3rem 2rem;
        border-radius: 1.5rem;
    }

    .hero-badge {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 140px;
        max-width: 180px;
        padding: 1.8rem 1.2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .action-card {
        padding: 2rem 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
        min-height: 100vh;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        border-radius: 1.2rem;
    }

    .hero-badge {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
        padding: 1.8rem 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .action-card {
        padding: 1.5rem 1rem;
    }

    .card-icon {
        font-size: 3.5rem;
    }

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

    .card-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        font-size: 3rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* Animations avancées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Délais d'animation pour les cartes */
.action-card:nth-child(1) {
    animation-delay: 0.1s;
    animation-name: slideInLeft;
}

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

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

/* Animation de pulsation pour les éléments interactifs */
.nav-badge:hover,
.hero-badge:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Effet de parallaxe subtil */
@media (prefers-reduced-motion: no-preference) {
    .hero::before {
        animation: float 20s ease-in-out infinite;
    }

    .actions-section::before {
        animation: float 25s ease-in-out infinite reverse;
    }

    .info-section::before {
        animation: float 30s ease-in-out infinite;
    }
}

/* Mode sombre automatique */
@media (prefers-color-scheme: dark) {
    :root {
        --glass-bg: rgba(0, 0, 0, 0.2);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
}

/* Optimisations de performance */
.action-card,
.info-card,
.stat-item {
    will-change: transform;
}

/* Préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Styles spécifiques pour la section de billetterie */
.ticket-card-tk {
    border: 2px solid #e9ecef;
    border-top: 5px solid #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    padding: 1rem;
}

.ticket-card-tk.active {
    border: 1px solid #28a745;
    border-top: 5px solid #28a745;
    background-color: #ffffff;
}

.ticket-card-bgde {
    border: 2px solid #e9ecef;
    border-top: 5px solid #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    padding: 1rem;
}

.ticket-card-bgde.active {
    border: 1px solid #28a745;
    border-top: 5px solid #28a745;
    background-color: #ffffff;
}

/* Hover sur carte ticket */
.ticket-card-tk:hover {
    transform: translateY(-5px);
    /* léger soulèvement */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    /* ombre plus visible */
}

.ticket-card-bgde:hover {
    transform: translateY(-5px);
    /* léger soulèvement */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    /* ombre plus visible */
}

.ticket-card.active {
    border: 1px solid #28a745;
    border-top: 5px solid #28a745;
    background-color: #ffffff;
}

.ticket-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.badge-checkbox {
    transform: scale(1.2);
    margin-right: 8px;
}

.ticket-title {
    font-weight: bold;
    margin: 0;
}

.ticket-stock {
    font-size: 0.85rem;
    color: #6c757d;
}

.ticket-price {
    margin: 0.5rem 0;
    font-weight: 600;
    color: #dc3545;
}

.ticket-qty-label {
    display: block;
    margin-top: 0.3rem;
}

.badge-qty {
    width: 80px;
    display: inline-block;
}

.summary-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
}

.summary-total {
    font-size: 1.2rem;
    font-weight: bold;
}

.payment-choice.active {
    background: #28a745;
    color: #fff;
}

/* Carte badge par défaut */

/* Quand un badge est sélectionné */
.ticket-card.active {
    border: 2px solid #28a745;
    /* vert */
    border-top: 5px solid #28a745;
    /* bandeau vert */
    background-color: #f6fff6;
    /* léger fond vert pâle */
}

/* Checkbox badge */
.badge-checkbox {
    transform: scale(1.2);
    margin-right: 8px;
}

/* Label quantité propre (évite inline style) */
.badge-qty-label {
    display: block;
    margin-top: 0.3rem;
}

.badge-qty {
    width: 80px;
    display: inline-block;
}

.taille {
    font-size: 18px;
}

/* Base Utility Classes for Premium Design */
.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.tracking-wider {
    letter-spacing: 0.1em !important;
}

.line-clamp-2 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-primary-subtle {
    background-color: rgba(46, 125, 50, 0.1) !important;
}

.bg-light-subtle {
    background-color: #f8f9fa !important;
}

.footer-admin-link {
    color: #FCD116;
    text-decoration: none;
}

/* Badge Item Partial Styles */
.badge-header-gradient {
    background: radial-gradient(circle at top, #f8f9fa 0%, #ffffff 80%);
}

.badge-checkbox-wrapper {
    top: 15px;
    left: 15px;
    z-index: 5;
}

.badge-checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.badge-level-wrapper {
    top: 15px;
    right: 15px;
    z-index: 5;
}

.badge-level-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-icon-container {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: rotate(-5deg);
}

.badge-desc-text {
    font-size: 0.85rem;
    min-height: 2.6em;
    line-height: 1.5;
}

.badge-desc-placeholder {
    min-height: 2.6em;
}

.badge-meta-label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.badge-qty-input-custom {
    width: 60px;
    height: 32px;
    font-size: 0.9rem;
}

.badge-stock-text {
    font-size: 0.7rem;
}