/* ===================================================
VARIABLES COULEURS
=================================================== */
:root {
    --green-main: #0f7b53;
    --green-light: #1fbf8f;
    --green-soft: #f2fbf7;
    --white: #ffffff;
    --gradient-green: linear-gradient(135deg, #0f7b53, #1fbf8f);
    --yellow-snc: #F5D021;
    --red-snc: #D71C26;
}


/* ===================================================
ANIMATIONS GLOBALES
=================================================== */
@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

@keyframes fest-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



/* ===================================================
HERO SECTION
=================================================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 0;
    background: linear-gradient(rgba(15, 123, 83, 0.85), rgba(31, 191, 143, 0.85)), 
                url('../img/SNC-BOBO-2023.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.25); */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.hero-content {
    width: 100%;
    color:#bdc3c7;
}

.hero-content-inner {
    max-width: 1200px;
    margin: 0;
}

/* Badge d'accueil */
.hero-badge {
    display: inline-block;
    background: var(--yellow-snc);
    color: #1B5E20;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1rem;
}

.hero-badge i {
    margin-right: 8px;
    color: #1B5E20;
}

/* Typographie principale */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    /* margin-bottom: 25px;
    max-width: 900px;
    text-align: center; */
}

.hero-title span {
    color: var(--yellow-snc);
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Statistiques clés */
.hero-stats-row {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stat-item {
    border-left: 4px solid var(--yellow-snc);
    padding-left: 20px;
}

.hero-stat-number {
    color: var(--yellow-snc);
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.hero-stat-label {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Boutons d'action principaux */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--red-snc);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 28, 38, 0.4);
    color: white;
}

.hero-buttons .btn-primary i {
    color: var(--yellow-snc);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

.hero-buttons .btn-secondary i {
    color: var(--yellow-snc);
}

/* Informations de contact */
.hero-contact {
    color: white;
    opacity: 0.7;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-contact i {
    color: var(--yellow-snc);
}


/* ===================================================
STYLES FESTIVALIERS
=================================================== */
.fest-hero * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fest-hero {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.fest-hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.fest-slide-festival {
    background: linear-gradient(rgba(15, 123, 83, 0.85), rgba(31, 191, 143, 0.85)),
                 url('../img/SNC-BOBO-2023.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fest-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.fest-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="20" fill="none" stroke="%23ffffff" stroke-opacity="0.05" stroke-width="1"/></svg>');
    background-size: 80px 80px;
    z-index: 2;
    animation: patternMove 30s linear infinite;
}

.fest-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D71C26, #b91c1c);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(197, 59, 59, 0.415);
    border: 1px solid rgba(241, 58, 58, 0.3);
    backdrop-filter: blur(5px);
}

.fest-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.fest-hero-text-wrapper {
    padding: 30px;
    color: var(--white);
    animation: fest-fade-up 0.7s ease 0.1s forwards;
}

.fest-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.fest-hero-highlight {
    color: var(--yellow-snc);
    display: inline-block;
}

.fest-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.fest-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 650px;
}

.fest-primary-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.fest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.fest-btn-primary {
     background: var( --snc-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(236, 23, 23, 0.686);
    flex: 1;
    min-width: 200px;
}

.fest-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(191, 31, 31, 0.6);
    color: var(--white);
    background: var(--red-snc);
}

.fest-btn-secondary {
    background: var(--red-snc);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(15, 123, 83, 0.4);
    flex: 1;
    min-width: 200px;
}

.fest-btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(31, 191, 143, 0.6);
    color: var(--white);
    background: var(--red-snc);
}

.fest-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--yellow-snc);
    backdrop-filter: blur(10px);
    width: fit-content;
    min-width: 250px;
}

.fest-btn-outline:hover {
    background: rgba(245, 208, 33, 0.15);
    transform: translateY(-4px);
    color: var(--white);
    border-color: var(--yellow-snc);
    box-shadow: 0 10px 25px rgba(245, 208, 33, 0.3);
}

.fest-action-separator {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fest-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    animation: fest-fade-up 0.7s ease 0.1s forwards;
}

.fest-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.95rem;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
}

.fest-tag i {
    color: var(--yellow-snc);
}

/* Carte des services festivaliers */
/* Appliquer le décalage sur la colonne parente - UNIQUEMENT SUR GRANDS ÉCRANS */
@media (min-width: 992px) {
    .col-xl-6.col-lg-6.col-md-12:last-child {
        position: relative;
        left: -10px; /* Décalage vers la gauche */
    }
}

