/* ============================================
   JOOUST ISACA - Premium Glassmorphism Theme
   Core UI Color Palette
   ============================================ */

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark);
    background: var(--bg-light);
    letter-spacing: 0;
    font-weight: 400;
    padding-top: 100px;
}

[data-theme="dark"] body {
    padding-top: 100px;
}

/* CSS Variables */
:root {
    /* Core UI Color Palette */
    --primary: #1D2D5C;       /* Dark Blue - headers, text, heavy accents */
    --primary-light: #2E4A8C;  /* Lighter variant */
    --primary-dark: #0B0D34;   /* Deep Blue */
    
    --secondary: #00A3E4;      /* Cerulean - buttons, links, active states */
    --secondary-light: #33B9E8;
    
    --accent: #FF6B35;         /* Orange accent for CTAs */
    --accent-light: #FF8F66;
    
    /* Neutrals */
    --dark: #1D2D5C;
    --dark-light: #33437A;
    --light: #F8FAFC;
    --light-gray: #E8EEF5;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --white: #FFFFFF;
    
    /* Background Colors */
    --bg-light: #FFFFFF;       /* Main page body */
    --bg-deep: #0B0D34;       /* High-contrast footers */
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(29, 45, 92, 0.95) 0%, rgba(0, 163, 228, 0.9) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --dark: #F8FAFC;
    --dark-light: #E2E8F0;
    --light: #0F172A;
    --light-gray: #1E293B;
    --bg-light: #0F172A;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --white: #1E293B;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark);
    background: var(--bg-light);
    letter-spacing: 0;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
}
h2 { 
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 700;
}
h3 { 
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.35;
}
h4 { 
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.4;
    font-weight: 600;
}
h5 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
}
h6 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

p { 
    color: var(--gray); 
    margin-bottom: var(--space-md);
    line-height: 1.8;
    font-size: 1rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--primary); }

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   GLASSMORPHISM COMPONENTS
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

/* ============================================
   PREMIUM HEADER
   ============================================ */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    font-size: 0.8rem;
}

.header-top .header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: var(--space-xl);
    color: rgba(255, 255, 255, 0.8);
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-left i {
    color: var(--secondary);
}

.header-top-right {
    display: flex;
    gap: var(--space-md);
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(29, 45, 92, 0.08);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(29, 45, 92, 0.1);
}

[data-theme="dark"] .main-nav {
    background: rgba(11, 13, 52, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .main-nav.scrolled {
    background: rgba(11, 13, 52, 0.98);
}

[data-theme="dark"] .header-top {
    background: var(--bg-deep);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateX(5px);
}

.logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(29, 45, 92, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

[data-theme="dark"] .logo-name {
    color: var(--white);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 16px;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn-join {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 45, 92, 0.3);
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 45, 92, 0.4);
    color: var(--white);
}

.btn-join i {
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-join:hover i {
    transform: translateX(4px);
}



.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--primary);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: var(--white);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 10001;
    transition: all 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .mobile-menu {
    background: var(--bg-deep);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
}

.mobile-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--white);
    padding: 2px;
}

.mobile-logo .logo-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.mobile-logo .logo-tagline {
    display: block;
    font-size: 0.6rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.mobile-close {
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: var(--danger);
    color: var(--white);
}

.mobile-nav-links {
    list-style: none;
    padding: var(--space-lg);
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-links li {
    margin-bottom: var(--space-xs);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--white);
    background: var(--gradient-primary);
}

.mobile-nav-links a i {
    width: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }
    
    .header-top {
        display: none;
    }
    
    .nav-container {
        height: 65px;
        padding: 0 var(--space-md);
    }
    
    .logo-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 38, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 38, 71, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: var(--white);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Filter Buttons */
.filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none;
    background: var(--glass-bg);
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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 ease;
}

.filter-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 58, 95, 0.15);
}

.filter-btn:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(29, 58, 95, 0.35);
    transform: translateY(-2px);
}

