/* ================================
   CRAUW 2026 - STYLES CONSOLIDÉS
   Tous les styles en un seul fichier
   ================================ */
/* ================================
   CRAUW 2026 - Professional Styles
   Couleurs: Vert, Rouge, Jaune (Cameroun)
   ================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Couleurs Cameroun */
    --color-primary: #00D969;
    --color-secondary: #E63946;
    --color-accent: #FFD60A;
    --color-dark: #0F1419;
    --color-darker: #070A0D;
    --color-mid: #1A2027;
    --color-light: #E8EEF2;
    --color-white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D969 0%, #00A854 100%);
    --gradient-secondary: linear-gradient(135deg, #E63946 0%, #C62828 100%);
    --gradient-accent: linear-gradient(135deg, #FFD60A 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(180deg, #0F1419 0%, #070A0D 100%);
    --gradient-cameroun: linear-gradient(135deg, #00D969 0%, #FFD60A 50%, #E63946 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 217, 105, 0.3);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background: var(--color-darker);
    color: var(--color-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: autoHidePreloader 3s ease-in-out forwards;
}

@keyframes autoHidePreloader {
    0%, 90% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-robot {
    width: 80px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
}

.robot-head {
    width: 50px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    margin: 0 auto;
    position: relative;
    animation: robotHead 2s ease-in-out infinite;
}

.robot-head::before,
.robot-head::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-dark);
    border-radius: 50%;
    top: 15px;
}

.robot-head::before { left: 12px; }
.robot-head::after { right: 12px; }

.robot-body {
    width: 60px;
    height: 50px;
    background: var(--color-mid);
    border: 2px solid var(--color-primary);
    margin: 5px auto 0;
    border-radius: 4px;
}

.robot-arm {
    width: 20px;
    height: 40px;
    background: var(--color-mid);
    border: 2px solid var(--color-primary);
    position: absolute;
    top: 45px;
    border-radius: 4px;
}

.robot-arm.left {
    left: 0;
    animation: armLeft 1s ease-in-out infinite;
}

.robot-arm.right {
    right: 0;
    animation: armRight 1s ease-in-out infinite;
}

@keyframes robotHead {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes armLeft {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-20deg); }
}

@keyframes armRight {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
}

.loading-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-primary);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--color-mid);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-cameroun);
    width: 0;
    animation: loading 2s ease-in-out infinite;
}

.skip-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(232, 238, 242, 0.5);
    margin-top: 2rem;
    animation: pulse 2s ease-in-out infinite;
    cursor: pointer;
}

.preloader {
    cursor: pointer;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 217, 105, 0.2);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    perspective: 1000px;
}

.logo-cube {
    width: 100%;
    height: 100%;
    background: var(--gradient-cameroun);
    border-radius: 8px;
    animation: rotateCube 4s linear infinite;
    box-shadow: var(--shadow-glow);
}

@keyframes rotateCube {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 2px;
}