/* Version avec marge négative pour grands écrans */
@media (min-width: 992px) {
    .col-xl-6.col-lg-6.col-md-12:last-child {
        margin-left: -10px; /* Décalage vers la gauche */
    }
}

.fest-services-card {
    /* Garder le style sans margin-left négative */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    color: var(--white);
    height: 100%;
    animation: fest-fade-up 0.7s ease 0.3s forwards;
}

/* STYLES POUR TABLETTE (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .fest-services-card {
        padding: 25px;
        margin: 0 15px; /* Ajout de marges latérales */
    }
}

/* STYLES POUR MOBILE (moins de 768px) */
@media (max-width: 767px) {
    /* Ajustement de la colonne parente sur mobile */
    .col-xl-6.col-lg-6.col-md-12:last-child {
        position: static;
        left: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Ajustement de la carte sur mobile */
    .fest-services-card {
        padding: 20px; /* Réduction du padding */
        margin: 0 15px; /* Marges latérales pour centrer et éviter les bords */
        border-radius: 25px; /* Léger réduction du border-radius */
    }
    
    /* Ajustement des services grid sur mobile */
    .fest-services-grid {
        gap: 15px !important; /* Espacement entre les services */
    }
    
    /* Ajustement des items de service */
    .fest-service-item {
        padding: 10px !important;
    }
    
    /* Ajustement des icônes */
    .fest-service-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
    }
    
    .fest-service-icon i {
        font-size: 1.3rem !important;
    }
    
    /* Ajustement des titres */
    .fest-service-title {
        font-size: 0.95rem !important;
    }
    
    /* Ajustement des descriptions */
    .fest-service-description {
        font-size: 0.8rem !important;
    }
    
    /* Ajustement du header de la carte */
    .fest-card-header {
        padding: 10px 15px !important;
    }
    
    .fest-card-title {
        font-size: 1.3rem !important;
    }
    
    /* Ajustement du badge des contacts */
    .fest-service-badge {
        padding: 12px !important;
        font-size: 0.75rem !important;
    }
    
    .fest-service-badge i {
        font-size: 0.9rem !important;
    }
}

/* POUR TRÈS PETITS MOBILES (moins de 480px) */
@media (max-width: 480px) {
    .fest-services-card {
        padding: 15px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .fest-services-grid {
        gap: 10px !important;
    }
    
    .fest-service-item {
        flex-direction: column !important;
        text-align: center;
        align-items: center !important;
    }
    
    .fest-service-icon {
        margin-bottom: 8px !important;
    }
    
    .fest-service-title {
        font-size: 0.9rem !important;
    }
    
    .fest-service-description {
        font-size: 0.75rem !important;
    }
    
    .fest-card-title {
        font-size: 1.2rem !important;
    }
    
    .fest-service-badge {
        flex-direction: column !important;
        gap: 8px !important;
    }
}

/* Ajustement du grid des services */
.fest-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Pour tablette, ajuster le grid */
@media (min-width: 768px) and (max-width: 991px) {
    .fest-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Pour mobile, garder le grid mais avec des colonnes plus petites */
@media (max-width: 767px) {
    .fest-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Pour très petits mobiles, passer à une colonne */
@media (max-width: 480px) {
    .fest-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Style pour les items de service */
.fest-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.fest-service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Icônes des services */
.fest-service-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fest-service-icon i {
    font-size: 1.6rem;
    color: white;
}

.fest-service-item:hover .fest-service-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Contenu des services */
.fest-service-content {
    flex: 1;
}

.fest-service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.fest-service-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Header de la carte */
.fest-card-header {
    /* display: flex; */
    align-items: center;
    gap: 12px;
    /* padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05); */
    border-radius: 25px;
    margin-bottom: 20px;
}

.fest-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2E7D32, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fest-card-icon i {
    font-size: 1.4rem;
    color: white;
}

.fest-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

/* Badge des contacts */
.fest-service-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 20px;
    margin-top: 10px;
}

.fest-service-badge i {
    font-size: 1rem;
}

.fest-card-header {
    text-align: center;
    /* margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(245, 208, 33, 0.3); */
}

.fest-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 208, 33, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid var(--yellow-snc);
}

.fest-card-icon i {
    font-size: 2rem;
    color: var(--yellow-snc);
}

.fest-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.fest-card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.fest-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.fest-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.fest-service-item:hover {
    background: rgba(15, 123, 83, 0.2);
    transform: translateY(-3px);
    border-color: rgba(31, 191, 143, 0.3);
}

.fest-service-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 89, 0.284), rgba(219, 255, 121, 0.24));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fest-service-icon i {
    color: var(--yellow-snc);
    font-size: 1.3rem;
}