.filter-btn.active::before {
    display: none;
}

.filter-btn i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .filter-wrapper {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
}

/* ============================================
   PREMIUM HERO SECTION V2 - NEW DESIGN
    ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0f1c 0%, #0d1b2a 50%, #1b263b 100%);
    overflow: hidden;
    padding: 100px 0 150px;
}

/* Animated Background */
.hero-bg-animated {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920&q=80') center/cover no-repeat;
    animation: kenBurns 20s ease-in-out infinite alternate;
    opacity: 0.4;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 0.95) 0%, 
        rgba(13, 27, 42, 0.85) 50%, 
        rgba(27, 38, 59, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 163, 228, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
    animation: particleFloat 15s ease-in-out infinite;
}

.hero-particles::after {
    background-image: 
        radial-gradient(circle at 60% 70%, rgba(0, 163, 228, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 35%);
    animation-delay: -7.5s;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(5deg); }
    66% { transform: translate(-15px, 15px) rotate(-5deg); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Hero Wrapper */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    color: var(--white);
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(0, 163, 228, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    border-radius: 50%;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 163, 228, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(0, 163, 228, 0);
        transform: scale(1.2);
    }
}

.hero-title-new {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title-new .title-line {
    display: block;
    color: var(--white);
}

.hero-title-new .title-gradient {
    background: linear-gradient(90deg, #00A3E4, #00D4FF, #00FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-subtitle-new {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta-group-new {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(4px);
}

/* Quick Stats */
.hero-quick-stats {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.qs-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
}

.qs-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual New */
.hero-visual-new {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.5s backwards;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 163, 228, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-main {
    width: 320px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 163, 228, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-main:hover .card-glow {
    opacity: 1;
}

.card-main .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    box-shadow: 0 10px 30px rgba(0, 163, 228, 0.3);
}

.card-main h3 {
    font-size: var(--text-xl);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.card-main p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.card-progress {
    margin-top: var(--space-lg);
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #00D4FF);
    border-radius: var(--radius-full);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 10px var(--secondary); }
    50% { box-shadow: 0 0 20px #00D4FF; }
}

@keyframes cardFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.card-float {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    animation: floatBounce 4s ease-in-out infinite;
}

.card-float-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-float-2 {
    top: 45%;
    left: -20px;
    animation-delay: 1.5s;
}

.card-float-3 {
    bottom: 15%;
    right: 10px;
    animation-delay: 3s;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.card-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-base);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info .card-title {
    font-weight: 700;
    color: var(--white);
    font-size: var(--text-sm);
}

.card-badge {
    font-size: var(--text-xs);
    color: var(--secondary);
    font-weight: 600;
}

.card-badge-new {
    font-size: var(--text-xs);
    color: #00FFD4;
    font-weight: 600;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-mini-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}

.stat-mini-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

/* Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle-new {
        margin: 0 auto var(--space-2xl);
        max-width: 100%;
    }
    
    .hero-cta-group-new {
        justify-content: center;
    }
    
    .hero-quick-stats {
        justify-content: center;
    }
    
    .hero-visual-new {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 100px;
    }
    
    .hero-title-new {
        font-size: 2.2rem;
    }
    
    .hero-cta-group-new {
        flex-direction: column;
    }
    
    .hero-cta-group-new .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-quick-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ============================================
   PREMIUM HERO - BACKGROUND IMAGE + ILLUSTRATION
   ============================================ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Full Background */
.hero-full-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 0.92) 0%, 
        rgba(10, 15, 28, 0.85) 40%,
        rgba(10, 15, 28, 0.75) 100%);
}

.hero-bg-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 163, 228, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 30%);
    animation: particleDrift 15s ease-in-out infinite;
}

@keyframes particleDrift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -15px); }
    50% { transform: translate(-10px, 10px); }
    75% { transform: translate(15px, 5px); }
}