.logo-year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cameroun);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-lang {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-light);
    background: transparent;
    border: 1px solid rgba(0, 217, 105, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-lang:hover {
    border-color: var(--color-primary);
    background: rgba(0, 217, 105, 0.1);
}

.btn-register {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--gradient-primary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 105, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 30%, rgba(255, 214, 10, 0.05) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 105, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 105, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 217, 105, 0.1);
    border: 1px solid rgba(0, 217, 105, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.label-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.word.accent {
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(232, 238, 242, 0.8);
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(232, 238, 242, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(0, 217, 105, 0.2);
}

/* ===== COUNTDOWN ===== */
.countdown-section {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.countdown-block {
    background: rgba(26, 32, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 105, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.countdown-block:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 217, 105, 0.3);
}

.countdown-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(232, 238, 242, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.countdown-sep {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 28px; }
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(232, 238, 242, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-dark);
    box-shadow: 0 4px 16px rgba(0, 217, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(0, 217, 105, 0.1);
    transform: translateY(-3px);
}

.btn.large {
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header.centered {
    text-align: center;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(232, 238, 242, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--gradient-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 238, 242, 0.8);
    font-weight: 400;
}

.content-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: rgba(26, 32, 39, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 105, 0.1);
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(232, 238, 242, 0.7);
}

.visual-card {
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 105, 0.05) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-card {
    margin-bottom: 2rem;
}

.card-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.impact-item {
    display: flex;
    flex-direction: column;
}

.impact-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.impact-text {
    font-size: 0.9rem;
    color: rgba(232, 238, 242, 0.7);
    margin-top: 0.5rem;
}

.accent-card {
    background: var(--gradient-cameroun);
}

.card-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

/* ===== PROGRAM SECTION ===== */
.program {
    background: var(--color-darker);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: rgba(26, 32, 39, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-cameroun);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 217, 105, 0.2);
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.card-icon {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232, 238, 242, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
}

.card-list {
    list-style: none;
}

.card-list li {
    font-size: 0.95rem;
    color: rgba(232, 238, 242, 0.7);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 217, 105, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ===== COMPETITIONS SECTION ===== */
.competitions {
    background: var(--gradient-dark);
}

.competitions-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.competition-card {
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 105, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
}

.competition-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 105, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.competition-card:hover {
    transform: scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 30px 60px rgba(0, 217, 105, 0.3);
}

.competition-card:hover::after {
    opacity: 1;
}

.comp-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--color-dark);
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    letter-spacing: 2px;
    z-index: 1;
}

.comp-header {
    background: var(--gradient-primary);
    padding: 3rem 2.5rem;
    position: relative;
}

.comp-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.comp-subtitle {
    font-size: 1.1rem;
    color: rgba(15, 20, 25, 0.8);
}

.comp-body {
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}

.comp-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(232, 238, 242, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.comp-details {
    background: rgba(15, 20, 25, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 217, 105, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 600;
}

.comp-challenges h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.challenge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(0, 217, 105, 0.1);
    border: 1px solid rgba(0, 217, 105, 0.3);
    color: var(--color-primary);
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: rgba(0, 217, 105, 0.2);
    border-color: var(--color-primary);
}

.comp-footer {
    padding: 0 2.5rem 3rem;
    position: relative;
    z-index: 1;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0F1419 0%, #1A2027 100%);
    border-top: 2px solid rgba(0, 217, 105, 0.3);
    border-bottom: 2px solid rgba(0, 217, 105, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.partner-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 105, 0.4);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.partner-item:hover {
    border-color: var(--color-primary);
    background: rgba(0, 217, 105, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.4);
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 217, 105, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(232, 238, 242, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 105, 0.1);
    border: 1px solid rgba(0, 217, 105, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    font-size: 0.95rem;
    color: rgba(232, 238, 242, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 105, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: rgba(232, 238, 242, 0.6);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(232, 238, 242, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .countdown-block {
        min-width: 90px;
        padding: 1.2rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .competitions-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .section-container {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .countdown-section {
        margin-top: 3rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .countdown-block {
        min-width: 70px;
        padding: 1rem 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== CORRECTIONS SUPPLÉMENTAIRES ===== */

/* Garantir que le hero ne déborde pas */
.hero-content > * {
    max-width: 100%;
}

/* Améliorer le z-index pour éviter les superpositions */
.hero-particles,
.hero-grid {
    z-index: 0;
}

.hero-content {
    z-index: 2;
}

.countdown-section {
    z-index: 2;
}

.scroll-indicator {
    z-index: 3;
}

/* Meilleure gestion de l'espace sur très grands écrans */
@media (min-width: 1600px) {
    .hero {
        padding: 10rem 2rem 8rem;
    }
    
    .countdown-section {
        margin-top: 5rem;
    }
}

/* Améliorer les transitions des boutons */
.btn {
    will-change: transform;
}

/* Éviter les problèmes de débordement */
body {
    overflow-x: hidden;
    position: relative;
}

/* S'assurer que les sections ne se chevauchent pas */
section {
    position: relative;
    z-index: 1;
}

/* Améliorer la visibilité du countdown sur petits écrans */
@media (max-width: 480px) {
    .countdown {
        gap: 1rem;
    }
    
    .countdown-block {
        min-width: 65px;
        padding: 1rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-text {
        font-size: 0.65rem;
    }
    
    .countdown-sep {
        font-size: 1.5rem;
    }
}

/* Améliorer l'accessibilité */
.btn:focus,
.nav-link:focus,
button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* Animation plus fluide pour le preloader */
.preloader {
    will-change: opacity, visibility;
}

/* Garantir que les cartes ne débordent pas */
.program-card,
.competition-card,
.partner-item {
    max-width: 100%;
}

/* Améliorer le contraste des textes */
.hero-subtitle,
.content-text,
.card-description {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 8rem 2rem;
    background: var(--gradient-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 105, 0.05) 0%, rgba(230, 57, 70, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(232, 238, 242, 0.9);
    margin-bottom: 1.5rem;
}

.cta-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== COMPETITION CARD IMAGES ===== */
.comp-image {
    width: 100%;
    height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 217, 105, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.comp-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
}

.competition-card:hover .comp-image img {
    transform: scale(1.05);
}

/* Badge positioning over image */
.competition-card .comp-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

/* ===== ROBOT IMAGE IN ABOUT SECTION ===== */
.robot-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.robot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.robot-card:hover .robot-image {
    transform: scale(1.1);
}

.robot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.robot-card:hover .robot-overlay {
    transform: translateY(0);
}

.robot-label {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PARTNER LOGO ===== */
.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Adjust partner items to better accommodate images */
.partner-item {
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.partner-item:hover {
    border-color: var(--color-primary);
    background: rgba(0, 217, 105, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.2);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 968px) {
    .comp-image {
        height: 200px;
    }
    
    .robot-card {
        height: 300px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .comp-image {
        height: 180px;
    }
    
    .robot-card {
        height: 250px;
    }
    
    .partner-item {
        min-height: 120px;
        padding: 1.5rem;
    }
}

/* ===== GOOGLE MAPS INTEGRATION ===== */
.map-container {
    margin-top: 3rem;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 217, 105, 0.2);
    transition: all var(--transition-base);
}

.map-wrapper:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px rgba(0, 217, 105, 0.3);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-overlay-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-pin {
    font-size: 1.5rem;
}

.map-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

/* Footer Map Section */
.footer-map {
    margin: 4rem 0 3rem;
    padding: 0 2rem;
}

.map-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2rem;
}

.map-info-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 250px;
}

.map-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.map-address {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.map-city {
    font-size: 0.95rem;
    color: rgba(232, 238, 242, 0.8);
    margin: 0;
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Map */
@media (max-width: 968px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-info-overlay {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .map-overlay-label {
        left: 1rem;
        bottom: 1rem;
        right: 1rem;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .map-wrapper iframe {
        height: 250px;
    }
    
    .footer-map {
        padding: 0 1rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-overlay-label {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .map-text {
        font-size: 0.9rem;
    }
}

/* ===== HERO GIF BACKGROUND ===== */
.hero-gif-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/mini.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Adjust other hero-bg children z-index */
.hero-particles {
    position: relative;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Responsive GIF */
@media (max-width: 640px) {
    .hero-gif-bg {
        opacity: 0.1;
        background-size: contain;
    }
}
.piliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.pilier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.pilier-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.pilier-card svg {
    width: 45px;
    height: 45px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
/* ================================
   CRAUW 2026 - ENHANCED PROFESSIONAL STYLES
   Styles Additionnels pour les Sections Améliorées
   ================================ */

/* ===== LOGO PAK DANS LE HEADER ===== */
.pak-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 105, 0.3));
    transition: all 0.3s ease;
}

.pak-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 16px rgba(0, 217, 105, 0.5));
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PILLARS SECTION - PROFESSIONAL TIMELINE DESIGN ===== */
.pillars-pro {
    padding: 8rem 0;
    background: linear-gradient(180deg, #070A0D 0%, #0F1419 50%, #070A0D 100%);
    position: relative;
    overflow: hidden;
}

.pillars-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 217, 105, 0.3) 20%, 
        rgba(255, 214, 10, 0.3) 50%,
        rgba(230, 57, 70, 0.3) 80%, 
        transparent 100%
    );
}

.pillars-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
}

.pillar-pro {
    position: relative;
    margin-bottom: 6rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.pillar-pro:last-child {
    margin-bottom: 0;
}

.pillar-pro:last-child .pillar-connector {
    display: none;
}

/* Number Badge */
.pillar-number-badge {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    box-shadow: 0 8px 32px rgba(0, 217, 105, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.pillar-number-badge.accent {
    background: var(--gradient-accent);
    box-shadow: 0 8px 32px rgba(255, 214, 10, 0.4);
}

.pillar-number-badge.secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.4);
    color: var(--color-white);
}

.pillar-number-badge.primary {
    background: var(--gradient-primary);
    box-shadow: 0 8px 32px rgba(0, 217, 105, 0.4);
}

.pillar-pro:hover .pillar-number-badge {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 48px rgba(0, 217, 105, 0.6);
}

/* Content Card */
.pillar-pro-content {
    flex: 1;
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-pro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-pro:hover .pillar-pro-content::before {
    opacity: 1;
}

.pillar-pro:hover .pillar-pro-content {
    transform: translateX(10px);
    border-color: rgba(0, 217, 105, 0.3);
    background: rgba(26, 32, 39, 0.8);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pillar-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 105, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.pillar-icon-wrapper.accent {
    background: rgba(255, 214, 10, 0.1);
}

.pillar-icon-wrapper.secondary {
    background: rgba(230, 57, 70, 0.1);
}

.pillar-icon-wrapper.primary {
    background: rgba(0, 217, 105, 0.1);
}

.pillar-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-pro:hover .pillar-icon-bg {
    opacity: 0.2;
}

.pillar-icon {
    position: relative;
    z-index: 1;
    stroke: var(--color-primary);
    transition: all 0.4s ease;
}

.pillar-icon-wrapper.accent .pillar-icon {
    stroke: var(--color-accent);
}

.pillar-icon-wrapper.secondary .pillar-icon {
    stroke: var(--color-secondary);
}

.pillar-pro:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-text {
    position: relative;
}

.pillar-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pillar-description {
    font-size: 1.05rem;
    color: rgba(232, 238, 242, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pillar-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 105, 0.1);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(0, 217, 105, 0.2);
    border-color: rgba(0, 217, 105, 0.4);
    transform: translateY(-2px);
}

.highlight-tag svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Connector Line */
.pillar-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -6rem;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 217, 105, 0.3) 0%, 
        rgba(0, 217, 105, 0.1) 100%
    );
}

/* CTA Button */
.pillars-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pillars-pro::before {
        display: none;
    }

    .pillar-pro {
        flex-direction: column;
        margin-bottom: 4rem;
    }

    .pillar-number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pillar-connector {
        display: none;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

    .pillar-description {
        font-size: 1rem;
    }
}

/* ===== GALLERY SECTION - PROFESSIONAL MASONRY LAYOUT ===== */
.gallery-pro {
    padding: 8rem 0;
    background: var(--color-darker);
    position: relative;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item-pro {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-item-pro.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item-pro.wide {
    grid-column: span 2;
}

.gallery-item-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(15, 20, 25, 0.7) 60%, 
        rgba(15, 20, 25, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-pro:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-pro:hover img {
    transform: scale(1.1);
}

.gallery-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-pro:hover .gallery-info {
    transform: translateY(0);
}

.gallery-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-light);
    margin: 0;
}

.gallery-more {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 13, 0.98);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.gallery-modal.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-modal-header {
    position: sticky;
    top: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 105, 0.1);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.modal-header-content h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.modal-header-content p {
    color: rgba(232, 238, 242, 0.6);
    margin: 0;
}

.modal-close {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(230, 57, 70, 0.2);
    border-color: rgba(230, 57, 70, 0.4);
    transform: rotate(90deg);
}

.modal-close svg {
    stroke: var(--color-secondary);
}

.gallery-modal-content {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.extended-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.extended-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extended-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 217, 105, 0.2);
}

.extended-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.extended-gallery-item:hover img {
    transform: scale(1.1);
}

.extended-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(15, 20, 25, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extended-gallery-item:hover .extended-overlay {
    opacity: 1;
}

.extended-caption {
    color: var(--color-light);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item-pro.large,
    .gallery-item-pro.wide {
        grid-column: span 1;
    }

    .extended-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-modal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modal-header-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== COMPETITIONS SECTION - ULTRA PROFESSIONAL ===== */
.competitions-ultra {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0F1419 0%, #070A0D 100%);
    position: relative;
}

.competitions-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.comp-ultra-card {
    background: linear-gradient(135deg, rgba(26, 32, 39, 0.8) 0%, rgba(15, 20, 25, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 105, 0.2);
    transition: all 0.5s ease;
    position: relative;
}

.comp-ultra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.comp-ultra-card.junior::before {
    background: var(--gradient-accent);
}

.comp-ultra-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 217, 105, 0.4);
    box-shadow: 0 24px 64px rgba(0, 217, 105, 0.15);
}

.comp-ultra-card.junior:hover {
    border-color: rgba(255, 214, 10, 0.4);
    box-shadow: 0 24px 64px rgba(255, 214, 10, 0.15);
}

.comp-ultra-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    position: relative;
}

.comp-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 217, 105, 0.3);
}

.comp-category-badge.junior {
    background: var(--gradient-accent);
    box-shadow: 0 4px 16px rgba(255, 214, 10, 0.3);
}

.comp-ultra-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-light);
    margin-bottom: 0.75rem;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-ultra-tagline {
    font-size: 1.125rem;
    color: rgba(232, 238, 242, 0.7);
    font-style: italic;
}

.comp-ultra-body {
    padding: 0 3rem 3rem;
}

.comp-intro {
    padding: 2rem;
    background: rgba(0, 217, 105, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.comp-ultra-card.junior .comp-intro {
    background: rgba(255, 214, 10, 0.05);
    border-left-color: var(--color-accent);
}

.comp-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232, 238, 242, 0.9);
    margin: 0;
}

.comp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comp-stat-card {
    background: rgba(26, 32, 39, 0.6);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.comp-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 105, 0.4);
    background: rgba(26, 32, 39, 0.8);
}

.comp-stat-card.featured {
    border-color: rgba(0, 217, 105, 0.4);
    background: rgba(0, 217, 105, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 105, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comp-stat-card.featured .stat-icon {
    background: rgba(0, 217, 105, 0.2);
}

.stat-icon svg {
    stroke: var(--color-primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(232, 238, 242, 0.6);
}

.comp-challenges-pro {
    margin-bottom: 3rem;
}

.challenges-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.challenges-title svg {
    stroke: var(--color-primary);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.challenge-card {
    background: rgba(26, 32, 39, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.challenge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 105, 0.4);
    background: rgba(0, 217, 105, 0.1);
}

.challenge-card.junior {
    border-color: rgba(255, 214, 10, 0.2);
}

.challenge-card.junior:hover {
    border-color: rgba(255, 214, 10, 0.4);
    background: rgba(255, 214, 10, 0.1);
}

.challenge-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.challenge-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.challenge-difficulty {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 105, 0.2);
    color: var(--color-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.challenge-difficulty.junior {
    background: rgba(255, 214, 10, 0.2);
    color: var(--color-accent);
}

.comp-benefits {
    margin-bottom: 2.5rem;
}

.benefits-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 32, 39, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(26, 32, 39, 0.6);
    transform: translateX(8px);
}

.benefit-item svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(232, 238, 242, 0.9);
    font-size: 1rem;
}

.btn-comp-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 16px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-comp-register.junior {
    background: var(--gradient-accent);
    box-shadow: 0 8px 24px rgba(255, 214, 10, 0.3);
}

.btn-comp-register::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-comp-register:hover::before {
    width: 300px;
    height: 300px;
}

.btn-comp-register:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 217, 105, 0.4);
}

.btn-comp-register.junior:hover {
    box-shadow: 0 16px 48px rgba(255, 214, 10, 0.4);
}

.btn-comp-register svg {
    transition: transform 0.3s ease;
}

.btn-comp-register:hover svg {
    transform: translateX(8px);
}

/* Responsive Competitions */
@media (max-width: 768px) {
    .comp-ultra-title {
        font-size: 2rem;
    }

    .comp-ultra-header,
    .comp-ultra-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .challenges-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .comp-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER - ULTRA PROFESSIONAL ===== */
.footer-ultra {
    background: linear-gradient(180deg, #070A0D 0%, #000000 100%);
    padding: 6rem 0 0;
    position: relative;
}

.footer-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-cameroun);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(232, 238, 242, 0.1);
}

.footer-brand-section {
    max-width: 500px;
}

.footer-logo-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-pak-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 217, 105, 0.3));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
}

.footer-logo-year {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.footer-mission {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 238, 242, 0.7);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 32, 39, 0.6);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 12px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-pro:hover {
    background: rgba(0, 217, 105, 0.1);
    border-color: rgba(0, 217, 105, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.2);
}

.social-link-pro svg {
    width: 20px;
    height: 20px;
}

.social-link-pro span {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(232, 238, 242, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(232, 238, 242, 0.7);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: var(--color-primary);
}

.contact-item strong {
    display: block;
    color: var(--color-light);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(232, 238, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-top: 0.25rem;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    color: rgba(232, 238, 242, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(232, 238, 242, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-legal .separator {
    color: rgba(232, 238, 242, 0.3);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(232, 238, 242, 0.5);
    font-size: 0.9rem;
}

.footer-badge svg {
    animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        flex-direction: column;
    }

    .social-link-pro {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== JAVASCRIPT INTERACTIONS ===== */
.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}
/* ===== STYLES ENHANCED ====== */
/* ================================
   CRAUW 2026 - ENHANCED PROFESSIONAL STYLES
   Styles Additionnels pour les Sections Améliorées
   ================================ */

/* ===== LOGO PAK DANS LE HEADER ===== */
.pak-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 105, 0.3));
    transition: all 0.3s ease;
}

.pak-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 16px rgba(0, 217, 105, 0.5));
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PILLARS SECTION - PROFESSIONAL TIMELINE DESIGN ===== */
.pillars-pro {
    padding: 8rem 0;
    background: linear-gradient(180deg, #070A0D 0%, #0F1419 50%, #070A0D 100%);
    position: relative;
    overflow: hidden;
}

.pillars-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 217, 105, 0.3) 20%, 
        rgba(255, 214, 10, 0.3) 50%,
        rgba(230, 57, 70, 0.3) 80%, 
        transparent 100%
    );
}

.pillars-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
}

.pillar-pro {
    position: relative;
    margin-bottom: 6rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.pillar-pro:last-child {
    margin-bottom: 0;
}

.pillar-pro:last-child .pillar-connector {
    display: none;
}

/* Number Badge */
.pillar-number-badge {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    box-shadow: 0 8px 32px rgba(0, 217, 105, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.pillar-number-badge.accent {
    background: var(--gradient-accent);
    box-shadow: 0 8px 32px rgba(255, 214, 10, 0.4);
}

.pillar-number-badge.secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.4);
    color: var(--color-white);
}

.pillar-number-badge.primary {
    background: var(--gradient-primary);
    box-shadow: 0 8px 32px rgba(0, 217, 105, 0.4);
}

.pillar-pro:hover .pillar-number-badge {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 48px rgba(0, 217, 105, 0.6);
}

/* Content Card */
.pillar-pro-content {
    flex: 1;
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-pro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-pro:hover .pillar-pro-content::before {
    opacity: 1;
}

.pillar-pro:hover .pillar-pro-content {
    transform: translateX(10px);
    border-color: rgba(0, 217, 105, 0.3);
    background: rgba(26, 32, 39, 0.8);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pillar-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 105, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.pillar-icon-wrapper.accent {
    background: rgba(255, 214, 10, 0.1);
}

.pillar-icon-wrapper.secondary {
    background: rgba(230, 57, 70, 0.1);
}

.pillar-icon-wrapper.primary {
    background: rgba(0, 217, 105, 0.1);
}

.pillar-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-pro:hover .pillar-icon-bg {
    opacity: 0.2;
}

.pillar-icon {
    position: relative;
    z-index: 1;
    stroke: var(--color-primary);
    transition: all 0.4s ease;
}

.pillar-icon-wrapper.accent .pillar-icon {
    stroke: var(--color-accent);
}

.pillar-icon-wrapper.secondary .pillar-icon {
    stroke: var(--color-secondary);
}

.pillar-pro:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-text {
    position: relative;
}

.pillar-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pillar-description {
    font-size: 1.05rem;
    color: rgba(232, 238, 242, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pillar-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 105, 0.1);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(0, 217, 105, 0.2);
    border-color: rgba(0, 217, 105, 0.4);
    transform: translateY(-2px);
}

.highlight-tag svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Connector Line */
.pillar-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -6rem;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 217, 105, 0.3) 0%, 
        rgba(0, 217, 105, 0.1) 100%
    );
}

/* CTA Button */
.pillars-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pillars-pro::before {
        display: none;
    }

    .pillar-pro {
        flex-direction: column;
        margin-bottom: 4rem;
    }

    .pillar-number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pillar-connector {
        display: none;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

    .pillar-description {
        font-size: 1rem;
    }
}

/* ===== GALLERY SECTION - PROFESSIONAL MASONRY LAYOUT ===== */
.gallery-pro {
    padding: 8rem 0;
    background: var(--color-darker);
    position: relative;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item-pro {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-item-pro.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item-pro.wide {
    grid-column: span 2;
}

.gallery-item-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(15, 20, 25, 0.7) 60%, 
        rgba(15, 20, 25, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-pro:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-pro:hover img {
    transform: scale(1.1);
}

.gallery-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-pro:hover .gallery-info {
    transform: translateY(0);
}

.gallery-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-light);
    margin: 0;
}

.gallery-more {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 13, 0.98);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.gallery-modal.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-modal-header {
    position: sticky;
    top: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 105, 0.1);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.modal-header-content h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.modal-header-content p {
    color: rgba(232, 238, 242, 0.6);
    margin: 0;
}

.modal-close {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(230, 57, 70, 0.2);
    border-color: rgba(230, 57, 70, 0.4);
    transform: rotate(90deg);
}

.modal-close svg {
    stroke: var(--color-secondary);
}

.gallery-modal-content {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.extended-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.extended-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extended-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 217, 105, 0.2);
}

.extended-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.extended-gallery-item:hover img {
    transform: scale(1.1);
}

.extended-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(15, 20, 25, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extended-gallery-item:hover .extended-overlay {
    opacity: 1;
}

.extended-caption {
    color: var(--color-light);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item-pro.large,
    .gallery-item-pro.wide {
        grid-column: span 1;
    }

    .extended-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-modal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modal-header-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== COMPETITIONS SECTION - ULTRA PROFESSIONAL ===== */
.competitions-ultra {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0F1419 0%, #070A0D 100%);
    position: relative;
}

.competitions-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.comp-ultra-card {
    background: linear-gradient(135deg, rgba(26, 32, 39, 0.8) 0%, rgba(15, 20, 25, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 105, 0.2);
    transition: all 0.5s ease;
    position: relative;
}

.comp-ultra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.comp-ultra-card.junior::before {
    background: var(--gradient-accent);
}

.comp-ultra-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 217, 105, 0.4);
    box-shadow: 0 24px 64px rgba(0, 217, 105, 0.15);
}

.comp-ultra-card.junior:hover {
    border-color: rgba(255, 214, 10, 0.4);
    box-shadow: 0 24px 64px rgba(255, 214, 10, 0.15);
}

.comp-ultra-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    position: relative;
}

.comp-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 217, 105, 0.3);
}

.comp-category-badge.junior {
    background: var(--gradient-accent);
    box-shadow: 0 4px 16px rgba(255, 214, 10, 0.3);
}

.comp-ultra-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-light);
    margin-bottom: 0.75rem;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-ultra-tagline {
    font-size: 1.125rem;
    color: rgba(232, 238, 242, 0.7);
    font-style: italic;
}

.comp-ultra-body {
    padding: 0 3rem 3rem;
}

.comp-intro {
    padding: 2rem;
    background: rgba(0, 217, 105, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.comp-ultra-card.junior .comp-intro {
    background: rgba(255, 214, 10, 0.05);
    border-left-color: var(--color-accent);
}

.comp-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232, 238, 242, 0.9);
    margin: 0;
}

.comp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comp-stat-card {
    background: rgba(26, 32, 39, 0.6);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.comp-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 105, 0.4);
    background: rgba(26, 32, 39, 0.8);
}

.comp-stat-card.featured {
    border-color: rgba(0, 217, 105, 0.4);
    background: rgba(0, 217, 105, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 105, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comp-stat-card.featured .stat-icon {
    background: rgba(0, 217, 105, 0.2);
}

.stat-icon svg {
    stroke: var(--color-primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(232, 238, 242, 0.6);
}

.comp-challenges-pro {
    margin-bottom: 3rem;
}

.challenges-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.challenges-title svg {
    stroke: var(--color-primary);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.challenge-card {
    background: rgba(26, 32, 39, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.challenge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 105, 0.4);
    background: rgba(0, 217, 105, 0.1);
}

.challenge-card.junior {
    border-color: rgba(255, 214, 10, 0.2);
}

.challenge-card.junior:hover {
    border-color: rgba(255, 214, 10, 0.4);
    background: rgba(255, 214, 10, 0.1);
}

.challenge-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.challenge-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.challenge-difficulty {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 105, 0.2);
    color: var(--color-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.challenge-difficulty.junior {
    background: rgba(255, 214, 10, 0.2);
    color: var(--color-accent);
}

.comp-benefits {
    margin-bottom: 2.5rem;
}

.benefits-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 32, 39, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(26, 32, 39, 0.6);
    transform: translateX(8px);
}

.benefit-item svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(232, 238, 242, 0.9);
    font-size: 1rem;
}

.btn-comp-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 16px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-comp-register.junior {
    background: var(--gradient-accent);
    box-shadow: 0 8px 24px rgba(255, 214, 10, 0.3);
}

.btn-comp-register::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-comp-register:hover::before {
    width: 300px;
    height: 300px;
}

.btn-comp-register:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 217, 105, 0.4);
}

.btn-comp-register.junior:hover {
    box-shadow: 0 16px 48px rgba(255, 214, 10, 0.4);
}

.btn-comp-register svg {
    transition: transform 0.3s ease;
}

.btn-comp-register:hover svg {
    transform: translateX(8px);
}

/* Responsive Competitions */
@media (max-width: 768px) {
    .comp-ultra-title {
        font-size: 2rem;
    }

    .comp-ultra-header,
    .comp-ultra-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .challenges-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .comp-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER - ULTRA PROFESSIONAL ===== */
.footer-ultra {
    background: linear-gradient(180deg, #070A0D 0%, #000000 100%);
    padding: 6rem 0 0;
    position: relative;
}

.footer-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-cameroun);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(232, 238, 242, 0.1);
}

.footer-brand-section {
    max-width: 500px;
}

.footer-logo-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-pak-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 217, 105, 0.3));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
}

.footer-logo-year {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.footer-mission {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 238, 242, 0.7);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 32, 39, 0.6);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 12px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-pro:hover {
    background: rgba(0, 217, 105, 0.1);
    border-color: rgba(0, 217, 105, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.2);
}

.social-link-pro svg {
    width: 20px;
    height: 20px;
}

.social-link-pro span {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(232, 238, 242, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(232, 238, 242, 0.7);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: var(--color-primary);
}

.contact-item strong {
    display: block;
    color: var(--color-light);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(232, 238, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-top: 0.25rem;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    color: rgba(232, 238, 242, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(232, 238, 242, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-legal .separator {
    color: rgba(232, 238, 242, 0.3);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(232, 238, 242, 0.5);
    font-size: 0.9rem;
}

.footer-badge svg {
    animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        flex-direction: column;
    }

    .social-link-pro {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== JAVASCRIPT INTERACTIONS ===== */
.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}
/* ===== STYLES FIXES ====== */
/* ================================
   CRAUW 2026 - CORRECTIONS ET FIXES
   Corrections pour améliorer l'affichage
   ================================ */

/* ===== FIX: LOGO PAK DANS LE HEADER ===== */
.pak-logo {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 105, 0.3));
    transition: all 0.3s ease;
}

.navbar.scrolled .pak-logo {
    width: 35px !important;
    height: 35px !important;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Suppression du cube si présent */
.logo-cube {
    display: none !important;
}

/* ===== FIX: SECTION À PROPOS - CENTRAGE ET IMAGES ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    max-width: 100%;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(232, 238, 242, 0.85);
}

.about-text .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-primary);
}

/* Images mieux dimensionnées */
.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

.image-grid img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.image-grid img:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 217, 105, 0.2);
}

/* Responsive pour la section À propos */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .image-grid img {
        max-height: 200px;
    }
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FIX: LOGOS PARTENAIRES - DIMENSIONS ET AFFICHAGE ===== */
.partners-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(26, 32, 39, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-height: 120px;
}

.partner-logo-item:hover {
    background: rgba(26, 32, 39, 0.6);
    border-color: rgba(0, 217, 105, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 217, 105, 0.15);
}

.partner-logo-item img {
    max-width: 160px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: grayscale(0.8) brightness(1.2);
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

/* Si les images ne s'affichent pas, forcer l'affichage */
.partner-logo-item img[src*=".png"],
.partner-logo-item img[src*=".jpg"],
.partner-logo-item img[src*=".jpeg"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive pour les partenaires */
@media (max-width: 768px) {
    .partners-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partner-logo-item {
        padding: 1rem;
        min-height: 100px;
    }

    .partner-logo-item img {
        max-width: 140px !important;
        max-height: 70px !important;
    }
}

@media (max-width: 480px) {
    .partners-carousel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== FIX: RÉSEAUX SOCIAUX - SEULEMENT FACEBOOK ET LINKEDIN ===== */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: rgba(26, 32, 39, 0.6);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 12px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.social-link-pro:hover {
    background: rgba(0, 217, 105, 0.1);
    border-color: rgba(0, 217, 105, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 217, 105, 0.2);
}

.social-link-pro svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-link-pro span {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Couleurs spécifiques pour chaque réseau */
.social-link-pro[aria-label="Facebook"]:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.4);
}

.social-link-pro[aria-label="LinkedIn"]:hover {
    background: rgba(10, 102, 194, 0.1);
    border-color: rgba(10, 102, 194, 0.4);
}

/* ===== FIX: EMOJIS REMPLACÉS PAR SVG DANS LES COMPÉTITIONS ===== */
/* Les emojis dans .challenge-icon sont maintenant des SVG */
.challenge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 0; /* Cache les emojis si présents */
}

.challenge-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
    stroke-width: 2;
}

.challenge-card.junior .challenge-icon svg {
    stroke: var(--color-accent);
}

/* ===== FIX: TAILLE DES POLICES DANS LES BOXES ===== */
/* Competitions cards */
.comp-ultra-title {
    font-size: 2.25rem;
    line-height: 1.2;
}

.comp-ultra-tagline {
    font-size: 1.05rem;
    line-height: 1.4;
}

.comp-intro p {
    font-size: 1rem;
    line-height: 1.7;
}

.stat-value {
    font-size: 1.35rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    line-height: 1.3;
}

.challenge-name {
    font-size: 0.875rem;
    line-height: 1.3;
}

.benefit-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Piliers */
.pillar-title {
    font-size: 1.65rem;
    line-height: 1.3;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.7;
}

.highlight-tag {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

/* Footer */
.footer-mission {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links a {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive pour les polices */
@media (max-width: 768px) {
    .comp-ultra-title {
        font-size: 1.85rem;
    }

    .comp-ultra-tagline {
        font-size: 1rem;
    }

    .pillar-title {
        font-size: 1.4rem;
    }

    .pillar-description {
        font-size: 0.95rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }
}

/* ===== FIX: HEADER LOGO CRAUW 2026 ===== */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: 1px;
}

.logo-year {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
}

.navbar.scrolled .logo-main {
    font-size: 1.5rem;
}

.navbar.scrolled .logo-year {
    font-size: 0.8rem;
}

/* ===== FIX: PARTNERS CTA ===== */
.partners-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(26, 32, 39, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 20px;
}

.partners-cta h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
}

.partners-cta p {
    font-size: 1.1rem;
    color: rgba(232, 238, 242, 0.7);
    margin-bottom: 2rem;
}

/* ===== FIX: GALLERY OVERLAY INFO ===== */
.gallery-info h4 {
    font-size: 1.15rem;
    line-height: 1.3;
}

.gallery-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
}

/* ===== FIX GÉNÉRAL: RESPONSIVE ===== */
@media (max-width: 480px) {
    .pak-logo {
        width: 35px !important;
        height: 35px !important;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-year {
        font-size: 0.75rem;
    }

    .social-link-pro {
        padding: 0.7rem 1.2rem;
        font-size: 0.875rem;
    }

    .social-link-pro svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== FIX: FORCER L'AFFICHAGE DES IMAGES SI PROBLÈME ===== */
img[src$=".png"],
img[src$=".jpg"],
img[src$=".jpeg"],
img[src$=".webp"] {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Fix pour les images qui ne chargent pas */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Placeholder si image manquante */
.partner-logo-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 217, 105, 0.05);
    border-radius: 16px;
    z-index: -1;
}

/* ===== BONUS: AMÉLIORATION GÉNÉRALE DE LA LISIBILITÉ ===== */
body {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    max-width: 75ch;
}

/* Amélioration des contrastes */
.section-subtitle {
    color: rgba(232, 238, 242, 0.75);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== PRINT STYLES ===== */
@media print {
    .pak-logo,
    .partner-logo-item img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}
/* ================================
   FORMS.CSS - Styles pour Inscription & Contact
   ================================ */

/* ===== PAGE HEADER ===== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12rem 2rem 6rem;
    background: var(--gradient-dark);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    background: var(--gradient-cameroun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(232, 238, 242, 0.8);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: rgba(232, 238, 242, 0.6);
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

/* ===== REGISTRATION SECTION ===== */
.registration-section,
.contact-section {
    padding: 6rem 2rem;
    background: var(--color-darker);
}

/* ===== CATEGORY SELECTOR ===== */
.category-selector {
    margin-bottom: 6rem;
}

.category-selector .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 105, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all var(--transition-slow);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 217, 105, 0.3);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.category-card p {
    color: rgba(232, 238, 242, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.category-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.category-features li {
    padding: 0.8rem 0;
    color: rgba(232, 238, 242, 0.7);
    border-bottom: 1px solid rgba(0, 217, 105, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ===== FORMS ===== */
.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.registration-form,
.contact-form {
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 24px;
    padding: 3rem;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 217, 105, 0.2);
}

.form-header h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
}

.btn-back {
    background: transparent;
    border: 1px solid rgba(0, 217, 105, 0.3);
    color: var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-back:hover {
    background: rgba(0, 217, 105, 0.1);
    border-color: var(--color-primary);
}

/* ===== FORM SECTIONS ===== */
.form-section {
    margin-bottom: 3rem;
}

.form-section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    font-size: 1.8rem;
}

/* ===== FORM GROUPS ===== */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-light);
}

.required {
    color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-secondary);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 20, 25, 0.6);
    border: 2px solid rgba(0, 217, 105, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 20, 25, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 217, 105, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 238, 242, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== MEMBER BLOCKS ===== */
.member-block {
    background: rgba(15, 20, 25, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.member-block h5 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* ===== CHECKBOX GROUP ===== */
.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(232, 238, 242, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-accent);
}

/* ===== FORM ACTIONS ===== */
.form-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 217, 105, 0.2);
    display: flex;
    justify-content: center;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-primary);
    border-radius: 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-dark);
    margin: 0 auto 2rem;
    font-weight: 900;
}

.success-message h2,
.success-message h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
    color: rgba(232, 238, 242, 0.8);
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: rgba(232, 238, 242, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(232, 238, 242, 0.8);
    line-height: 1.7;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    margin-bottom: 3rem;
}

.social-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    margin-top: 3rem;
    padding: 2rem 0;
}

.contact-section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-placeholder {
    background: rgba(26, 32, 39, 0.6);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    color: rgba(232, 238, 242, 0.6);
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ===== CONTACT FORM WRAPPER ===== */
.contact-form-wrapper {
    position: relative;
}

.contact-form h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.form-intro {
    color: rgba(232, 238, 242, 0.7);
    margin-bottom: 2.5rem;
}

.char-counter {
    display: block;
    text-align: right;
    color: rgba(232, 238, 242, 0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 2rem;
    background: var(--gradient-dark);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 105, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    transition: transform var(--transition-base);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: rgba(232, 238, 242, 0.8);
    line-height: 1.8;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }

    .registration-form,
    .contact-form {
        padding: 2rem;
    }

    .form-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 10rem 1.5rem 4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form,
    .contact-form {
        padding: 1.5rem;
    }

    .member-block {
        padding: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}

/* ===== GOOGLE MAPS IN CONTACT PAGE ===== */
.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 217, 105, 0.2);
    transition: all var(--transition-base);
    margin-top: 2rem;
}

.map-wrapper:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px rgba(0, 217, 105, 0.3);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-overlay-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.map-pin {
    font-size: 1.5rem;
}

.map-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

@media (max-width: 640px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-overlay-label {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        flex-direction: column;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* ===== MAP FULL SECTION ===== */
.map-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 100%);
}

.map-content {
    max-width: 1200px;
    margin: 0 auto;
}

.map-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
}

.map-description {
    font-size: 1.2rem;
    color: rgba(232, 238, 242, 0.8);
    text-align: center;
    margin-bottom: 3rem;
}

.map-wrapper-full {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(0, 217, 105, 0.4);
    transition: all var(--transition-base);
}

.map-wrapper-full:hover {
    border-color: var(--color-primary);
    box-shadow: 0 25px 70px rgba(0, 217, 105, 0.5);
    transform: translateY(-5px);
}

.map-wrapper-full iframe {
    display: block;
    width: 100%;
}

/* ===== CONTACT PAGE MAP SECTION ===== */
.contact-map-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 105, 0.2);
}