.fest-service-content {
    flex: 1;
}

.fest-service-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.fest-service-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.fest-service-badge {
    background: rgba(187, 215, 28, 0.127);
    border: 1px solid var(--yellow-snc);
    border-radius: 50px;
    padding: 12px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 20px;
}

.fest-service-badge i {
    color: var(--yellow-snc);
}

/* Statistiques festivalières */
.fest-stats-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fest-fade-up 0.7s ease 0.6s forwards;
}

.text-success{
    color: #ffffff !important;
}
/* Section Statistiques - Styles optimisés */
.fest-stats-section {
    margin-top: 60px;
    padding: 0 15px;
}

.fest-stats-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espacement entre les cartes */
    margin: 0;
}

.fest-stat-card {
    text-align: center;
    padding: 10px 11px;
    background: rgba(15, 123, 83, 0.271);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    width: 105%;
}

/* Icônes en jaune */
.fest-stat-card i,
.fest-stat-card .fest-stat-icon {
    font-size: 1.5rem;
    color: #f5af19; /* Jaune SNC */
    margin-bottom: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.fest-stat-card:hover i,
.fest-stat-card:hover .fest-stat-icon {
    transform: scale(1.1);
    color: #ffd166; /* Jaune plus clair au hover */
}

.fest-stat-card .fest-stat-number,
.fest-stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.fest-stat-card .fest-stat-label,
.fest-stat-card .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fest-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 123, 83, 0.3);
    border-color: #f5af19;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== RESPONSIVE MOBILE ==================== */

/* Grands écrans (PC) - Cartes plus petites */
@media (min-width: 1200px) {
    .fest-stat-card {
        padding: 20px 15px; /* Réduit de 25-30px à 20px */
    }
    
    .fest-stat-icon i {
        font-size: 1.8rem; /* Réduit de 2.2rem */
    }
    
    .fest-stat-number {
        font-size: 1.8rem; /* Réduit de 2.3rem */
    }
    
    .fest-stat-label {
        font-size: 0.8rem;
    }
}

/* Tablettes et petits écrans */
@media (max-width: 992px) {
    .fest-stats-section {
        margin-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .fest-stats-section .row {
        gap: 18px;
    }
    
    .fest-stat-card {
        padding: 18px 15px;
    }
    
    .fest-stat-icon i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .fest-stat-number {
        font-size: 1.6rem;
    }
    
    .fest-stat-label {
        font-size: 0.8rem;
    }
}

/* Mobiles (max-width: 768px) */
@media (max-width: 768px) {
    .fest-stats-section {
        margin-top: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .fest-stats-section .row {
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .fest-stat-card {
        padding: 14px 10px;
    }
    
    .fest-stat-icon {
        margin-bottom: 8px;
    }
    
    .fest-stat-icon i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .fest-stat-number {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .fest-stat-label {
        font-size: 0.7rem;
        white-space: normal;
        line-height: 1.3;
    }
}

/* Très petits mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .fest-stats-section {
        margin-top: 30px;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .fest-stats-section .row {
        gap: 10px;
    }
    
    .fest-stat-card {
        padding: 12px 8px;
    }
    
    .fest-stat-icon i {
        font-size: 1.3rem;
    }
    
    .fest-stat-number {
        font-size: 1.1rem;
    }
    
    .fest-stat-label {
        font-size: 0.65rem;
    }
}

/* Très grands écrans (réduit aussi) */
@media (min-width: 1400px) {
    .fest-stats-section .row {
        gap: 20px;
    }
    
    .fest-stat-card {
        padding: 22px 18px;
    }
    
    .fest-stat-icon i {
        font-size: 2rem;
    }
    
    .fest-stat-number {
        font-size: 2rem;
    }
    
    .fest-stat-label {
        font-size: 0.85rem;
    }
}

/* Styles de base mis à jour */
.fest-stats-section {
    padding-left: 15px;
    padding-right: 15px;
}

.fest-stats-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
}

.fest-stat-card {
    text-align: center;
    background: rgba(15, 123, 83, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    width: 100%;
}

.fest-stat-icon {
    margin-bottom: 12px;
    display: inline-block;
}

.fest-stat-icon i {
    font-size: 1.8rem;
    color: #f5af19;
    transition: transform 0.3s ease;
}

.fest-stat-card:hover .fest-stat-icon i {
    transform: scale(1.1);
    color: #ffd166;
}

.fest-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fest-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-weight: 500;
}

.fest-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 123, 83, 0.3);
    border-color: #f5af19;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* ===================================================
SECTION SERVICES - TITRE
=================================================== */
.services-title-wrapper {
    margin: 60px 0 40px 0;
}

.services-title-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.yellow-bar {
    width: 8px;
    height: 50px;
    background: var(--yellow-snc);
    border-radius: 4px;
}

.services-pre-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 5px;
}

.services-main-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}


