/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
    /* Couleurs basées sur le logo */
    --primary-color: #FF6B35;
    --secondary-color: #2E5EAA;
    --accent-color: #4CAF50;
    --success-color: #4CAF50;
    --warning-color: #FFA726;
    --danger-color: #EF5350;
    
    /* Gradients professionnels */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #2E5EAA 0%, #4A7BC8 100%);
    --gradient-success: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    --gradient-mixed: linear-gradient(135deg, #FF6B35 0%, #2E5EAA 50%, #4CAF50 100%);
    
    /* Ombres modernes */
    --box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
    --box-shadow-hover: 0 20px 60px rgba(255, 107, 53, 0.25);
    --box-shadow-blue: 0 10px 40px rgba(46, 94, 170, 0.15);
    --box-shadow-green: 0 10px 40px rgba(76, 175, 80, 0.15);
    
    /* Transitions et animations */
    --transition-speed: 0.4s;
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(46, 94, 170, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   ACCESSIBILITÉ
   ======================================== */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
    .navbar-collapse {
        transition: all 0.3s ease-in-out;
    }
}

/* ========================================
   CLASSES UTILITAIRES
   ======================================== */
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }
.bg-gradient-success { background: var(--gradient-success) !important; }
.bg-gradient-orange { background: var(--gradient-orange) !important; }

.text-gradient,
.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.fade-in,
.animate-fade-in,
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-float {
    animation: floatAnimation 3s ease-in-out infinite;
}

.hover-bg-light {
    transition: background-color 0.3s ease;
}

.hover-bg-light:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hover-primary {
    transition: all var(--transition-speed) ease;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.pulse-effect {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.card-hover {
    transition: all var(--transition-speed) var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.parallax-element {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.divider-gradient {
    height: 4px;
    background: var(--gradient-mixed);
    border: none;
    border-radius: 2px;
    margin: 2rem 0;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--gradient-mixed);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    overflow: hidden;
    position: relative;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
}

.top-bar a:hover {
    color: white;
    transform: translateY(-2px);
}

.top-bar .btn {
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-speed) ease;
}

.top-bar .btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
}

<<<<<<< HEAD
=======
/* Top Bar Custom Buttons */
.top-bar .btn-light-custom {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-bar .btn-light-custom:hover,
.top-bar .btn-light-custom.active-top {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-bar .btn-light-custom i {
    font-size: 0.95rem;
}

.top-bar .btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-bar .btn-primary-custom:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

>>>>>>> 9a082bc799b48b9f299af90c04130559eec5e1c6
/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) var(--transition-smooth);
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.15);
    border-bottom: 2px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px) saturate(180%);
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.navbar-toggler {
    border: none;
    padding: 10px;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(46, 94, 170, 0.1));
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Logo */
.logo-container {
    position: relative;
    transition: all var(--transition-speed) var(--transition-bounce);
}

.logo-container:hover {
    transform: scale(1.05) rotate(-2deg);
}

.logo-img {
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
    transition: all var(--transition-speed) var(--transition-smooth);
}

.logo-container:hover .logo-img {
    filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.6));
    transform: rotate(2deg);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-tagline {
    color: var(--danger-color);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-link {
    font-weight: 600;
    position: relative;
    transition: all var(--transition-speed) var(--transition-smooth);
    color: #333 !important;
    padding: 10px 18px !important;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all var(--transition-speed) var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(46, 94, 170, 0.08));
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(46, 94, 170, 0.1));
    font-weight: 700;
    border-radius: 10px;
}

.nav-link i {
    transition: all var(--transition-speed) var(--transition-bounce);
    display: inline-block;
}

.nav-link:hover i {
    transform: scale(1.3) rotate(15deg);
    color: var(--primary-color);
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    margin-left: 0.3rem;
    vertical-align: middle;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    overflow: hidden;
    animation: dropdownSlide 0.4s var(--transition-bounce);
    margin-top: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
}

.dropdown-item {
    padding: 12px 15px;
    transition: all var(--transition-speed) var(--transition-smooth);
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-speed) var(--transition-smooth);
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(46, 94, 170, 0.1));
    color: var(--primary-color) !important;
    transform: translateX(10px);
    padding-left: 20px;
}

.dropdown-item:hover .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-divider {
    margin: 8px 0;
    opacity: 0.2;
}

/* ========================================
   BOUTONS
   ======================================== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-smooth);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-gradient-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all var(--transition-speed) var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-gradient-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.5s;
}

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

.btn-gradient-primary:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    color: white;
}

.btn-gradient-primary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-gradient-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all var(--transition-speed) var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(46, 94, 170, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-gradient-secondary::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.5s;
}

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

.btn-gradient-secondary:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(46, 94, 170, 0.6);
    color: white;
}

.btn-gradient-secondary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 5px 15px rgba(46, 94, 170, 0.4);
}

/* ========================================
   BADGES
   ======================================== */