.map-section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.map-link-wrapper {
    margin-top: 1rem;
    text-align: center;
}
/* ================================
   FIXES CRITIQUES - AFFICHAGE FORCÉ
   ================================ */

/* FORCER L'AFFICHAGE DE LA SECTION JUNIOR */
.comp-ultra-card.junior {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    height: auto !important;
    min-height: 600px !important;
}

/* FORCER L'AFFICHAGE DU FOOTER */
.footer-ultra {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    height: auto !important;
    min-height: 400px !important;
}

/* FORCER L'AFFICHAGE DU MODAL GALERIE */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    display: flex !important;
    flex-direction: column;
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery-modal-header {
    position: sticky;
    top: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 217, 105, 0.2);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-content h3 {
    font-size: 1.75rem;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.modal-header-content p {
    color: rgba(232, 238, 242, 0.7);
    font-size: 1rem;
}

.modal-close {
    width: 44px;
    height: 44px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(230, 57, 70, 0.2);
    transform: rotate(90deg);
}

.modal-close svg {
    stroke: #E63946;
}

.gallery-modal-content {
    flex: 1;
    padding: 3rem 2rem;
    overflow-y: auto;
}

.extended-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.extended-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: rgba(26, 32, 39, 0.4);
    border: 1px solid rgba(0, 217, 105, 0.1);
}