/* ===================================================
GRILLE DES SERVICES
=================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    border-left: 4px solid var(--yellow-snc);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    background: rgba(245, 208, 33, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    color: var(--yellow-snc);
    font-size: 1.8rem;
}

.service-title {
    color: var(--yellow-snc);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-desc {
    color: white;
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}


/* ===================================================
SECTION SERVICES - DESIGN FAQ
=================================================== */
.service-section-green {
    background: linear-gradient(180deg, #f6fbf9, #ffffff);
    padding: 80px 0;
}

.faq-intro-container {
    max-width: 1700px; 
    margin: 0 auto 60px;
    padding: 0 20px;
}

.faq-glass-card {
    background: linear-gradient(135deg, rgba(15, 123, 83, 0.1), rgba(31, 191, 143, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 123, 83, 0.2);
    border-radius: 30px;
    padding: 100px 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.faq-glass-card .display-5 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-main);
    margin-bottom: 15px;
}

.faq-glass-card .lead {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

.faq-stats-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed rgba(15, 123, 83, 0.2);
}

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 123, 83, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 123, 83, 0.15);
    border-color: var(--green-light);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-main);
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* ===================================================
STYLES POUR SERVICES FESTIVALIERS (CARTES)
=================================================== */
.service-img {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    transition: transform 0.4s ease;
    height: 200px;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideInRight 0.5s ease forwards;
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.service-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(32, 201, 151, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 16px;
}

.service-item:hover {
    border-color: #2E7D32;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
    transform: translateY(-5px);
}

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

.service-item:hover .service-img {
    transform: scale(1.02);
}

.service-item:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.service-item:hover .service-content {
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,1));
    transform: translateY(0);
}

