/* Muscat Kalolsavam - Main Stylesheet */

/* CSS Variables */
:root {
    --primary: #1A6B6B;
    --primary-light: #2a9999;
    --secondary: #F5A623;
    --accent: #FF6B6B;
    --purple: #9b59b6;
    --pink: #e91e63;
    --blue: #3498db;
    --green: #2ecc71;
    --dark: #1a1a2e;
    --gray-dark: #2d3436;
    --gray: #636e72;
    --gray-light: #dfe6e9;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition .loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.page-transition .loader-text {
    color: #fff;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Page Content Animation */
.page-content {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANIMATED REGISTER BUTTONS
   ============================================ */

/* Rainbow Glow Button */
.btn-register-nav,
.btn-register-hero,
.btn-register-section,
.btn-register-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    border: none;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(90deg, #f093fb, #f5576c, #ff6b6b, #f5a623, #4facfe, #00f2fe, #a8edea, #fed6e3);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-register-nav {
    padding: 10px 25px;
    font-size: 14px;
}

.btn-register-hero {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-register-section {
    padding: 14px 35px;
    font-size: 16px;
}

.btn-register-cta {
    padding: 16px 40px;
    font-size: 17px;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-register-nav:hover,
.btn-register-hero:hover,
.btn-register-section:hover,
.btn-register-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.6);
}

.btn-register-nav:hover,
.btn-register-hero:hover,
.btn-register-section:hover,
.btn-register-cta:hover {
    animation: gradient-shift 1s ease infinite;
}

/* Button Shine Effect */
.btn-register-nav .btn-shine,
.btn-register-hero .btn-particles span,
.btn-register-cta .btn-particles span {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Button Particles */
.btn-register-hero .btn-inner,
.btn-register-cta .btn-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-register-hero .btn-particles,
.btn-register-cta .btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-register-hero .btn-particles span,
.btn-register-cta .btn-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float-particle 2s infinite;
}

.btn-register-hero .btn-particles span:nth-child(1),
.btn-register-cta .btn-particles span:nth-child(1) {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}
.btn-register-hero .btn-particles span:nth-child(2),
.btn-register-cta .btn-particles span:nth-child(2) {
    top: 20%;
    left: 20%;
    animation-delay: 0.3s;
}
.btn-register-hero .btn-particles span:nth-child(3),
.btn-register-cta .btn-particles span:nth-child(3) {
    top: 20%;
    right: 20%;
    animation-delay: 0.6s;
}
.btn-register-hero .btn-particles span:nth-child(4),
.btn-register-cta .btn-particles span:nth-child(4) {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.9s;
}
.btn-register-hero .btn-particles span:nth-child(5),
.btn-register-cta .btn-particles span:nth-child(5) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.2s;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    25% { transform: translate(10px, -20px) scale(1.2); opacity: 1; }
    50% { transform: translate(-10px, -30px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(5px, -40px) scale(1); opacity: 0.2; }
}

/* Pulse Glow Effect */
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(245, 166, 35, 0.8), 0 0 40px rgba(245, 166, 35, 0.4); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    z-index: 1000;
    padding: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5576c, #f5a623, #43e97b, #4facfe, #667eea);
    background-size: 200% auto;
    animation: nav-underline 3s linear infinite;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-logo:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.nav-logo img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-logo i {
    font-size: 28px;
    color: #fff;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.nav-menu a::after {
    display: none;
}

.btn-nav {
    background: linear-gradient(135deg, #f5576c, #f5a623);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    margin-left: 15px;
    font-weight: 600;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 107, 107, 0.3);
}

.btn-nav::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.nav-social {
    display: none;
}

.social-fixed {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9998;
}

.social-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    animation: social-pulse 3s ease-in-out infinite;
}

.social-fixed a:nth-child(1) { animation-delay: 0s; }
.social-fixed a:nth-child(2) { animation-delay: 0.5s; }
.social-fixed a:nth-child(3) { animation-delay: 1s; }
.social-fixed a:nth-child(4) { animation-delay: 1.5s; }
.social-fixed a:nth-child(5) { animation-delay: 2s; }

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

.social-fixed a:hover {
    transform: scale(1.2) !important;
    animation: none;
}

.social-fixed a.facebook { background: #1877f2; color: #fff; box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4); }
.social-fixed a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; box-shadow: 0 4px 15px rgba(228, 64, 95, 0.4); }
.social-fixed a.twitter { background: #1da1f2; color: #fff; box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4); }
.social-fixed a.youtube { background: #ff0000; color: #fff; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
.social-fixed a.whatsapp { background: #25d366; color: #fff; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }

@media (max-width: 768px) {
    .social-fixed {
        left: 8px;
        gap: 8px;
    }
    
    .social-fixed a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 75px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    min-height: 600px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 195px);
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: bounce-in 0.8s ease 0.3s both;
}

.slide-badge i {
    animation: spin 3s linear infinite;
}

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

@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.slide-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fade-up 0.8s ease 0.5s both;
}

.slide-subtitle {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 0.8s ease 0.7s both, text-shine 3s linear infinite;
    margin-bottom: 20px;
}

@keyframes text-shine {
    to { background-position: 200% center; }
}

.slide-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fade-up 0.8s ease 0.9s both;
}

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

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 0.8s ease 1.1s both;
}