.badge {
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.6em 1.2em;
    border-radius: 50px;
}

.bg-gradient-primary .badge,
.badge.bg-gradient-primary {
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.bg-gradient-secondary .badge,
.badge.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 4px 15px rgba(46, 94, 170, 0.3);
}

.bg-gradient-success .badge,
.badge.bg-gradient-success {
    background: var(--gradient-success) !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.bg-gradient-orange .badge,
.badge.bg-gradient-orange {
    background: var(--gradient-orange) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* ========================================
   BOUTONS FLOTTANTS
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    animation: floatWhatsapp 3s ease-in-out infinite;
}

.whatsapp-float .btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: all var(--transition-speed) var(--transition-bounce);
    border: 3px solid white;
}

.whatsapp-float .btn:hover {
    transform: scale(1.25) rotate(20deg);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.7);
}

.whatsapp-float .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
    animation: pulse 1.5s infinite;
    border: 2px solid white;
}

.forum-float {
    position: fixed;
    bottom: 115px;
    right: 30px;
    z-index: 1050;
    animation: floatForum 3s ease-in-out infinite 0.5s;
}

.forum-float .btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E5EAA 0%, #4A7BC8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(46, 94, 170, 0.5);
    transition: all var(--transition-speed) var(--transition-bounce);
    border: 3px solid white;
}

.forum-float .btn:hover {
    transform: scale(1.25) rotate(-15deg);
    box-shadow: 0 15px 45px rgba(46, 94, 170, 0.7);
    background: linear-gradient(135deg, #4A7BC8 0%, #2E5EAA 100%);
}

.forum-float .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: pulse 1.5s infinite;
    border: 2px solid white;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.5s;
}

.scroll-top .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transition: all var(--transition-speed) var(--transition-bounce);
    border: 3px solid white;
}

.scroll-top .btn:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.7);
    background: var(--gradient-secondary);
}

/* ========================================
   SECTIONS HERO
   ======================================== */
.hero-section,
.hero-slide {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    /*display: flex;*/
    align-items: center;
    background: linear-gradient(135deg, #FF6B35 0%, #2E5EAA 100%);
}

.hero-section::before,
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

/* ========================================
   CARTES
   ======================================== */
.card {
    transition: all var(--transition-speed) var(--transition-smooth);
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

/* Statistics Cards */
.stat-card {
    transition: all var(--transition-speed) var(--transition-bounce);
    border-radius: 20px;
    background: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-speed) var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-color);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon i {
    font-size: 3rem;
    transition: all var(--transition-speed) var(--transition-bounce);
}

.stat-card:hover .stat-icon i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Level Cards */
.level-card {
    transition: all var(--transition-speed) var(--transition-bounce);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background: white;
    position: relative;
}

.level-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transition: transform var(--transition-speed) var(--transition-smooth);
}

.level-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2) !important;
    border-color: var(--primary-color);
}

.level-card:hover::after {
    transform: scaleX(1);
}

.level-card .card-header {
    transition: all var(--transition-speed) var(--transition-smooth);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.level-card:hover .card-header {
    background: var(--gradient-primary);
    color: white !important;
}

.level-card:hover .card-header * {
    color: white !important;
}

/* Feature Cards */
.feature-card {
    transition: all var(--transition-speed) var(--transition-bounce);
    border-radius: 20px;
    background: white;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent 30%);
    opacity: 0;
    transition: all 0.5s var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-color);
}

.feature-card:hover::after {
    opacity: 0.1;
    animation: featureRotate 2s linear infinite;
}

.feature-icon {
    transition: all var(--transition-speed) var(--transition-bounce);
    font-size: 3rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-color);
}

/* Testimonial Cards */
.testimonial-card {
    transition: all var(--transition-speed) var(--transition-bounce);
    border-radius: 20px;
    background: white;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 94, 170, 0.2) !important;
    border-color: var(--secondary-color);
}

/* ========================================
   IMAGES & MEDIA
   ======================================== */
.partner-logo {
    transition: all var(--transition-speed) var(--transition-bounce);
    filter: grayscale(100%);
    opacity: 0.6;
}

.partner-logo:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.15) rotate(2deg);
}

.img-shine {
    position: relative;
    overflow: hidden;
}

.img-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.img-shine:hover::before {
    left: 100%;
}

.zoom-effect {
    overflow: hidden;
    border-radius: 15px;
}

.zoom-effect img {
    transition: transform 0.5s var(--transition-smooth);
}

.zoom-effect:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* ========================================
   CAROUSEL
   ======================================== */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.3);
}

/* ========================================
   FOOTER
   ======================================== */