.service-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title-container {
    background: linear-gradient(135deg, #2E7D32, #20c997);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.service-title-container::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.8s ease;
}

.service-item:hover .service-title-container::before {
    left: 100%;
}

.service-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-title-container .service-title-icon a.h4 {
    color: white;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
    text-decoration: none;
}

.service-title-container .service-title-icon i {
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
}

.subscription-info {
    background: rgba(15, 123, 83, 0.05);
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid #2E7D32;
    margin: 10px 0 15px;
}

.subscription-period {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscription-period i {
    color: #2E7D32;
    font-size: 0.9rem;
}

.subscription-period small {
    font-size: 0.8rem;
    color: #6c757d;
}

.service-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.service-item .btn-primary {
    background: linear-gradient(135deg, #2E7D32, #20c997) !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 30px !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s ease !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3) !important;
    align-self: center !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    font-size: 0.9rem !important;
    gap: 6px !important;
    width: auto !important;
    cursor: pointer !important;
}

.service-item .btn-primary::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.8s ease;
    z-index: -1;
}

.service-item .btn-primary:hover {
    background: linear-gradient(135deg, #245E27, #1daa80) !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4) !important;
    text-decoration: none !important;
}

.service-item .btn-primary i {
    color: var(--yellow-snc);
    transition: all 0.3s ease;
}

.service-item .btn-primary:hover i {
    transform: translateX(3px);
}

.btn-primary.btn-lg {
    background: linear-gradient(135deg, #D71C26, #b91c1c) !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 25px rgba(215, 28, 38, 0.3) !important;
}

.btn-primary.btn-lg:hover {
    background: linear-gradient(135deg, #c41a22, #a31818) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(215, 28, 38, 0.4) !important;
}

/* ===================================================
SPONSORS BAND - CORRECTION LOGOS ET CARROUSEL
=================================================== */
.sponsors-band {
    background: transparent;
    backdrop-filter: none;
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--yellow-snc);
}

/* Suppression complète de tous les pseudo-éléments */
.sponsors-band::before,
.sponsors-band::after {
    display: none !important;
    content: none !important;
}

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.sponsors-title {
    text-align: center;
    color: var(--green-main);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sponsors-title .title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow-snc), var(--green-main));
    border-radius: 3px;
}

.sponsors-title .title-decoration:first-child {
    background: linear-gradient(90deg, var(--green-main), var(--yellow-snc), transparent);
}

/* CARROUSEL - Défilement infini */
.sponsors-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Suppression des dégradés latéraux */
.sponsors-carousel::before,
.sponsors-carousel::after {
    display: none !important;
    content: none !important;
}

/* Le track contient 2 sets identiques côte à côte */
.sponsors-track {
    display: flex;
    width: fit-content;
    animation: scrollSponsorsSmooth 60s linear infinite;
    will-change: transform; /* Optimisation pour animation fluide */
}

/* Pause au survol — desktop uniquement (évite le hover collant sur mobile) */
@media (hover: hover) and (pointer: fine) {
    .sponsors-track:hover {
        animation-play-state: paused;
    }
}

/* Pause tactile — contrôlée par JS via la classe .touch-paused */
.sponsors-track.touch-paused {
    animation-play-state: paused;
}

/* Chaque set - ESPACE GÉNÉREUX entre les logos */
.sponsors-set {
    display: flex;
    flex-shrink: 0;
    gap: 50px;
    padding-right: 25px;
}

/* Animation de défilement horizontal - FLUIDE */
@keyframes scrollSponsorsSmooth {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

/* Style des items sponsors - SANS CADRE AVEC ANIMATION FLUIDE */
.sponsor-item {
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease-out; /* Transition plus douce */
    animation: floatUpDown 3s ease-in-out infinite; /* ease-in-out pour fluidité */
    will-change: transform; /* Optimisation GPU */
}

/* Animation de flottement - FLUIDE SANS À-COUPS */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px); /* Réduit de 15px à 12px pour plus de douceur */
    }
    100% {
        transform: translateY(0px);
    }
}

/* Délais différents pour chaque sponsor - décalage progressif */
.sponsors-set .sponsor-item:nth-child(1) { animation-delay: 0s; }
.sponsors-set .sponsor-item:nth-child(2) { animation-delay: 0.3s; }
.sponsors-set .sponsor-item:nth-child(3) { animation-delay: 0.6s; }
.sponsors-set .sponsor-item:nth-child(4) { animation-delay: 0.9s; }
.sponsors-set .sponsor-item:nth-child(5) { animation-delay: 1.2s; }
.sponsors-set .sponsor-item:nth-child(6) { animation-delay: 1.5s; }
.sponsors-set .sponsor-item:nth-child(7) { animation-delay: 1.8s; }
.sponsors-set .sponsor-item:nth-child(8) { animation-delay: 2.1s; }
.sponsors-set .sponsor-item:nth-child(9) { animation-delay: 2.4s; }
.sponsors-set .sponsor-item:nth-child(10) { animation-delay: 2.7s; }

/* Suppression complète du glow */
.sponsor-glow {
    display: none !important;
}

/* LOGOS - AVEC TRANSITION FLUIDE */
.sponsor-logo {
    max-width: none;
    height: auto;
    max-height: 220px;
    width: auto;
    transition: transform 0.3s ease-out, filter 0.3s ease-out; /* Transition plus douce */
    display: block;
    filter: none;
    object-fit: contain;
    will-change: transform; /* Optimisation GPU */
}

/* Au survol - transition fluide */
.sponsor-item:hover {
    transform: scale(1.03); /* Réduit de 1.05 à 1.03 pour plus de douceur */
    z-index: 10;
    transition: transform 0.3s ease-out;
}

.sponsor-item:hover .sponsor-logo {
    transform: scale(1.05); /* Réduit de 1.08 à 1.05 */
    filter: drop-shadow(0 8px 16px rgba(245, 208, 33, 0.2));
}

/* Tooltip avec transition fluide */
.sponsor-tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, var(--green-main), var(--green-light));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1); /* Courbe plus douce */
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    pointer-events: none;
}

.sponsor-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--green-light);
}