.btn-view-events {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view-events:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--secondary);
    transform: scale(1.3);
}

/* Slider Progress */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    width: 0%;
    animation: progress 5s linear infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 20%; left: 10%; animation-delay: 0s; font-size: 40px; }
.float-2 { top: 30%; right: 15%; animation-delay: 1s; }
.float-3 { bottom: 30%; left: 8%; animation-delay: 2s; font-size: 50px; }
.float-4 { top: 50%; right: 10%; animation-delay: 3s; }
.float-5 { bottom: 20%; right: 20%; animation-delay: 4s; font-size: 35px; }

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
}

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

/* ============================================
   QUICK STATS BAR
   ============================================ */

.quick-stats {
    background: var(--white);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 25;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-bar-item i {
    font-size: 36px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-bar-item .stat-count {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.stat-bar-item .stat-name {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES SECTION - WHY CHOOSE US
   ============================================ */

.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.feature-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: float-particle-section 8s ease-in-out infinite;
}

.feature-particle:nth-child(1) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.feature-particle:nth-child(2) {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    left: 85%;
    top: 15%;
    animation-delay: 1s;
    width: 12px;
    height: 12px;
}

.feature-particle:nth-child(3) {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    left: 70%;
    top: 70%;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

.feature-particle:nth-child(4) {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    left: 15%;
    top: 75%;
    animation-delay: 3s;
    width: 10px;
    height: 10px;
}

.feature-particle:nth-child(5) {
    background: linear-gradient(135deg, #F5A623, #FF6B6B);
    left: 50%;
    top: 10%;
    animation-delay: 4s;
    width: 8px;
    height: 8px;
}

.feature-particle:nth-child(6) {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    left: 30%;
    top: 85%;
    animation-delay: 5s;
    width: 14px;
    height: 14px;
}

@keyframes float-particle-section {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(20px, -30px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translate(-10px, -50px) rotate(180deg) scale(0.8);
        opacity: 0.8;
    }
    75% { 
        transform: translate(15px, -20px) rotate(270deg) scale(1.1);
        opacity: 1;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient 3s linear infinite;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

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

@keyframes tag-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.section-tag.pulse {
    animation: tag-pulse 2s ease-in-out infinite;
}

@keyframes tag-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #F5A623);
    background-size: 200% auto;
    animation: gradient-border 4s linear infinite;
}

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

.feature-card:nth-child(1) { --card-color: linear-gradient(135deg, #667eea, #764ba2); }
.feature-card:nth-child(2) { --card-color: linear-gradient(135deg, #f093fb, #f5576c); }
.feature-card:nth-child(3) { --card-color: linear-gradient(135deg, #4facfe, #00f2fe); }
.feature-card:nth-child(4) { --card-color: linear-gradient(135deg, #F5A623, #FF6B6B); }
.feature-card:nth-child(5) { --card-color: linear-gradient(135deg, #a8edea, #fed6e3); }
.feature-card:nth-child(6) { --card-color: linear-gradient(135deg, #43e97b, #38f9d7); }

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-card:nth-child(odd):hover {
    transform: translateY(-15px) scale(1.02) rotate(-1deg);
}

.feature-card:nth-child(even):hover {
    transform: translateY(-15px) scale(1.02) rotate(1deg);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--card-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: icon-float 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--card-color);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    filter: blur(15px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.6;
}

.feature-icon i {
    animation: icon-spin 8s linear infinite;
}

@keyframes icon-spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.feature-card:hover .feature-icon i {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1.1) rotate(10deg); }
    75% { transform: scale(1.15) rotate(-5deg); }
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    background: var(--card-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: #555;
}

.feature-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover .feature-shine {
    animation: card-shine 0.8s ease;
}

@keyframes card-shine {
    from { opacity: 0; transform: rotate(45deg) translateX(-100%); }
    to { opacity: 1; transform: rotate(45deg) translateX(100%); }
}

.feature-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.feature-card:nth-child(1) .feature-decoration {
    background: #667eea;
    top: -20px;
    right: -20px;
}

.feature-card:nth-child(2) .feature-decoration {
    background: #f5576c;
    bottom: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
}

.feature-card:nth-child(3) .feature-decoration {
    background: #4facfe;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 30px;
}

.feature-card:nth-child(4) .feature-decoration {
    background: #F5A623;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    opacity: 1;
    transform: scale(1.2);
    background: var(--card-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */

.videos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.videos-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.video-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle-video 15s ease-in-out infinite;
}

.video-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    left: 5%;
    top: 10%;
    animation-delay: 0s;
}

.video-particle:nth-child(2) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(255, 107, 107, 0.2));
    left: 90%;
    top: 20%;
    animation-delay: 3s;
}

.video-particle:nth-child(3) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(0, 242, 254, 0.15));
    left: 15%;
    top: 70%;
    animation-delay: 6s;
}

.video-particle:nth-child(4) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    left: 80%;
    top: 60%;
    animation-delay: 9s;
}

@keyframes float-particle-video {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    50% { 
        transform: translate(30px, -40px) rotate(180deg);
        opacity: 0.8;
    }
}

.videos-section .section-header h2 {
    color: var(--white);
}

.videos-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.video-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.video-tab-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.video-tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-tab-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.video-content {
    display: none;
}

.video-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Video Grid View */
.video-grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail-wrapper img {
    transform: scale(1.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 60px;
    color: white;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn i {
    font-size: 28px;
    color: #667eea;
    margin-left: 5px;
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--white);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-info-wrapper {
    padding: 20px;
}

.video-info-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.video-info-wrapper p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* Video Player View */
.video-main-player {
    margin-bottom: 40px;
}

.video-wrapper-large {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper-large iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-placeholder-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
}

.play-button-large {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.play-button-large i {
    font-size: 40px;
    color: #667eea;
    margin-left: 8px;
}

.video-placeholder-large:hover .play-button-large {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.video-main-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: -5px;
}

.video-main-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-main-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Video Playlist */
.video-playlist {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
}

.video-playlist h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.playlist-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.playlist-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.playlist-item.active {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.playlist-thumb {
    position: relative;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
}

.playlist-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-thumb i:first-child {
    opacity: 0.7;
}

.playlist-item:hover .playlist-play,
.playlist-item.active .playlist-play {
    opacity: 1;
}

.playlist-play i {
    color: #667eea;
    font-size: 12px;
    margin-left: 2px;
}

.playlist-info {
    display: flex;
    align-items: center;
}

.playlist-info h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--radius) var(--radius);
}

.video-modal-info h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    background: var(--gradient);
}

.stat-item i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary);
    transition: var(--transition);
}

.stat-item:hover i {
    color: var(--white);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    color: var(--white);
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PROGRAMS SECTION - COLORFUL ANIMATED
   ============================================ */

.programs {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.programs-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.program-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle-programs 10s ease-in-out infinite;
}

.program-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    left: 5%;
    top: 10%;
    animation-delay: 0s;
}

.program-particle:nth-child(2) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.3), rgba(255, 107, 107, 0.3));
    left: 85%;
    top: 20%;
    animation-delay: 2s;
}

.program-particle:nth-child(3) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    left: 15%;
    top: 70%;
    animation-delay: 4s;
}

.program-particle:nth-child(4) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(254, 214, 227, 0.15));
    left: 75%;
    top: 65%;
    animation-delay: 1s;
}

.program-particle:nth-child(5) {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.4), rgba(245, 87, 108, 0.4));
    left: 50%;
    top: 5%;
    animation-delay: 3s;
}

.program-particle:nth-child(6) {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.2), rgba(56, 249, 215, 0.2));
    left: 90%;
    top: 50%;
    animation-delay: 5s;
}

@keyframes float-particle-programs {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translate(-20px, -70px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% { 
        transform: translate(25px, -30px) rotate(270deg) scale(1.05);
        opacity: 1;
    }
}

.programs .section-header {
    position: relative;
    z-index: 2;
}

.programs .section-header .section-tag {
    background: linear-gradient(135deg, #F5A623, #FF6B6B);
    animation: program-tag-pulse 2s ease-in-out infinite;
}

@keyframes program-tag-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 30px rgba(255, 107, 107, 0.6);
    }
}

.programs .section-header h2 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.programs .section-header h2 .highlight {
    background: linear-gradient(90deg, #f093fb, #f5576c, #FF6B6B, #F5A623);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient 3s linear infinite;
}

.programs .section-header p {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.programs-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 300% auto;
    animation: rainbow-slide 4s linear infinite;
}

@keyframes rainbow-slide {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.program-card:nth-child(1) .program-icon-bg { background: linear-gradient(135deg, #667eea, #764ba2); }
.program-card:nth-child(2) .program-icon-bg { background: linear-gradient(135deg, #f093fb, #f5576c); }
.program-card:nth-child(3) .program-icon-bg { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.program-card:nth-child(4) .program-icon-bg { background: linear-gradient(135deg, #F5A623, #FF6B6B); }
.program-card:nth-child(5) .program-icon-bg { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.program-card:nth-child(6) .program-icon-bg { background: linear-gradient(135deg, #a8edea, #fed6e3); }

.program-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.program-card:nth-child(odd):hover {
    transform: translateY(-15px) scale(1.03) rotate(-2deg);
}

.program-card:nth-child(even):hover {
    transform: translateY(-15px) scale(1.03) rotate(2deg);
}

.program-icon {
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.program-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: icon-pulse-program 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.program-card:nth-child(1) .program-icon-bg { animation-delay: 0s; }
.program-card:nth-child(2) .program-icon-bg { animation-delay: 0.5s; }
.program-card:nth-child(3) .program-icon-bg { animation-delay: 1s; }
.program-card:nth-child(4) .program-icon-bg { animation-delay: 1.5s; }
.program-card:nth-child(5) .program-icon-bg { animation-delay: 2s; }
.program-card:nth-child(6) .program-icon-bg { animation-delay: 2.5s; }

@keyframes icon-pulse-program {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.program-icon i {
    font-size: 36px;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon i {
    transform: scale(1.2) rotate(15deg);
}

.program-card:hover .program-icon-bg {
    animation: icon-bounce-program 0.6s ease;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

@keyframes icon-bounce-program {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1.1) rotate(10deg); }
    75% { transform: scale(1.15) rotate(-5deg); }
}

.program-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.program-card:nth-child(1) .program-number { background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.program-card:nth-child(2) .program-number { background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.program-card:nth-child(3) .program-number { background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.program-card:nth-child(4) .program-number { background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(255, 107, 107, 0.2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.program-card:hover .program-number {
    opacity: 1;
    transform: scale(1.2);
    animation: number-bounce 0.5s ease;
}

@keyframes number-bounce {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.program-card:hover h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card:nth-child(2):hover h3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card:nth-child(3):hover h3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card:nth-child(4):hover h3 {
    background: linear-gradient(135deg, #F5A623, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card p {
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.program-card:hover p {
    color: #555;
}

.program-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.5s;
}

.program-card:hover .program-shine {
    animation: shine-slide 0.8s ease;
}

@keyframes shine-slide {
    from { left: -100%; }
    to { left: 100%; }
}

.program-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    filter: blur(20px);
}

.program-card:nth-child(1) .program-decoration {
    background: #667eea;
    bottom: -30px;
    left: -30px;
}

.program-card:nth-child(2) .program-decoration {
    background: #f5576c;
    top: -30px;
    right: -30px;
}

.program-card:nth-child(3) .program-decoration {
    background: #4facfe;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    padding: 100px 0;
    background: var(--light);
}

.team-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.team-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ============================================
   CORE FOCUS SECTION - OUR VISION
   ============================================ */

.core-focus {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c1e 0%, #1a1a3e 50%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.core-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(240, 147, 251, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(79, 172, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.core-focus-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.vision-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle-vision 12s ease-in-out infinite;
}

.vision-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
    left: 8%;
    top: 15%;
    animation-delay: 0s;
}

.vision-particle:nth-child(2) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(0, 242, 254, 0.15));
    left: 85%;
    top: 25%;
    animation-delay: 2s;
}

.vision-particle:nth-child(3) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), rgba(255, 107, 107, 0.25));
    left: 20%;
    top: 70%;
    animation-delay: 4s;
}

.vision-particle:nth-child(4) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(103, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    left: 70%;
    top: 60%;
    animation-delay: 1s;
}

.vision-particle:nth-child(5) {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.3), rgba(254, 214, 227, 0.3));
    left: 50%;
    top: 10%;
    animation-delay: 3s;
}

.vision-particle:nth-child(6) {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.2), rgba(56, 249, 215, 0.2));
    left: 90%;
    top: 75%;
    animation-delay: 5s;
}

@keyframes float-particle-vision {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    25% { 
        transform: translate(40px, -50px) rotate(120deg) scale(1.15);
        opacity: 0.9;
    }
    50% { 
        transform: translate(-30px, -80px) rotate(200deg) scale(0.85);
        opacity: 0.6;
    }
    75% { 
        transform: translate(35px, -40px) rotate(280deg) scale(1.1);
        opacity: 0.8;
    }
}

.core-focus .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
}

.core-focus .section-header .section-tag {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    animation: vision-tag-pulse 2s ease-in-out infinite;
    margin-bottom: 25px;
}

@keyframes vision-tag-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(240, 147, 251, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 30px rgba(245, 87, 108, 0.6);
    }
}

.core-focus .section-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient 4s linear infinite;
}

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

.core-focus .section-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.core-focus .section-header p::before,
.core-focus .section-header p::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(240, 147, 251, 0.5);
}

.core-focus .section-header p::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
}

.core-focus .section-header p::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
}

.vision-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    position: relative;
    animation: vision-icon-float 3s ease-in-out infinite;
}

.vision-icon:nth-child(1) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation-delay: 0s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.vision-icon:nth-child(2) {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    animation-delay: 0.5s;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.vision-icon:nth-child(3) {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    animation-delay: 1s;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.vision-icon:nth-child(4) {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    animation-delay: 1.5s;
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

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

.vision-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: vision-icon-rotate 10s linear infinite;
}

@keyframes vision-icon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vision-icon:hover {
    transform: scale(1.15) translateY(-10px);
}

.vision-icon:hover::after {
    animation-duration: 2s;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */

.gallery-preview {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 107, 107, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.2) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-white:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo img {
    height: 50px;
    border-radius: 10px;
}

.footer-logo i {
    font-size: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

.footer-links ul li a:hover {
    color: #667eea;
}

.footer-contact ul li i {
    width: 25px;
    color: #667eea;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */

.page-header {
    padding: 250px 0 200px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 500px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.3) 0%, transparent 60%);
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-header-wave svg {
    width: 100%;
    height: 100px;
    display: block;
}

/* ============================================
   EVENTS PAGE
   ============================================ */

.events-section {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff5f5 50%, #f0f7ff 100%);
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 85% 15%, rgba(245, 166, 35, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 25% 85%, rgba(79, 172, 254, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.events-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.events-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-events-particle 12s ease-in-out infinite;
}

.events-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    left: 8%;
    top: 15%;
    animation-delay: 0s;
}

.events-particle:nth-child(2) {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), rgba(255, 107, 107, 0.25));
    left: 88%;
    top: 20%;
    animation-delay: 2s;
}

.events-particle:nth-child(3) {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.18), rgba(0, 242, 254, 0.18));
    left: 12%;
    top: 70%;
    animation-delay: 4s;
}

.events-particle:nth-child(4) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(254, 214, 227, 0.15));
    left: 78%;
    top: 65%;
    animation-delay: 1s;
}

.events-particle:nth-child(5) {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3));
    left: 45%;
    top: 8%;
    animation-delay: 3s;
}

.events-particle:nth-child(6) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.18), rgba(56, 249, 215, 0.18));
    left: 92%;
    top: 55%;
    animation-delay: 5s;
}