.extended-gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 105, 0.3);
}

.extended-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.extended-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extended-gallery-item:hover .extended-overlay {
    opacity: 1;
}

.extended-caption {
    color: var(--color-light);
    font-size: 1.1rem;
    font-weight: 600;
}

/* S'assurer que toutes les sections competitions sont visibles */
.competitions-ultra {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.competitions-showcase {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr)) !important;
    gap: 3rem !important;
    margin-top: 3rem !important;
}

/* S'assurer que le footer est au bon endroit */
footer {
    margin-top: 0 !important;
}

/* Debug - bordures temporaires (à retirer en production) */
.comp-ultra-card.junior {
    border: 2px solid #FFD60A !important;
}

.footer-ultra {
    border-top: 3px solid #00D969 !important;
}

@media (max-width: 1200px) {
    .competitions-showcase {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .extended-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .extended-gallery-item img {
        height: 220px;
    }
}/* ================================
   CRAUW 2026 - CORRECTIONS FINALES
   Corrections pour les derniers problèmes
   ================================ */

/* ===== 1. COMPTE À REBOURS - CENTRAGE PARFAIT ===== */
.countdown-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 3rem 0 !important;
    text-align: center !important;
}

.countdown-label {
    text-align: center !important;
    margin: 0 auto 2rem !important;
    display: block !important;
}