/* Wrapper */
.hero-premium-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Illustration Side */
.hero-illustration {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.illustration-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.illustration-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 163, 228, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.illustration-main {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    animation: illusFloat 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

/* Animated Rings */
.illus-ring {
    position: absolute;
    border: 2px solid rgba(0, 163, 228, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 4s ease-out infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.ring-2 {
    width: 380px;
    height: 380px;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 460px;
    height: 460px;
    animation-delay: 2.6s;
}

@keyframes ringExpand {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* Floating Elements */
.illus-float {
    position: absolute;
    z-index: 5;
    animation: floatBounce 4s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.float-2 {
    top: 30%;
    right: -15px;
    animation-delay: 1s;
}

.float-3 {
    bottom: 25%;
    left: -10px;
    animation-delay: 2s;
}

.float-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

.illus-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.illus-card i {
    color: var(--secondary);
    font-size: var(--text-base);
}

.illus-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 163, 228, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 163, 228, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 163, 228, 0.2);
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
}

.stat-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
}

.illus-code {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
}

.illus-code code {
    color: #ff6b35;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Content Side */
.hero-premium-content {
    color: var(--white);
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    animation: iconSpin 10s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.premium-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.premium-title .title-text {
    display: block;
    color: var(--white);
}

.premium-title .title-accent {
    background: linear-gradient(90deg, #00A3E4, #00D4FF, #00FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.premium-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

/* CTA Buttons */
.premium-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 163, 228, 0.4);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 163, 228, 0.5);
    color: var(--white);
}

.btn-premium-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-premium .btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 2;
}

/* Premium Stats */
.premium-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-stat-item {
    display: flex;
    flex-direction: column;
}

.ps-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
}

.ps-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.premium-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.premium-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-premium-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-illustration {
        order: 2;
        display: none;
    }
    
    .premium-subtitle {
        margin: 0 auto var(--space-2xl);
    }
    
    .premium-cta {
        justify-content: center;
    }
    
    .premium-stats {
        justify-content: center;
    }
    
    .premium-scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 0 60px;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-cta {
        flex-direction: column;
    }
    
    .btn-premium {
        width: 100%;
    }
    
    .premium-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .premium-stat-divider {
        width: 40px;
        height: 1px;
    }
}

.particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-5deg); }
    75% { transform: translate(30px, 10px) rotate(3deg); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero-title .title-line {
    display: block;
}

.hero-title .title-highlight {
    display: block;
    background: linear-gradient(90deg, var(--secondary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    max-width: 550px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 163, 228, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 163, 228, 0.5);
    color: var(--white);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.trust-item i {
    color: var(--secondary);
    font-size: var(--text-lg);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: var(--white);
    text-align: center;
    animation: cardFloat 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-card:nth-child(2) {
    top: 35%;
    right: 5%;
    animation-delay: 2s;
}

.hero-card:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: var(--secondary);
}

.hero-card h3 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin: 0;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto var(--space-2xl);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ============================================
   OTHER STYLES
   ============================================ */

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--white);
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) 0;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Events Page Section */
/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(29, 45, 92, 0.9) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 163, 228, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.page-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.page-hero .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatShape 8s ease-in-out infinite;
}

.page-hero .shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 163, 228, 0.3);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.page-hero .shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.25);
    bottom: -50px;
    left: 15%;
    animation-delay: 2s;
}

.page-hero .shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.2);
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 163, 228, 0.3);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img {
    transform: scale(1.08);
}

.card-body {
    padding: 28px;
}

.card-title {
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--secondary);
}

