:root {
    /* Beautiful Modern Color Palette */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #4facfe;
    --warning-color: #43e97b;
    --error-color: #fa709a;
    
    /* Elegant Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: rgba(26, 26, 46, 0.8);
    --bg-glass: rgba(10, 10, 10, 0.95);
    
    /* Premium Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e6ed;
    --text-muted: #a0aec0;
    --text-accent: #f7fafc;
    
    /* Luxury Accent Colors */
    --gold-primary: #ffd700;
    --gold-secondary: #ffed4e;
    --gold-light: #fff8dc;
    --purple-primary: #8b5cf6;
    --purple-secondary: #a855f7;
    
    /* Beautiful Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Beautiful Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.4);
    --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.3);
    --shadow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
    
    /* Elegant Borders */
    --border-color: rgba(102, 126, 234, 0.3);
    --border-gold: rgba(255, 215, 0, 0.3);
    --border-purple: rgba(139, 92, 246, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Legacy variables for compatibility */
    --nav-bg: rgba(30, 27, 75, 0.95);
    --nav-text: #E2E8F0;
    --nav-hover: #8B5CF6;
    --button-gradient: var(--gradient-primary);
    --menu-shadow: var(--shadow-lg);
    --text-gradient: linear-gradient(45deg, #F9FAFB, #E2E8F0);
    --gradient-1: var(--gradient-primary);
    --gradient-2: var(--gradient-secondary);
    --gradient-3: linear-gradient(135deg, #4F46E5, #7C3AED);
    --gradient-4: linear-gradient(to right, #1E1B4B, #3730A3);
    --background-color: var(--bg-primary);
    --surface-color: var(--bg-secondary);
    --text-color: var(--text-primary);
    --card-bg: var(--bg-card);
    --glass-bg: var(--bg-glass);
    --shadow-1: var(--shadow-glow);
    --shadow-2: var(--shadow-gold);
    --border-color: var(--border-color);
    --success-gradient: linear-gradient(135deg, #10B981, #059669);
    --warning-gradient: linear-gradient(135deg, #F59E0B, #D97706);
    --info-gradient: linear-gradient(135deg, #3B82F6, #2563EB);
    --nav-item-color: var(--text-secondary);
    --nav-item-hover: var(--secondary-color);
    --nav-item-active: var(--primary-color);
    --nav-item-gradient: var(--gradient-primary);
    --menu-blur: blur(10px);
    --button-glow: var(--shadow-glow);
    --black-primary: var(--bg-primary);
    --black-secondary: var(--bg-secondary);
    --gradient-black: var(--gradient-dark);
    --glass-black: var(--bg-glass);
    --glass-gold: rgba(255, 215, 0, 0.1);
    --border-gold: var(--border-gold);
    --glow-gold: var(--shadow-gold);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    line-height: 1.6;
    font-size: var(--font-size-base);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: -1;
    opacity: 0.3;
}

@keyframes backgroundShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Beautiful Header Design */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.header-main {
    padding: var(--spacing-md) 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-main {
    padding: 0.8rem 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: auto;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: var(--spacing-md);
    transition: all var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.logo:hover img {
    box-shadow: var(--shadow-purple);
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
    transition: all var(--transition-normal);
}

.logo:hover .logo-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--gold-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--gold-primary);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Fix Mobile Menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--gold-primary);
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--black-secondary);
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
}

.btn-inscription {
    margin-left: 2rem;
    padding: 0.8rem 1.5rem;
}

.header-main {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-1);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    position: relative;
    padding: 0.8rem 0;
    height: auto;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.logo .highlight {
    color: var(--primary-color);
}

/* Enhanced Navigation Styles */
.nav-links {
    gap: 3rem;
    position: relative;
    margin-left: auto;
    align-items: center;
}

.nav-link {
    font-size: var(--font-size-lg);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-secondary);
    position: relative;
    transition: all var(--transition-normal);
    border-radius: var(--border-radius);
    text-decoration: none;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: all var(--transition-normal);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover::before {
    border-color: var(--gold-primary);
    transform: scale(1.1);
    opacity: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link i {
    color: var(--gold-primary);
    margin-right: 8px;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover i {
    transform: translateY(-3px) rotate(10deg);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    width: 80%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Nav Item Hover Effect */
@keyframes menuHover {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-links li {
    position: relative;
}

.nav-links li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    position: relative;
}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
    color: var(--gold-light);
    position: relative;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link i {
    color: var(--nav-item-hover);
    margin-right: 8px;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover i {
    transform: translateY(-3px) scale(1.1);
    color: var(--nav-item-active);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--nav-item-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.15;
}

.nav-link:hover i {
    transform: translateY(-2px);
    color: var(--nav-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--button-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--nav-item-active);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.nav-link.active::before {
    opacity: 0.2;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 27, 75, 0.95);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: var(--menu-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1rem 0;
    backdrop-filter: var(--menu-blur);
    z-index: 1001;
}

.dropdown-menu a {
    color: var(--nav-item-color);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a:hover {
    color: var(--nav-item-active);
    background: rgba(139, 92, 246, 0.1);
    padding-left: 2rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--nav-item-gradient);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
    width: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-inscription {
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: var(--glow-gold);
    z-index: 2;
}

.btn-inscription::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--nav-item-gradient);
    z-index: -1;
    border-radius: 34px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-inscription::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.5), 
        rgba(139, 92, 246, 0), 
        rgba(139, 92, 246, 0.5)
    );
    border-radius: 34px;
    animation: borderGlow 2s linear infinite;
    z-index: -2;
    filter: var(--menu-blur);
}

.btn-inscription:hover::before {
    left: 100%;
}

.btn-inscription:hover {
    transform: translateY(-3px);
    color: white;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrolled Header Style */
.main-header.scrolled {
    background: var(--black-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .btn-inscription {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Beautiful Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.2) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: starTwinkle 10s linear infinite;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes starTwinkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, var(--glass-gold) 25%, transparent 25%) -20px 0,
        linear-gradient(-45deg, var(--glass-gold) 25%, transparent 25%) -20px 0,
        linear-gradient(45deg, transparent 75%, var(--glass-gold) 75%),
        linear-gradient(-45deg, transparent 75%, var(--glass-gold) 75%);
    background-size: 40px 40px;
    animation: patternMove 20s linear infinite;
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50" fill="rgba(255,255,255,0.1)"/></svg>') 0 0/50px 50px;
    animation: moveBackground 20s linear infinite;
    opacity: 0.3;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-primary);
    font-size: var(--font-size-6xl);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-align: center;
    animation: slideDown 1s ease-out;
    position: relative;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--button-gradient);
    border-radius: 2px;
}

.hero p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--text-accent);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

/* Enhanced Layout Improvements */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.services h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

.features h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonials h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.latest-courses h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
    position: relative;
}

.latest-courses h2::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.service-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
    animation: fadeIn 0.6s ease-out forwards;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    transform: scale(1);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.service-card:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.service-card:hover img {
    transform: scale(1.05) translateZ(20px);
}

.service-card h3 {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    margin: var(--spacing-lg) 0 var(--spacing-md);
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-lg);
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-normal);
    font-weight: 700;
    font-size: var(--font-size-lg);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    min-height: 56px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    background: var(--gradient-secondary);
    color: var(--text-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    background: var(--gradient-secondary);
}

/* Add animation effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 0.5s ease-out forwards;
    animation-delay: 2s;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        padding: 0.8rem 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--black-secondary);
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 8px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: transparent;
        box-shadow: none;
        margin: 1rem 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .btn-inscription {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .achievement-card {
        padding: 1.5rem;
    }

    .counter {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .course-card {
        margin-bottom: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .btn-inscription {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card img {
        height: 150px;
    }

    .achievement-card {
        padding: 1rem;
    }

    .counter {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .course-content {
        padding: 1rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .service-card img {
        height: 120px;
    }

    .counter {
        font-size: 1.8rem;
    }

    .feature-card i {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon i {
        font-size: 1rem;
    }
}

/* Modern Section Styles */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(12px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: var(--gradient-3);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: var(--font-size-4xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.feature-card i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover i::after {
    opacity: 0.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* New Achievements Section */
.achievements {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.achievement-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.counter {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--spacing-md) 0;
    line-height: 1;
}

/* New Testimonials Section */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.testimonial-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-md);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.quote {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: var(--spacing-xl);
    color: var(--text-secondary);
    font-style: italic;
}

.quote::before {
    content: '"';
    font-size: var(--font-size-5xl);
    position: absolute;
    left: 0;
    top: -var(--spacing-md);
    opacity: 0.3;
    color: var(--primary-color);
    font-family: serif;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

/* New Latest Courses Section */
.course-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.course-image {
    position: relative;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success-gradient);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
}

.course-content {
    padding: var(--spacing-lg);
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* New CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"),
        linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(124, 58, 237, 0.9));
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-xl);
    min-height: 48px;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-primary);
    color: white;
}

/* New Decorative Elements */
.section-divider {
    height: 3px;
    background: var(--gradient-gold);
    margin: 2rem auto;
    width: 150px;
    position: relative;
    border-radius: 2px;
}

.section-divider::before,
.section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.section-divider::before {
    left: -30px;
}

.section-divider::after {
    right: -30px;
}

/* New Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold-primary);
}

.corner-decoration.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-decoration.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* New Animations */
@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

@keyframes goldGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.glowing-text {
    animation: goldGlow 2s infinite;
}

/* Enhanced Footer Styles */
.footer {
    background: var(--bg-secondary);
    position: relative;
    padding: var(--spacing-3xl) 0 0;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: linear-gradient(30deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
                      linear-gradient(150deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
                      linear-gradient(30deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
                      linear-gradient(150deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
                      linear-gradient(60deg, var(--gold-secondary) 25%, transparent 25.5%, transparent 75%, var(--gold-secondary) 75%, var(--gold-secondary));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0;
    opacity: 0.03;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
}

.brand-section {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    font-weight: 700;
}

.brand-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.social-icon:hover i {
    color: white;
}

.social-icon i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.footer-separator {
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    margin-bottom: var(--spacing-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold-primary);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.contact-item p {
    color: var(--text-secondary);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    position: relative;
}

.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin-bottom: var(--spacing-xl);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .nav-menu {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--black-secondary);
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 1rem 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-section {
        padding-right: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
    }
}

/* Beautiful Animated Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatCircles 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-accent);
    top: 50%;
    left: 20%;
    animation-delay: -10s;
}

.circle-4 {
    width: 350px;
    height: 350px;
    background: var(--gradient-purple);
    bottom: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatCircles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

/* Enhanced Floating Elements */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatAround 25s linear infinite;
}

.floating-element:nth-child(2n) {
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    animation-duration: 30s;
}

.floating-element:nth-child(3n) {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    animation-duration: 35s;
    animation-delay: -10s;
}

.floating-element:nth-child(4n) {
    width: 5px;
    height: 5px;
    background: var(--gold-primary);
    animation-duration: 40s;
    animation-delay: -20s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40vw, -40vh) rotate(120deg);
    }
    66% {
        transform: translate(-30vw, 30vh) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.geometric-shapes .shape {
    position: absolute;
    opacity: 0.1;
    animation: geometricFloat 15s infinite ease-in-out;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid var(--primary-color);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.square {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.circle {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    animation-delay: -6s;
}

.hexagon {
    width: 35px;
    height: 35px;
    background: var(--gold-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 40%;
    right: 40%;
    animation-delay: -9s;
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
    }
}