.countdown {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin: 0 auto !important;
    flex-wrap: wrap !important;
}

.countdown-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.countdown-sep {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ===== 2. COMPÉTITIONS - RÉDUCTION DE LA TAILLE ===== */
.competitions-ultra {
    padding: 6rem 0 !important;
}

.competitions-showcase {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    max-width: 1400px !important;
    margin: 2rem auto 0 !important;
}

.comp-ultra-card {
    padding: 2rem !important;
    min-height: auto !important;
    max-height: none !important;
}

/* Réduire les titres */
.comp-ultra-title {
    font-size: 1.85rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
}

.comp-ultra-tagline {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
}

/* Réduire l'intro */
.comp-intro {
    padding: 1.25rem !important;
    margin-bottom: 1.75rem !important;
}

.comp-intro p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Réduire les stats */
.comp-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.comp-stat-card {
    padding: 1rem !important;
}

.stat-icon {
    width: 40px !important;
    height: 40px !important;
}

.stat-icon svg {
    width: 22px !important;
    height: 22px !important;
}

.stat-value {
    font-size: 1.2rem !important;
}

.stat-label {
    font-size: 0.8rem !important;
}

/* Réduire les challenges */
.comp-challenges-pro {
    margin-bottom: 2rem !important;
}

.challenges-title {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
}

.challenges-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
}