.sponsor-item:hover .sponsor-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Animation d'entrée - FLUIDE */
@keyframes sponsorFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sponsor-item {
    animation: sponsorFadeInUp 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards, floatUpDown 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.05s), 0s;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .sponsor-logo {
        max-height: 190px;
    }
    .sponsors-title {
        font-size: 1.8rem;
    }
    .sponsors-set {
        gap: 40px;
        padding-right: 20px;
    }
    .sponsors-track {
        animation: scrollSponsorsSmooth 50s linear infinite;
    }
    @keyframes floatUpDown {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
}

@media (max-width: 992px) {
    .sponsors-band {
        padding: 50px 0;
    }
    .sponsor-logo {
        max-height: 160px;
    }
    .sponsors-title {
        font-size: 1.6rem;
        gap: 15px;
    }
    .sponsors-title .title-decoration {
        width: 60px;
    }
    .sponsors-set {
        gap: 35px;
        padding-right: 18px;
    }
    .sponsors-track {
        animation: scrollSponsorsSmooth 45s linear infinite;
    }
    @keyframes floatUpDown {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
}

@media (max-width: 768px) {
    .sponsors-band {
        padding: 40px 0;
    }
    .sponsors-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    .sponsors-title .title-decoration {
        width: 40px;
        height: 2px;
    }
    .sponsor-logo {
        max-height: 130px;
    }
    .sponsors-set {
        gap: 30px;
        padding-right: 15px;
    }
    .sponsors-track {
        animation: scrollSponsorsSmooth 40s linear infinite;
    }
    @keyframes floatUpDown {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
    }
}

@media (max-width: 480px) {
    .sponsors-band {
        padding: 30px 0;
    }
    .sponsors-title {
        font-size: 1.2rem;
        gap: 10px;
    }
    .sponsors-title .title-decoration {
        width: 30px;
    }
    .sponsor-logo {
        max-height: 100px;
    }
    .sponsors-set {
        gap: 25px;
        padding-right: 12px;
    }
    .sponsor-tooltip {
        font-size: 0.75rem;
        padding: 6px 14px;
        bottom: -40px;
    }
    .sponsors-track {
        animation: scrollSponsorsSmooth 35s linear infinite;
    }
    @keyframes floatUpDown {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }
}

/* Pour les très grands écrans */
@media (min-width: 1600px) {
    .sponsors-track {
        animation: scrollSponsorsSmooth 70s linear infinite;
    }
    .sponsors-set {
        gap: 70px;
        padding-right: 35px;
    }
    .sponsor-logo {
        max-height: 260px;
    }
    .sponsors-title {
        font-size: 2.2rem;
    }
}

/* ===================================================
FOOTER
=================================================== */
.site-footer {
    background: linear-gradient(135deg, #0f7b53, #12966e);
    color: #ffffff;
    padding: 50px 0 0;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-snc);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #bdc3c7;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .x-twitter{
    color: #bdc3c7;
}

.social-links .facebook:hover {
    color: #ffffff;
    background: #1877F2;
    transform: translateY(-3px);
}

.social-links .twitter:hover {
    color: #ffffff;
    background: #000000;
    transform: translateY(-3px);
}

.social-links .instagram:hover {
    color: #ffffff;
    background: #d62976;
    transform: translateY(-3px);
}

.social-links .youtube:hover {
    color: #ffffff;
    background: #CD201F;
    transform: translateY(-3px);
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #f8f9fa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--yellow-snc);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 0;
    position: relative;
    font-size: 12px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--yellow-snc);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: var(--yellow-snc);
    margin-top: 3px;
    font-size: 12px;
}

.contact-item a {
    color: var(--white);
    margin-top: 3px;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--yellow-snc);
}

.contact-item p {
    margin: 0;
    color: var(--white);
    line-height: 1.5;
    font-size: 12px;
}

.organization {
    font-weight: 500;
    color: var(--white) !important;
}

.email a {
    color: var(--yellow-snc);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email a:hover {
    color: var(--green-light);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--yellow-snc);
}


/* ===================================================
SECTIONS NON UTILISÉES (MAIS CONSERVÉES)
=================================================== */
.hero-carousel-wrapper {
    position: relative;
    padding-right: 30px;
}

.hero-carousel-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-carousel-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-stats-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hero-stats-grid .hero-stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: white;
    transition: 0.3s;
}

.hero-stats-grid .hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.h-stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
}

.h-stat-label {
    font-size: .8rem;
    opacity: .9;
}