.card-text {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 18px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-meta i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(0, 163, 228, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 255, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.stats-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.stats-section .section-title {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.stats-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #00FFD4);
    border-radius: 2px;
    margin: 14px auto 0;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 163, 228, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 163, 228, 0.3), rgba(0, 255, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(0, 163, 228, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::after {
    opacity: 1;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    font-family: var(--font-display);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-icon {
        display: none;
    }
}

/* ============================================
   FEATURES
   ============================================ */
/* (see MODERN FEATURES SECTION below) */

/* ============================================
   QUICK LINKS
   ============================================ */
.links-section {
    background: var(--gradient-primary);
}

.links-section .section-title,
.links-section .section-subtitle {
    color: var(--white);
}

.links-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.link-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

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

.link-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.link-card:hover .link-icon {
    background: var(--white);
    color: var(--primary);
}

.link-content h3 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.link-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    margin: 0;
}

/* ============================================
   FACULTY ADVISORS SECTION
   ============================================ */
.faculty-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 50%, var(--primary) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.faculty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 163, 228, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 212, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.faculty-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.faculty-section .section-title {
    color: var(--white);
}

.faculty-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faculty-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.faculty-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(0, 163, 228, 0.4);
}

.faculty-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 163, 228, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info {
    flex: 1;
}

.faculty-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.faculty-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.faculty-position {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.faculty-bio {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faculty-section {
        padding: var(--space-3xl) 0;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faculty-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .faculty-image {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .faculty-image {
        width: 100px;
        height: 100px;
    }
    
    .faculty-name {
        font-size: 1.25rem;
    }
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-deep);
    color: var(--white);
    position: relative;
    padding-top: var(--space-4xl);
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-main {
    background: linear-gradient(135deg, rgba(29, 45, 92, 0.6) 0%, rgba(11, 13, 52, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer-premium-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.footer-premium-logo .logo-img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-premium-logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(29, 45, 92, 0.3);
}

.footer-premium-logo .logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-premium-logo .logo-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-premium-logo .logo-subtitle {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 2px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.footer-title {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    font-size: var(--text-sm);
}

.footer-links a i {
    color: var(--secondary);
    font-size: 10px;
}

.contact-links a {
    align-items: flex-start;
}

.contact-links a i {
    margin-top: 4px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: var(--text-sm);
}
.footer-bottom p a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom p a:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}

.premium-logo-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.premium-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.premium-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.premium-logo-item:hover .premium-logo {
    opacity: 1;
}

.premium-logo-item span {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: all var(--transition-base);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--error);
    color: var(--white);
}

.modal-body {
    padding: var(--space-xl);
}

/* ============================================
   ALERTS & TOASTS
   ============================================ */
.alert {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    padding: var(--space-md) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideInRight 0.3s ease;
    min-width: 300px;
}

.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid #EF4444; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-slide-in { animation: slideIn 0.5s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-main {
        padding: var(--space-2xl);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-title {
        width: 100%;
        border-bottom: none;
        background: linear-gradient(90deg, var(--secondary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Page Hero */

/* ============================================
   EVENTS HERO SECTION
   ============================================ */
.events-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.events-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.events-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 163, 228, 0.4) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 212, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 45, 92, 0.5) 0%, transparent 70%);
    top: 40%;
    left: 60%;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
}

.events-hero .container {
    position: relative;
    z-index: 2;
}

.events-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.events-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00FFD4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.events-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.events-hero-title span {
    display: block;
    color: var(--white);
}

.events-hero-title .title-accent {
    background: linear-gradient(135deg, #00A3E4, #00FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
}

.events-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}



/* Leadership Card */
.leader-card-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(29, 58, 95, 0.08);
}
.leader-card:hover .leader-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 58, 95, 0.12);
}
.leader-card .leader-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.leader-card .leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.leader-card:hover .leader-image img {
    transform: scale(1.08);
}
.leader-card .leader-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    gap: 10px;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.leader-card:hover .leader-social {
    transform: translateY(0);
}
.leader-card .leader-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.leader-card .leader-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}
.leader-card .leader-info {
    padding: var(--space-xl);
    text-align: center;
}
.leader-card .leader-name {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.leader-card .leader-position {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}
.leader-card .leader-bio {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1a30 0%, #1D2D5C 50%, #0d2137 100%);
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 163, 228, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 40%);
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 163, 228, 0.15), transparent);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
}
.cta-badge {
    display: inline-flex;
    background: rgba(0, 163, 228, 0.2);
    border: 1px solid rgba(0, 163, 228, 0.3);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}
