:root {
    --primary-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    --dark-gradient: linear-gradient(135deg, #232526 0%, #414345 100%);
    --primary-color: #1e3c72;
    --secondary-color: #2a5298;
    --accent-color: #ff6b6b;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --bg-light: #f8f9fc;
    --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(30, 60, 114, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(30, 60, 114, 0.4);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand i {
    transition: transform 0.3s ease;
}

.navbar-brand:hover i {
    transform: rotate(-10deg);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 0 3px;
    position: relative;
    overflow: hidden;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.2);
}

.navbar-pro {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar-pro.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: rotate(-5deg);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-accent {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item-link span {
    position: relative;
    z-index: 1;
}

.nav-item-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item-link:hover {
    color: white;
}

.nav-item-link:hover::before {
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    color: white;
}

.nav-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 8px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .navbar-pro .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 0 0 16px 16px;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }
    
    .nav-item-link {
        width: 100%;
        padding: 14px 20px;
    }
    
    .nav-actions {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-wrap: wrap;
    }
}

.events-showcase-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

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

@media (max-width: 640px) {
    .events-showcase-v2 {
        grid-template-columns: 1fr;
    }
}

.event-card-v2 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.ev2-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.ev2-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.ev2-badge.new {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
}

.ev2-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ev2-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ev2-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1;
}

.ev2-month {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ev2-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ev2-time i {
    font-size: 0.85rem;
}

.ev2-body {
    padding: 24px;
    flex: 1;
}

.ev2-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ev2-location {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.ev2-location i {
    color: #a855f7;
    font-size: 0.85rem;
}

.ev2-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ev2-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ev2-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1));
    color: #7c3aed;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ev2-footer {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ev2-spots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ev2-spots-count {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.ev2-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ev2-btn:hover {
    background: linear-gradient(135deg, #2d4a6f, #3d5a7f);
    color: white;
    transform: translateX(4px);
}

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

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

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

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

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

.events-grid-v2.list-view {
    grid-template-columns: 1fr;
}

.events-grid-v2.list-view .event-card-v2 {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0;
}

.events-grid-v2.list-view .ev2-header {
    border-radius: 16px 0 0 16px;
    flex-direction: column;
    padding: 24px;
}

.events-grid-v2.list-view .ev2-body {
    border-left: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
}

.events-grid-v2.list-view .ev2-footer {
    border-top: none;
    border-left: 1px solid #f1f5f9;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.ev2-badge.limited {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.ev2-badge.full {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.ev2-spots-bar {
    width: 80px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.ev2-spots-fill {
    height: 100%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ev2-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.ev2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ev2-btn-outline:hover {
    border-color: #a855f7;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.05);
}

.ev2-btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: not-allowed;
}

button.ev2-btn {
    border: none;
    cursor: pointer;
}

.ev2-tag.more {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    color: #6366f1;
}

.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    position: relative;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-section .btn-light {
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
}

.hero-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #fff;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.event-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--card-shadow-hover);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card .event-image-placeholder {
    position: relative;
    overflow: hidden;
}

.event-card:hover .event-image-placeholder i {
    animation: pulse-icon 0.6s ease;
}

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

.event-card .btn {
    position: relative;
    overflow: hidden;
}

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

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

.event-card .card-body {
    padding: 1.75rem;
}

.event-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.event-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 1.75rem;
}

.event-date {
    background: var(--primary-gradient);
    color: white;
    padding: 20px 15px;
    text-align: center;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #152a52 0%, #1e3c72 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #00a383 0%, #00b5b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.stat-card {
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.stat-card .card-body {
    padding: 2rem;
}

.stat-card .stat-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.filter-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e8ecf5 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(30, 60, 114, 0.1);
}

.activity-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 4px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.activity-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.feature-card h4 {
    font-weight: 700;
    color: var(--text-dark);
}

.table {
    border-radius: 12px;
    overflow: hidden;
}