footer,
.footer-modern {
    background: linear-gradient(135deg, #2E5EAA 0%, #FF6B35 50%, #4CAF50 100%);
    color: white;
    position: relative;
}

footer::before,
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #2E5EAA, #4CAF50, #FF6B35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    transition: all 0.3s var(--transition-smooth);
}

.footer-logo:hover img {
    filter: brightness(1) invert(0);
    transform: scale(1.05);
}

footer h5,
.footer-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

footer h5::after,
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

footer a,
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

footer a:hover,
.footer-link:hover {
    color: white;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-link i {
    transition: all 0.3s var(--transition-smooth);
}

.footer-link:hover i {
    color: var(--primary-color);
    transform: rotate(360deg);
}

footer ul li {
    transition: all var(--transition-speed) ease;
}

footer ul li:hover {
    padding-left: 5px;
}

.social-icon,
.social-icon-footer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover,
.social-icon-footer:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s var(--transition-bounce);
}

.newsletter-form .btn-light:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.payment-methods img {
    transition: all 0.3s var(--transition-smooth);
    filter: brightness(0.9);
}

.payment-methods img:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* ========================================
   ANIMATIONS KEYFRAMES
   ======================================== */
@keyframes shimmer {
    100% { left: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes floatForum {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(5deg); }
}

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

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

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

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   SPINNER
   ======================================== */
.spinner-custom {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1400px) {
    .navbar > .container {
        gap: 3rem;
    }
    
    .navbar-brand {
        min-width: 180px;
    }
    
    .navbar-nav .nav-item .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .d-flex.ms-lg-auto {
        min-width: 180px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar > .container {
        gap: 1rem;
    }
    
    .navbar-brand {
        min-width: 120px;
    }
    
    .navbar-nav .nav-item .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem !important;
    }
    
    .btn-gradient-primary {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.9rem;
    }
    
    .d-flex.ms-lg-auto {
        min-width: 120px;
    }
}

@media (min-width: 992px) {
    .navbar > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        min-width: 150px;
    }
    
    .navbar-collapse {
        flex: 1 1 auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-nav {
        margin: 0;
        flex-direction: row;
        gap: 0.25rem;
        justify-content: center;
    }
    
    .navbar-nav .nav-item .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    .d-flex.ms-lg-auto {
        flex: 0 0 auto;
        min-width: 150px;
        justify-content: flex-end;
        margin-left: 0 !important;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: dropdownSlide 0.3s ease-out;
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 25px;
        border-radius: 20px;
        margin-top: 20px;
        box-shadow: var(--box-shadow);
        animation: slideInDown 0.4s ease;
    }
    
    .nav-item {
        margin-bottom: 5px;
    }
    
    .whatsapp-float, .scroll-top {
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .scroll-top {
        left: 20px;
    }
    
    .whatsapp-float .btn, .scroll-top .btn {
        width: 55px;
        height: 55px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-6 {
        justify-content: center !important;
    }
    
    .navbar-toggler {
        order: 3;
        margin-left: auto;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        animation: slideInDown 0.4s ease-out;
        max-height: 80vh;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1000;
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .nav-item {
        margin-bottom: 5px;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        width: 100%;
        justify-content: flex-start;
    }
    
    .dropdown-menu {
        box-shadow: none;
        background: rgba(255, 107, 53, 0.05);
        border-radius: 10px;
        margin-top: 5px;
        margin-left: 15px;
        padding: 10px;
        position: static;
        width: calc(100% - 15px);
    }
    
    .dropdown-menu.show {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    .dropdown-item {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .dropdown-divider {
        margin: 5px 0;
    }
    
    .navbar-brand .logo-img {
        height: 40px !important;
    }
    
    .d-flex.ms-lg-auto {
        width: 100%;
        margin-top: 15px !important;
    }
    
    .d-flex.ms-lg-auto .btn-gradient-primary {
        width: 100%;
        padding: 14px 20px !important;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .footer-title::after {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .payment-methods {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .navbar-collapse {
        padding: 15px;
        left: 10px;
        right: 10px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .btn {
        width: 60px;
        height: 60px;
    }
    
    .forum-float {
        bottom: 95px;
        right: 20px;
    }
    
    .forum-float .btn {
        width: 55px;
        height: 55px;
    }
    
    .forum-float .btn i {
        font-size: 1.2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 576px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .logo-img {
        height: 40px !important;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float .btn {
        width: 55px;
        height: 55px;
    }
    
    .forum-float {
        bottom: 85px;
        right: 15px;
    }
    
    .forum-float .btn {
        width: 50px;
        height: 50px;
    }
    
    .notification-badge {
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 375px) {
    .navbar-brand .logo-img {
        height: 35px !important;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 12px !important;
    }
    
    .navbar-collapse {
        left: 10px;
        right: 10px;
    }
}