.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}
.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
    pointer-events: auto;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}
.modal-close:hover {
    color: var(--primary);
}
.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.modal-header h3 {
    color: var(--primary);
    margin-bottom: var(--space-xs);
}
.modal-header p {
    color: var(--text-muted);
}
.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(29, 58, 95, 0.08) 0%, rgba(45, 90, 135, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-weight: 700;
    font-size: 1.1rem;
}
.modal-total span:last-child {
    color: var(--primary);
}
.btn-block {
    width: 100%;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary), #00D4FF, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textGradShift 4s ease-in-out infinite;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(29, 45, 92, 0.08), rgba(0, 163, 228, 0.06));
    border: 1px solid rgba(0, 163, 228, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ============================================
   MODERN FEATURES SECTION
   ============================================ */
.features-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    padding: 100px 0;
}

.features-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.feat-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.feat-decor-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 163, 228, 0.12), transparent);
    top: -200px;
    right: -100px;
    animation: decorDrift 20s ease-in-out infinite;
}

.feat-decor-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    bottom: -150px;
    left: -100px;
    animation: decorDrift 25s ease-in-out infinite reverse;
}

.feat-decor-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent);
    top: 40%;
    left: 50%;
    animation: decorDrift 15s ease-in-out infinite;
}

@keyframes decorDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,163,228,0.12) 25%, rgba(99,102,241,0.12) 50%, transparent 75%);
    background-size: 200% 200%;
    z-index: 1;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
    background-position: 100% 100%;
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 45, 92, 0.06);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .feature-card-bg {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
}

.feature-card:hover .feature-card-bg {
    border-color: rgba(0, 163, 228, 0.2);
    box-shadow: 0 24px 80px rgba(29, 45, 92, 0.12);
    transform: translateY(-8px);
}

.feature-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 320px;
}

.feat-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.feat-icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid var(--icon-color-1);
    opacity: 0.15;
    transition: all 0.4s ease;
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

.feature-card:hover .feat-icon-ring {
    opacity: 0.5;
    transform: scale(1.15) rotate(15deg);
    animation: none;
}

.feat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--icon-color-1), var(--icon-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: inherit;
}

.feature-card:hover .feat-icon {
    transform: scale(1.08) rotate(-4deg) translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feat-text {
    flex: 1;
}

.feat-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--secondary);
    background: rgba(0, 163, 228, 0.08);
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover .feat-number {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.05);
}

.feat-text h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover .feat-text h3 {
    color: var(--secondary);
}

.feat-text p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.feat-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-top: auto;
    align-self: flex-end;
}

.feature-card:hover .feat-arrow {
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
    transform: translateX(6px) rotate(-45deg);
    box-shadow: 0 4px 15px rgba(0, 163, 228, 0.3);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-content {
        min-height: 280px;
        padding: 24px;
    }
}

/* ============================================
   MODERN SERVICES SECTION
   ============================================ */
.services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1a30 100%);
}

.services-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 163, 228, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,163,228,0.12) 25%, rgba(99,102,241,0.12) 50%, transparent 75%);
    background-size: 200% 200%;
    z-index: 0;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    background-position: 100% 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 228, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card-featured {
    border-color: rgba(0, 163, 228, 0.3);
    box-shadow: 0 0 40px rgba(0, 163, 228, 0.1);
}

.service-feat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 163, 228, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 163, 228, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(0, 163, 228, 0.6); }
}

.service-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.service-card:hover .service-card-shine {
    opacity: 1;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.serv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--serv-c1), var(--serv-c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.serv-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
    border-radius: inherit;
}

.service-card:hover .serv-icon {
    transform: scale(1.05) rotate(-4deg) translateY(-2px);
}

.serv-price-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary);
}

.service-card > p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.serv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.serv-tags span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card:hover .serv-tags span {
    background: rgba(0, 163, 228, 0.1);
    border-color: rgba(0, 163, 228, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.serv-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.serv-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.serv-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.serv-delivery i {
    color: var(--secondary);
}

.btn-serv-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 228, 0.3);
}