@keyframes float-events-particle {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translate(25px, -35px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translate(-15px, -60px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translate(20px, -25px) rotate(270deg) scale(1.05);
        opacity: 1;
    }
}

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

.events-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.event-tab {
    position: relative;
    padding: 14px 35px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-tab::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.event-tab:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.event-tab:hover::before {
    opacity: 1;
}

.event-tab.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.event-content {
    display: none;
    animation: eventsFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-content.active {
    display: block;
}

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

.event-category-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.event-category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
}

.event-category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

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

.event-category-header h2 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.event-category-header h2 i {
    margin-right: 12px;
    animation: icon-bounce 2s ease-in-out infinite;
}

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

.category-info {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 30px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-info span:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.category-info i {
    color: var(--primary);
    font-size: 16px;
}

.event-group {
    margin-bottom: 50px;
}

.event-group h3 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-group h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
}

.event-group h3 i {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
}

.event-group.stage h3 i {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-group.offstage h3::before {
    background: linear-gradient(135deg, #F5A623, #FF6B6B);
}

.event-group.offstage h3 i {
    background: linear-gradient(135deg, #F5A623, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.events-grid.offstage {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.event-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    border: 2px solid rgba(102, 126, 234, 0.15);
    padding: 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card.offstage {
    border-color: rgba(245, 166, 35, 0.15);
}

.event-card.offstage::before {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.event-card.offstage:hover {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.2);
}

.event-number {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.event-card.offstage .event-number {
    background: linear-gradient(135deg, #F5A623, #FF6B6B);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.event-icon {
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.2) rotate(10deg);
}

.event-card.offstage .event-icon {
    color: var(--secondary);
}

.event-card h4 {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

/* ============================================
   FULL GALLERY PAGE
   ============================================ */

.full-gallery {
    padding: 60px 0 100px;
}

.empty-gallery {
    text-align: center;
    padding: 80px 20px;
}

.empty-gallery i {
    font-size: 80px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.empty-gallery h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-gallery p {
    color: var(--gray);
    margin-bottom: 25px;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--white);
}

.masonry-info p {
    font-size: 14px;
    font-weight: 500;
}

.masonry-info i {
    font-size: 24px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 16px;
    text-align: center;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info-header p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 107, 107, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   GALLERY GROUPS
   ============================================ */

.gallery-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-group-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-group-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.group-card-thumbs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.group-thumb {
    overflow: hidden;
}

.group-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-group-card:hover .group-thumb img {
    transform: scale(1.1);
}

.group-thumb-more {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-thumb-more span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.group-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-group-card:hover .group-card-overlay {
    opacity: 1;
}

.group-card-play {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.gallery-group-card:hover .group-card-play {
    transform: scale(1);
}

.group-card-play i {
    font-size: 24px;
    color: #667eea;
    margin-left: 3px;
}

.group-card-info {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.group-card-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.group-card-info h3 i {
    color: #667eea;
}

.group-card-count {
    background: rgba(102, 126, 234, 0.3);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* ============================================
   GALLERY GRID VIEW
   ============================================ */

.gallery-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-grid-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-grid-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-grid-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid-item:hover .gallery-grid-img img {
    transform: scale(1.1);
}

.gallery-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
}

.gallery-grid-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.gallery-grid-icon i {
    font-size: 28px;
    color: #667eea;
}

.gallery-grid-item:hover .gallery-grid-icon {
    transform: scale(1);
}

.gallery-grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
}

.gallery-grid-caption span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* ============================================
   GALLERY NOTEBOOK SLIDESHOW VIEWER
   ============================================ */

.gallery-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.gallery-viewer.active {
    display: flex;
}

.viewer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.viewer-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.viewer-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.viewer-close:hover {
    background: #f5576c;
    transform: rotate(90deg);
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.viewer-nav:hover {
    background: #667eea;
    border-color: #667eea;
    transform: translateY(-50%) scale(1.1);
}

.viewer-prev { left: 20px; }
.viewer-next { right: 20px; }

.viewer-main {
    width: 100%;
    max-width: 900px;
    margin-bottom: 20px;
}

.viewer-notebook {
    background: #1a1a2e;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.notebook-header {
    background: linear-gradient(135deg, #2d2d44, #1a1a2e);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notebook-dots {
    display: flex;
    gap: 8px;
}

.notebook-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.notebook-dots span:nth-child(1) { background: #f5576c; }
.notebook-dots span:nth-child(2) { background: #f5a623; }
.notebook-dots span:nth-child(3) { background: #43e97b; }

.notebook-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.notebook-screen {
    background: #000;
    padding: 10px;
}

.viewer-image-wrapper {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

.viewer-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.viewer-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    display: none;
}

.notebook-base {
    height: 15px;
    background: linear-gradient(to bottom, #2d2d44, #1a1a2e);
    border-radius: 0 0 10px 10px;
}

.viewer-info {
    text-align: center;
    margin-bottom: 15px;
}

.viewer-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.viewer-counter span {
    color: white;
    font-weight: 600;
}

.viewer-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.viewer-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.viewer-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.viewer-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.viewer-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.viewer-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.viewer-thumb:hover {
    opacity: 0.8;
}

.viewer-thumb.active {
    opacity: 1;
    border-color: #667eea;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.viewer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 60px 0;
    background: var(--light);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    border: 4px solid var(--white);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
    z-index: 10;
}

.map-wrapper iframe {
    display: block;
}

.map-placeholder {
    background: var(--gradient);
    padding: 80px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-3 { margin-top: 30px; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px 12px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
        flex-direction: column;
        padding: 25px 20px;
        gap: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-radius: 12px;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .btn-nav {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2,
    .team-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid,
    .events-grid.offstage {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .slider-nav {
        bottom: 60px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .stats-bar {
        padding: 20px;
        gap: 20px;
    }
    
    .stat-bar-item i {
        font-size: 28px;
    }
    
    .stat-bar-item .stat-count {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .slide-buttons .btn-register-hero,
    .slide-buttons .btn-view-events {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: whatsapp-ring 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }
}

@keyframes whatsapp-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 50px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--white);
    margin-left: 2px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