.challenge-card {
    padding: 1rem 0.75rem !important;
}

.challenge-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0.5rem !important;
}

.challenge-icon svg {
    width: 28px !important;
    height: 28px !important;
}

.challenge-name {
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
}

.challenge-difficulty {
    font-size: 0.7rem !important;
    padding: 0.2rem 0.6rem !important;
}

/* Réduire les bénéfices */
.comp-benefits {
    margin-bottom: 2rem !important;
}

.benefits-title {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
}

.benefits-list {
    gap: 0.75rem !important;
}

.benefit-item {
    padding: 0.75rem !important;
}

.benefit-item svg {
    width: 18px !important;
    height: 18px !important;
}

.benefit-item span {
    font-size: 0.875rem !important;
}

/* Bouton d'inscription */
.btn-comp-register {
    padding: 1.25rem 1.75rem !important;
    font-size: 1rem !important;
}

/* ===== 3. FOOTER - RÉORGANISATION COMPLÈTE ===== */
.footer-ultra {
    background: linear-gradient(180deg, #0F1419 0%, #000000 100%) !important;
    padding: 4rem 0 0 !important;
    position: relative !important;
}

.footer-ultra::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D969 0%, #FFD60A 50%, #E63946 100%) !important;
}

.footer-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.footer-top {
    display: grid !important;
    grid-template-columns: 1.5fr 2.5fr !important;
    gap: 4rem !important;
    padding-bottom: 3rem !important;
    border-bottom: 1px solid rgba(232, 238, 242, 0.1) !important;
    align-items: start !important;
}