.btn-serv-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 228, 0.4);
}

.btn-serv-book i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.btn-serv-book:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODERN PRODUCTS SECTION
   ============================================ */
.products-section {
    background: linear-gradient(180deg, #f8fafc 0%, var(--bg-light) 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(29, 45, 92, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .product-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,163,228,0.1) 25%, rgba(99,102,241,0.1) 50%, transparent 75%);
    background-size: 200% 200%;
    z-index: 1;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
    background-position: 100% 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(29, 45, 92, 0.12);
    border-color: rgba(0, 163, 228, 0.15);
}

.prod-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    backdrop-filter: blur(4px);
}

.prod-badge-gold {
    background: linear-gradient(135deg, #F59E0B, #F97316);
}

.prod-badge-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.prod-badge-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.prod-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.prod-image {
    width: 100%;
    height: 100%;
}

.prod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .prod-image img {
    transform: scale(1.1);
}

.prod-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .prod-image-overlay {
    opacity: 1;
}

.prod-quick-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover .prod-quick-view {
    transform: translateY(0);
}

.prod-quick-view:hover {
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
}

.prod-stock {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stock-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.prod-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-info h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.product-card:hover .prod-info h3 {
    color: var(--secondary);
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.prod-rating i {
    font-size: 0.7rem;
    color: #F59E0B;
}

.prod-rating span {
    font-size: 0.7rem;
    color: var(--gray-light);
    margin-left: 4px;
}

.prod-info > p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.prod-sizes {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.size-tag {
    padding: 3px 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-tag:hover, .size-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.prod-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-swatch:hover, .color-active {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

.prod-variant {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.variant-option {
    padding: 3px 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-option:hover, .variant-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.prod-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-prod-buy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 163, 228, 0.3);
}

.btn-prod-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 163, 228, 0.4);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODERN ORDER MODAL
   ============================================ */
.modal-modern {
    background: var(--white);
    border-radius: 24px;
    max-width: 560px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: modalSlideUp 0.4s ease;
}

[data-theme="dark"] .modal-modern {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.modal-modern-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-modern-close:hover {
    background: #EF4444;
    color: var(--white);
    transform: rotate(90deg);
}

[data-theme="dark"] .modal-modern-close {
    background: rgba(255, 255, 255, 0.1);
    color: #94A3B8;
}

[data-theme="dark"] .modal-modern-close:hover {
    background: #EF4444;
    color: var(--white);
}

.modal-modern-header {
    text-align: center;
    padding: 40px 32px 24px;
    border-bottom: 1px solid var(--light-gray);
}

[data-theme="dark"] .modal-modern-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.modal-modern-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 163, 228, 0.3);
}

.modal-modern-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.modal-modern-header p {
    font-size: 0.88rem;
    color: var(--gray);
    margin: 0;
}

[data-theme="dark"] .modal-modern-header p {
    color: #94A3B8;
}

[data-theme="dark"] .modal-modern-header h3 {
    color: #F8FAFC;
}

.modal-modern-form {
    padding: 24px 32px 32px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-field {
    margin-bottom: 16px;
}

.modal-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-label i {
    color: var(--secondary);
    font-size: 0.78rem;
}

[data-theme="dark"] .modal-label {
    color: #94A3B8;
}

[data-theme="dark"] .modal-label i {
    color: #38BDF8;
}

.modal-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--dark);
}

.modal-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 163, 228, 0.15);
    background: var(--white);
}

[data-theme="dark"] .modal-input {
    background: #1a2332;
    border-color: #2d3a4f;
    color: #F8FAFC;
}

[data-theme="dark"] .modal-input:focus {
    background: #1e2a3d;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 163, 228, 0.15);
}

.modal-textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-input {
    border: none !important;
    border-radius: 0 !important;
    text-align: center;
    width: 60px;
    padding: 0;
    height: 44px;
    font-weight: 700;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-order-summary {
    background: linear-gradient(135deg, rgba(29, 45, 92, 0.04), rgba(0, 163, 228, 0.03));
    border: 1px solid rgba(29, 45, 92, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

[data-theme="dark"] .modal-order-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 163, 228, 0.05));
    border-color: rgba(255, 255, 255, 0.08);
}

.mos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 4px 0;
    color: var(--gray);
}

