/* Section Vidéo Héro - Page d'Accueil */
.video-hero-section {
    position: relative;
    overflow: hidden;
}

.video-hero-section video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-hero-section .object-fit-cover {
    object-fit: cover;
}

/* Animation gradient pour fond de secours */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Boutons de la section vidéo */
.video-hero-section .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4) !important;
}

.video-hero-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.video-hero-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Badge urgent */
.video-hero-section .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Barre de progression animée */
.video-hero-section .progress-bar {
    transition: width 1s ease-in-out;
}

/* Cartes statistiques */
.video-hero-section .bg-light {
    transition: all 0.3s ease;
}

.video-hero-section .bg-light:hover {
    background: #f8f9fa !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .video-hero-section video {
        min-height: 300px !important;
    }
    
    .video-hero-section .col-lg-6 {
        padding: 2rem !important;
    }
    
    .video-hero-section h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .video-hero-section .row.g-3 .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .video-hero-section .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}