.footer-brand-section {
    max-width: 100% !important;
}

.footer-logo-large {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.footer-pak-logo {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
}

.footer-logo-text {
    display: flex !important;
    flex-direction: column !important;
}

.footer-logo-main {
    font-family: var(--font-primary) !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #E8EEF2 !important;
    line-height: 1 !important;
}

.footer-logo-year {
    font-family: var(--font-mono) !important;
    font-size: 1rem !important;
    color: #00D969 !important;
    font-weight: 600 !important;
}

.footer-mission {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: rgba(232, 238, 242, 0.7) !important;
    margin-bottom: 2rem !important;
}

.footer-social {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.social-link-pro {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.85rem 1.5rem !important;
    background: rgba(26, 32, 39, 0.6) !important;
    border: 1px solid rgba(0, 217, 105, 0.2) !important;
    border-radius: 12px !important;
    color: #E8EEF2 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
}

.social-link-pro:hover {
    background: rgba(0, 217, 105, 0.1) !important;
    border-color: rgba(0, 217, 105, 0.4) !important;
    transform: translateY(-4px) !important;
}

.social-link-pro svg {
    width: 22px !important;
    height: 22px !important;
}

.footer-links-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem !important;
}

.footer-column {
    display: block !important;
}

.footer-column-title {
    font-family: var(--font-primary) !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #E8EEF2 !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    padding-bottom: 0.75rem !important;
}

.footer-column-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D969, #FFD60A) !important;
    border-radius: 2px !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 0.75rem !important;
}