.mos-row span:last-child {
    font-weight: 600;
    color: var(--dark);
}

[data-theme="dark"] .mos-row {
    color: #94A3B8;
}

[data-theme="dark"] .mos-row span:last-child {
    color: #F8FAFC;
}

.mos-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 8px 0;
}

.mos-total span {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary) !important;
}

.modal-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 45, 92, 0.3);
}

.modal-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 45, 92, 0.4);
}

.modal-submit-btn i {
    transition: transform 0.3s ease;
}

.modal-submit-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .modal-form-row {
        grid-template-columns: 1fr;
    }
    .modal-modern-form {
        padding: 20px;
    }
    .modal-modern-header {
        padding: 32px 20px 20px;
    }
}

@media (max-width: 480px) {
    .modal-modern {
        width: 96%;
        border-radius: 16px;
    }
    .modal-modern-form {
        padding: 16px;
    }
    .modal-modern-header {
        padding: 24px 16px 16px;
    }
    .modal-modern-header h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   MODERN EVENTS SECTION
   ============================================ */
.events-section {
    position: relative;
    overflow: hidden;
}

.events-bg-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(0, 163, 228, 0.04) 100%);
    pointer-events: none;
}

.events-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(29, 45, 92, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .event-card-modern {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
}

.event-card-modern::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,163,228,0.1) 25%, rgba(99,102,241,0.1) 50%, transparent 75%);
    background-size: 200% 200%;
    z-index: 1;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.event-card-modern:hover::after {
    opacity: 1;
    background-position: 100% 100%;
}

.event-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(29, 45, 92, 0.12);
    border-color: rgba(0, 163, 228, 0.15);
}

.ecard-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 163, 228, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.ecard-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ecard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-card-modern:hover .ecard-image img {
    transform: scale(1.1);
}

.ecard-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.ecard-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 14px;
    min-width: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.ecard-day {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.ecard-month {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecard-category {
    position: absolute;
    top: 12px;
    right: 12px;
}

.ecard-category span {
    padding: 4px 12px;
    background: rgba(0, 163, 228, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecard-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.ecard-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: var(--gray);
}

.ecard-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ecard-meta i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.ecard-body h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.event-card-modern:hover .ecard-body h3 {
    color: var(--secondary);
}

.ecard-body > p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.ecard-footer {
    padding-top: 12px;
    border-top: 1px solid var(--light-gray);
}

.ecard-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ecard-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.ecard-link:hover i {
    transform: translateX(4px);
}

.ecard-link:hover {
    gap: 12px;
}

.events-cta-wrap {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-events-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-events-all:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 45, 92, 0.2);
}

.btn-events-all i {
    transition: transform 0.3s ease;
}

.btn-events-all:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .events-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .events-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .events-slider {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODERN LEADERSHIP SECTION
   ============================================ */
.leadership-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1a30 100%);
}

.leadership-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(0, 163, 228, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.leadership-section .section-title {
    color: var(--white);
}

.leadership-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.leadership-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leader-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.leader-card-modern::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,163,228,0.12) 25%, rgba(99,102,241,0.12) 50%, transparent 75%);
    background-size: 200% 200%;
    z-index: 1;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.leader-card-modern:hover::after {
    opacity: 1;
    background-position: 100% 100%;
}

.leader-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 228, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.lcard-bg-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.lcard-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.lcard-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.leader-card-modern:hover .lcard-photo img {
    transform: scale(1.08);
}

.lcard-photo-ring {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(10px);
}