.hero-fixed-content {
    padding: 35px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-fixed-content .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-services-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-service-line {
    border-left: 4px solid #F5D021;
    padding: 12px 0 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
    transition: 0.3s;
}

.hero-service-line:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.hero-service-line .d-flex {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hero-service-line .me-3 {
    margin-right: 15px;
}

.hero-service-line .p-2 {
    padding: 8px;
}

.hero-service-line .rounded-circle {
    border-radius: 50%;
    background: rgba(245, 208, 33, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-service-line i {
    color: var(--yellow-snc);
    font-size: 1.8rem;
}

.hero-service-line .flex-grow-1 {
    flex: 1;
}

.hero-service-line .fs-6 {
    font-size: 1rem;
}

.hero-service-line .text-yellow {
    color: var(--yellow-snc) !important;
}

.hero-service-line .fw-bold {
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-service-line p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.service-icon-wrap {
    width: 42px;
    height: 42px;
    background: white;
    color: var(--green-main);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-text-wrap h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.service-text-wrap p {
    margin: 0;
    font-size: .85rem;
    opacity: .85;
}


/* ===================================================
RESPONSIVE DESIGN
=================================================== */
@media (max-width: 1199px) {
    .fest-hero-slide { padding: 80px 0; }
    .fest-services-grid { gap: 15px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .fest-hero-slide { padding: 60px 0; }
    .fest-hero-text-wrapper { text-align: center; margin-bottom: 30px; }
    .fest-hero-description { margin-left: auto; margin-right: auto; }
    .fest-primary-actions { flex-direction: column; }
    .fest-quick-tags { justify-content: center; }
    .fest-services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .hero-description { font-size: 1.2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-main-title { font-size: 2.2rem; }
    .sponsors-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .sponsors-title::before,
    .sponsors-title::after { width: 30px; }
    .sponsors-title::before { left: calc(50% - 100px); }
    .sponsors-title::after { right: calc(50% - 100px); }
}

@media (max-width: 767px) {
    .fest-hero-slide { padding: 40px 0; }
    .fest-hero-title { font-size: 2rem; }
    .fest-btn { padding: 14px 28px; font-size: 1rem; }
    .fest-stat-number { font-size: 1.8rem; }
    .fest-services-card { padding: 25px; }
    .hero-section { min-height: auto; padding: 60px 0; background-attachment: scroll; }
    .hero-container { padding: 0 25px; }
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-stats-row { gap: 30px; }
    .hero-stat-number { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-main-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; justify-content: center; padding: 14px 30px; }
    .service-section-green { padding: 60px 0; }
    .sponsors-band { padding: 20px 0; }
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .sponsors-title { font-size: 1rem; margin-bottom: 20px; }
    .sponsors-title::before,
    .sponsors-title::after { display: none; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-container { flex-direction: column; gap: 15px; text-align: center; }
    .logo-section { align-items: center; text-align: center; }
    .footer-logo { margin: 0 auto 20px; }
    .service-img { height: 180px; }
    .service-img img { height: 180px; }
    .service-content { padding: 1.2rem; }
    .service-title-container a.h4 { font-size: 0.8rem; }
}

@media (max-width: 575px) {
    .fest-hero-title { font-size: 1.8rem; }
    .fest-hero-description { font-size: 1rem; }
    .fest-tag { font-size: 0.85rem; }
    .fest-service-item { padding: 10px; }
    .hero-container { padding: 0 20px; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .hero-stats-row { flex-direction: column; gap: 20px; }
    .services-main-title { font-size: 1.8rem; }
    .service-card { padding: 20px 15px; }
    .sponsors-grid { grid-template-columns: repeat(1, 1fr); }
    .sponsor-item { max-width: 200px; margin: 0 auto; }
    .service-img { height: 160px; }
    .service-img img { height: 160px; }
    .service-content { padding: 1rem; }
    .service-item .btn-primary { padding: 8px 12px !important; font-size: 0.85rem !important; }
    .faq-glass-card .display-5 { font-size: 2rem; }
    .stat-item { padding: 15px 10px; }
    .stat-number { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .sponsor-item { width: 150px; }
    .hero-carousel-card img { height: 240px; }
    .service-img { height: 150px; }
    .service-img img { height: 150px; }
    .service-content { padding: 0.8rem; }
    .service-title-container .service-title-icon a.h4 { font-size: 0.9rem; }
    .service-title-container .service-title-icon i { font-size: 1.1rem; }
}