.table th {
    font-weight: 600;
    background: linear-gradient(135deg, #f8f9fc 0%, #e8ecf5 100%);
    border: none;
    padding: 15px;
    color: var(--text-dark);
}

.table td {
    padding: 15px;
    vertical-align: middle;
    border-color: rgba(0,0,0,0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(30, 60, 114, 0.03);
}

.form-control, .form-select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid #e8ecf5;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card {
    border-radius: 20px;
    border: none;
    box-shadow: var(--card-shadow);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.alert {
    border-radius: 15px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(0, 206, 201, 0.1) 100%);
    color: #00b894;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 82, 83, 0.1) 100%);
    color: #ee5253;
}

.badge {
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 500;
}

.badge.bg-success {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%) !important;
    color: #fff !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%) !important;
}

.badge.bg-primary {
    background: var(--primary-gradient) !important;
}

.footer-minimal {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 0;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
    color: white;
}

.footer-logo i {
    font-size: 1.4rem;
    color: #a855f7;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #a855f7;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}

.login-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
    overflow: hidden;
}

.login-card .card-body {
    padding: 3rem;
}

.login-header {
    background: var(--primary-gradient);
    color: #fff;
    padding: 2.5rem;
    text-align: center;
}

.login-header i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.registration-card {
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(30, 60, 114, 0.1);
}

.registration-card.registered {
    border-color: var(--success-color);
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.05) 0%, #fff 100%);
}

.page-header {
    background: var(--primary-gradient);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    font-weight: 800;
    font-size: 2.5rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: #fff;
}

.sidebar {
    min-height: calc(100vh - 70px);
    background: var(--dark-gradient);
}

.sidebar .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 14px 20px;
    border-radius: 12px;
    margin: 4px 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateX(5px);
}

.sidebar .nav-link i {
    width: 28px;
    font-size: 1.1rem;
}

.main-content {
    background: var(--bg-light);
    min-height: calc(100vh - 70px);
}

.venue-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(30, 60, 114, 0.08);
    transition: all 0.3s ease;
}

.venue-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
}

.event-image-placeholder {
    background: var(--primary-gradient);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
}

.nepal-badge, .community-badge {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    animation: badge-glow 2s ease-in-out infinite;
}