.lcard-social {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

.leader-card-modern:hover .lcard-social {
    opacity: 1;
    transform: translateX(0);
}

.lcard-social-link {
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lcard-social-link:hover {
    background: var(--secondary);
    transform: scale(1.1);
    border-color: var(--secondary);
}

.lcard-body {
    padding: 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.lcard-role-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 163, 228, 0.15);
    border: 1px solid rgba(0, 163, 228, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.lcard-name {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.leader-card-modern:hover .lcard-name {
    color: var(--secondary);
}

.lcard-bio {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.lcard-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 12px;
}

.lcard-connect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.lcard-connect > span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.lcard-connect-icons {
    display: flex;
    gap: 6px;
}

.lcard-connect-icons a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lcard-connect-icons a:hover {
    background: var(--secondary);
    color: var(--white);
}

.leadership-cta-wrap {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-leaders-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-leaders-all:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-leaders-all i {
    transition: transform 0.3s ease;
}

.btn-leaders-all:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .leadership-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .leadership-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .leadership-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODERN CTA SECTION
   ============================================ */
.cta-section-modern {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1D2D5C 50%, #0d2137 100%);
}

.cta-modern-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 163, 228, 0.2), transparent);
    top: -200px;
    right: -150px;
    animation: ctaGlowFloat 8s ease-in-out infinite;
}

.cta-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent);
    bottom: -200px;
    left: -100px;
    animation: ctaGlowFloat 10s ease-in-out infinite reverse;
}

.cta-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
    top: 30%;
    left: 30%;
    animation: ctaGlowFloat 12s ease-in-out infinite;
}

@keyframes ctaGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-modern-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-modern-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-modern-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-modern-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--secondary), #00D4FF);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 163, 228, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%) rotate(25deg);
    animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {
    0%, 100% { transform: translateX(-100%) rotate(25deg); }
    50% { transform: translateX(100%) rotate(25deg); }
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 163, 228, 0.45);
    color: var(--white);
}

.cta-btn-primary i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-btn-primary:hover i {
    transform: translateX(4px);
}

.cta-btn-primary span {
    position: relative;
    z-index: 2;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 163, 228, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.cta-modern-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.cta-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    background: linear-gradient(90deg, var(--secondary), #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}

.cta-stat-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.cta-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: stockPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@media (max-width: 640px) {
    .cta-modern-actions {
        flex-direction: column;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .cta-modern-stats {
        flex-direction: column;
        gap: 16px;
    }
    .cta-stat-dot {
        display: none;
    }
}

/* ============================================
   REGISTRATION PAGE
   ============================================ */
.reg-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
    margin: 20px 0;
}
.reg-benefits h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
}
.reg-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.reg-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
    padding: 10px 14px;
    background: rgba(0, 163, 228, 0.04);
    border: 1px solid rgba(0, 163, 228, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.reg-benefits li:hover {
    background: rgba(0, 163, 228, 0.08);
    border-color: rgba(0, 163, 228, 0.15);
    transform: translateX(4px);
}
.reg-benefits li i {
    color: #10B981;
    font-size: 1rem;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .reg-benefits ul {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GENERAL UTILITIES
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 480px;
    margin: 0 auto;
}
.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 163, 228, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
}
.empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.empty-state p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}
.event-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gray);
}
.event-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.event-meta i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: calc(var(--card-order, 0) * 0.1s);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MOBILE GRID & CARD ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .features-grid,
    .services-grid,
    .products-grid,
    .events-slider,
    .leadership-grid-modern {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .services-grid,
    .products-grid,
    .events-slider,
    .leadership-grid-modern {
        gap: 12px;
    }

    .feature-card-content {
        padding: 24px;
    }

    .service-card {
        padding: 24px;
    }

    .event-card-modern .ecard-body {
        padding: 20px;
    }

    .leader-card-modern .lcard-body {
        padding: 20px;
    }

    .product-card .prod-info {
        padding: 20px;
    }

    .cta-section-modern {
        padding: 60px 0;
    }
}