.footer-links a {
    color: rgba(232, 238, 242, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    font-size: 0.95rem !important;
}

.footer-links a:hover {
    color: #00D969 !important;
    transform: translateX(4px) !important;
}

.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.contact-item {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    color: rgba(232, 238, 242, 0.7) !important;
    align-items: flex-start !important;
}

.contact-item svg {
    flex-shrink: 0 !important;
    margin-top: 0.25rem !important;
    stroke: #00D969 !important;
}

.contact-item strong {
    display: block !important;
    color: #E8EEF2 !important;
    margin-bottom: 0.25rem !important;
}

.contact-item a {
    color: rgba(232, 238, 242, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

.contact-item a:hover {
    color: #00D969 !important;
}

.footer-bottom {
    padding: 2rem 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.footer-bottom-content {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.footer-copyright {
    color: rgba(232, 238, 242, 0.5) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.footer-legal {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.footer-legal a {
    color: rgba(232, 238, 242, 0.5) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: color 0.3s ease !important;
}

.footer-legal a:hover {
    color: #00D969 !important;
}

.footer-legal .separator {
    color: rgba(232, 238, 242, 0.3) !important;
}

.footer-badge {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: rgba(232, 238, 242, 0.5) !important;
    font-size: 0.9rem !important;
}

/* ===== 4. BOUTONS HEADER - CORRECTION ===== */
.nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.btn-lang {
    padding: 0.5rem 1rem !important;
    background: transparent !important;
    border: 1px solid rgba(0, 217, 105, 0.3) !important;
    border-radius: 8px !important;
    color: #E8EEF2 !important;
    font-family: var(--font-mono) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-lang:hover {
    background: rgba(0, 217, 105, 0.1) !important;
    border-color: rgba(0, 217, 105, 0.5) !important;
    transform: translateY(-2px) !important;
}

.btn-register {
    padding: 0.65rem 1.5rem !important;
    background: linear-gradient(135deg, #00D969 0%, #00A854 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #0F1419 !important;
    font-family: var(--font-primary) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.btn-register:hover {
    background: linear-gradient(135deg, #00A854 0%, #008040 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 217, 105, 0.3) !important;
}

/* Menu mobile toggle */
.nav-toggle {
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
}

.nav-toggle span {
    width: 24px !important;
    height: 3px !important;
    background: #E8EEF2 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

.nav-toggle:hover span {
    background: #00D969 !important;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .competitions-showcase {
        grid-template-columns: 1fr !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        background: #0F1419 !important;
        padding: 2rem !important;
        display: none !important;
        flex-direction: column !important;
        gap: 1rem !important;
        border-top: 1px solid rgba(0, 217, 105, 0.2) !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .countdown {
        gap: 1rem !important;
    }
    
    .comp-stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* ===== ANNULER FIX-CRITICAL SI NÉCESSAIRE ===== */
/* Ces règles annulent les !important excessifs de fix-critical.css */
.comp-ultra-card {
    min-height: auto !important;
}

.footer-ultra {
    min-height: auto !important;
}

/* ===== ASSURER LA VISIBILITÉ ===== */
.comp-ultra-card,
.comp-ultra-card *,
.footer-ultra,
.footer-ultra * {
    visibility: visible !important;
    opacity: 1 !important;
}