.event-badge.featured {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.event-badge.new {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}

.event-badge.popular {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.event-badge.limited {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

@keyframes badge-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

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

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

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

.location-tag {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 50px 0 60px;
    }
    
    .event-card {
        border-radius: 16px;
    }
    
    .stat-card .stat-value {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .login-card .card-body {
        padding: 2rem;
    }
}

.events-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-illustration {
    position: relative;
    height: 300px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
}

.fc-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.fc-2 { width: 80px; height: 80px; top: 50%; left: 60%; animation-delay: 1s; }
.fc-3 { width: 90px; height: 90px; top: 10%; right: 20%; animation-delay: 2s; }
.fc-4 { width: 70px; height: 70px; bottom: 20%; left: 30%; animation-delay: 3s; }

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

.filters-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.filter-label i {
    margin-right: 6px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #64748b;
}

.count-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 42px;
    height: 42px;
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover, .view-btn.active {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

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

.events-grid.list-view {
    grid-template-columns: 1fr;
}

.events-grid.list-view .event-card-pro {
    max-width: 100%;
}

.events-grid.list-view .event-card-inner {
    flex-direction: row;
}

.events-grid.list-view .event-visual {
    width: 200px;
    min-height: 200px;
    flex-shrink: 0;
}

.events-grid.list-view .event-content {
    flex: 1;
}

.event-card-pro {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.event-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-visual {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
}

.event-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.event-icon-wrap i {
    font-size: 2rem;
    color: #fff;
}

.event-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.event-tag.featured {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
}

.event-tag.new {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: #fff;
}

.event-tag.limited {
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    color: #fff;
}

.event-tag.full {
    background: #64748b;
    color: #fff;
}

.event-content {
    padding: 25px;
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: -30px;
    left: 25px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.edb-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.edb-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 15px 0 12px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.meta-item {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #3b82f6;
}

.event-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.event-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.activity-pill {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #3b82f6;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-pill.more {
    background: #f1f5f9;
    color: #64748b;
}

.event-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.spots-indicator {
    margin-bottom: 15px;
}

.spots-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.spots-indicator.low .spots-fill {
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}

.spots-text {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.btn-event {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-details {
    background: #f1f5f9;
    color: #475569;
}

.btn-details:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-register {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-full {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

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

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-icon i {
    font-size: 3rem;
    color: #94a3b8;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 25px;
}

.register-modal .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.register-modal .modal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 25px 30px;
    border: none;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.modal-title {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.modal-event-name {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

.register-modal .modal-body {
    padding: 30px;
}

.event-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
}

.summary-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.register-modal .form-floating > .form-control {
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    padding: 1rem 1rem;
    height: auto;
}

.register-modal .form-floating > .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.register-modal .form-floating > label {
    padding: 1rem;
}

.btn-register-submit {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-register-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.register-modal .modal-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 15px 30px;
    justify-content: center;
}

.footer-note {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-note i {
    color: #10b981;
}

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

.home-hero {
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3c 50%, #0a0f1c 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.15);
    top: -200px;
    left: -200px;
    animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.15);
    bottom: -100px;
    right: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

.hero-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-heading .highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: 3px solid #0a0f1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border: 3px solid #0a0f1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -10px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: #fff;
    font-size: 0.95rem;
}

.trust-text span {
    color: #64748b;
    font-size: 0.85rem;
}

.hero-visual {
    position: relative;
    height: 450px;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    z-index: 1;
}

.visual-card.main-card {
    width: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

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

.card-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.card-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-card-1 {
    top: 10%;
    right: 10%;
    display: flex;
    gap: 12px;
    align-items: center;
    animation: float 5s ease-in-out infinite 0.5s;
}

.floating-card-2 {
    bottom: 20%;
    left: 5%;
    display: flex;
    gap: 12px;
    align-items: center;
    animation: float 7s ease-in-out infinite 1s;
}

.floating-card-3 {
    bottom: 10%;
    right: 15%;
    display: flex;
    gap: 12px;
    align-items: center;
    animation: float 6s ease-in-out infinite 1.5s;
}

.fc-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.fc-icon.success {
    background: linear-gradient(135deg, #10b981, #06b6d4);
}

.fc-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.fc-text {
    display: flex;
    flex-direction: column;
}

.fc-number {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.fc-label {
    font-size: 0.75rem;
    color: #64748b;
}

.stats-section {
    background: #fff;
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 5px;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    color: #3b82f6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subheading {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 320px;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.5rem;
    padding-top: 60px;
}

.featured-events {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

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

.showcase-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.showcase-visual {
    height: 180px;
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3), transparent 60%);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.visual-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.showcase-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.showcase-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
}

.showcase-badge.new {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #fff;
}

.showcase-content {
    padding: 30px;
    position: relative;
}

.showcase-date {
    position: absolute;
    top: -35px;
    left: 30px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.sd-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.sd-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-details {
    padding-top: 20px;
}

.showcase-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.showcase-meta span {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.showcase-meta i {
    color: #3b82f6;
}

.showcase-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.showcase-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.stag {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    color: #3b82f6;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.showcase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    background: #0f172a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #1e293b;
    transform: translateY(-3px);
    color: #fff;
}

.features-section {
    padding: 100px 0;
    background: #fff;
}

.features-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

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

.feature-box {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.fb-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fb-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

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

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
}

.tc-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.tc-stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.tc-quote {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tc-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

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

.tc-name {
    font-weight: 700;
    color: #0f172a;
}

.tc-role {
    font-size: 0.85rem;
    color: #64748b;
}

.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 50%, rgba(59, 130, 246, 0.2), transparent 50%),
                radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.2), transparent 50%);
    pointer-events: none;
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.cta-text {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0;
    position: relative;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    color: #fff;
}

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

@media (max-width: 991px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .events-showcase {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 60px 0;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-card {
        padding: 20px;
    }
    
    .event-actions {
        flex-direction: column;
    }
}
