/* GGAC Template Theme Styles */
/* Namespaced from web/css/style.css - conflicts with Bootstrap resolved */

/* ================================
   CSS Variables & Theme
================================ */
:root {
    --primary-50: #fff7ed;
    --primary-100: #ffedd5;
    --primary-200: #fed7aa;
    --primary-300: #fdba74;
    --primary-400: #fb923c;
    --primary-500: #f97316;
    --primary-600: #ea580c;
    --primary-700: #c2410c;
    --primary-800: #9a3412;
    --primary-900: #7c2d12;

    --accent-500: #ef4444;
    --accent-600: #dc2626;

    --saffron: #FF9933;
    --saffron-dark: #E88A2D;
    --maroon: #800000;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Base: removed global reset and body rules to avoid Bootstrap conflicts */

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.font-display {
    font-family: 'Poppins', sans-serif;
}

/* ================================
   Hero Slider Styles
================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider-images {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 750px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg-blur {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(12px);
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-shadow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    aspect-ratio: 2 / 1;
    max-width: 100%;
    z-index: 2;
    pointer-events: none;
    box-shadow: 30px 0 50px -5px rgba(0, 0, 0, 0.5),
                -30px 0 50px -5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .hero-slide-shadow {
        display: none;
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* --- Info Bar (below slider image) --- */
.hero-info-bar {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-info-panel {
    display: none;
}

.hero-info-panel.active {
    display: block;
}

.hero-info-inner {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    gap: 2rem;
    position: relative;
}

.hero-info-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600), var(--primary-400));
}

.hero-info-text {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-300);
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-info-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.hero-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    white-space: nowrap;
}

.hero-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
    color: #fff;
    text-decoration: none;
}

.hero-info-btn:active {
    transform: translateY(0);
}

.hero-info-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-info-btn:hover i {
    transform: translateX(3px);
}

.hero-slider-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-500);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider-arrow.prev {
    left: 2rem;
}

.hero-slider-arrow.next {
    right: 2rem;
}

/* ================================
   Animation Classes
================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in {
    opacity: 0;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

/* ================================
   Counter Animation
================================ */
.counter-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
}

.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
   Card Styles
================================ */
.event-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.event-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-card-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-card-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
    line-height: 1;
}

.event-card-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-600);
}

.event-card-content {
    padding: 1.5rem;
}

/* ================================
   Activity Card
================================ */
.activity-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.activity-card:hover {
    border-color: var(--primary-500);
    transform: translateY(-4px);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-600);
}

/* ================================
   Gallery Grid
================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* ================================
   Lightbox
================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}

/* ================================
   Sponsor Section
================================ */
.sponsor-logo {
    transition: all 0.3s ease;
}

/* Sponsor Marquee */
.sponsor-marquee-wrap {
    overflow-x: clip;
    overflow-y: visible;
    width: 100%;
    position: relative;
}
.sponsor-marquee-wrap::before,
.sponsor-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.sponsor-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb 10%, transparent);
}
.sponsor-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb 10%, transparent);
}
.sponsor-marquee {
    overflow: visible;
    position: relative;
    width: 100%;
    padding: 3rem 0;
}
.sponsor-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    will-change: transform;
}
.sponsor-track-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.1s linear, box-shadow 0.2s ease;
    will-change: transform, opacity;
    position: relative;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}
.sponsor-track-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}
.sponsor-track-item img {
    height: 160px;
    width: auto;
    object-fit: contain;
}
.sponsor-track-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.625rem;
    width: 100%;
}

/* ================================
   Form Styles (namespaced with t- prefix)
================================ */
.t-form-group {
    margin-bottom: 1.5rem;
}

.t-form-label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.t-form-input,
.t-form-textarea,
.t-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.t-form-input:focus,
.t-form-textarea:focus,
.t-form-select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.t-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ================================
   Button Styles (namespaced with t- prefix)
================================ */
.t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.t-btn-primary {
    background: var(--primary-600);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.t-btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
    color: #fff;
    text-decoration: none;
}

.t-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.t-btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-500);
    color: var(--primary-600);
}

.t-btn-outline:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
    text-decoration: none;
}

.t-btn-outline:active {
    transform: translateY(0);
}

.t-btn-white {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.t-btn-white:hover {
    background: #fff;
    color: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.t-btn-white:active {
    transform: translateY(0);
}

.t-btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
}

.t-btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    border-radius: 0.5rem;
}

/* ================================
   Parallax Section
================================ */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.97) 0%, rgba(249, 115, 22, 0.95) 100%);
}

/* ================================
   Team Cards
================================ */
.team-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--primary-500);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   Account Dashboard
================================ */
.dashboard-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dashboard-stat {
    text-align: center;
}

.dashboard-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-600);
}

.dashboard-stat-label {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ================================
   Membership Cards
================================ */
.membership-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.membership-card.featured {
    border-color: var(--primary-500);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.membership-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-600);
}

.membership-price span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: normal;
}

/* ================================
   Sidebar Navigation
================================ */
.sidebar-nav {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
    background: var(--primary-50);
    color: var(--primary-600);
    border-left-color: var(--primary-500);
    text-decoration: none;
}

/* ================================
   Page Header
================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, var(--primary-400) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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");
}

.page-header-bg::before {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* ================================
   Breadcrumb (namespaced with t- prefix)
================================ */
.t-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.t-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.t-breadcrumb a:hover {
    color: white;
}

/* ================================
   Mobile Navigation
================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-nav {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50, #f9fafb);
}

.mobile-menu-footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.925rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-footer-btn--outline {
    color: var(--gray-700);
    background: white;
    border: 1.5px solid var(--gray-300, #d1d5db);
}

.mobile-menu-footer-btn--outline:hover {
    background: var(--gray-100, #f3f4f6);
    text-decoration: none;
    color: var(--gray-700);
}

.mobile-menu-footer-btn--primary {
    color: #fff;
    background: var(--primary-600);
    border: 1.5px solid var(--primary-600);
}

.mobile-menu-footer-btn--primary:hover {
    background: var(--primary-700);
    text-decoration: none;
    color: #fff;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.mobile-menu-nav .mobile-dropdown-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-nav .mobile-dropdown-label:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.mobile-menu-nav .mobile-dropdown-items {
    display: none;
    padding-left: 1rem;
}

.mobile-menu-nav .mobile-dropdown-items.open {
    display: block;
}

.mobile-menu-nav .mobile-dropdown-items a {
    padding: 0.75rem 1rem;
    font-size: 0.925rem;
}

/* ================================
   Vue Cloak (prevent FOUC)
================================ */
[v-cloak] {
    display: none !important;
}
body:has([v-cloak]) .page-transition {
    opacity: 1;
    pointer-events: auto;
}
body:has([v-cloak]) .page-transition .page-transition-content {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Mega Menu
================================ */
.mega-menu-event-card img {
    transition: transform 0.3s ease;
}

.mega-menu-event-card:hover img {
    transform: scale(1.05);
}

.mega-menu-past-list::-webkit-scrollbar {
    width: 4px;
}

.mega-menu-past-list::-webkit-scrollbar-track {
    background: transparent;
}

.mega-menu-past-list::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

.mega-menu-past-list::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.mega-menu-past-list {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

/* ================================
   Loading Spinner
================================ */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   Page Transition
================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: auto;
}

.page-transition-content {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.15s;
}

.page-transition.active .page-transition-content {
    opacity: 1;
    transform: translateY(0);
}

.page-transition-logo {
    height: 60px;
    margin: 0 auto 1.25rem;
    display: block;
    animation: pulse-soft 1.5s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.page-transition-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.03em;
}

/* ================================
   Scroll Progress
================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    z-index: 9999;
}

/* ================================
   Back to Top
================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-600);
    transform: translateY(-4px);
}

/* ================================
   Responsive Styles
================================ */
@media (max-width: 768px) {
    .hero-slider-images {
        height: auto;
        min-height: auto;
    }

    .hero-slide {
        position: relative;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slide-bg-blur,
    .hero-slide-overlay {
        display: none;
    }

    .hero-slide-bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        background-size: cover;
    }

    .hero-info-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .hero-info-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-info-title {
        font-size: 1.15rem;
    }

    .hero-info-actions {
        width: 100%;
        justify-content: space-between;
    }

    .hero-info-btn {
        padding: 0.55rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-slider-arrow {
        display: none;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .membership-card.featured {
        transform: none;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

/* ================================
   Utility Classes (removed .container to avoid Bootstrap conflict)
================================ */
.section-padding {
    padding: 5rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ================================
   Auth Pages - Split Screen
================================ */
.auth-split {
    min-height: 100vh;
    display: flex;
}

.auth-brand-panel {
    display: none;
    width: 50%;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, var(--primary-400) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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");
}

@media (min-width: 1024px) {
    .auth-brand-panel {
        display: flex;
    }
}

.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--gray-50);
}

.auth-form-container {
    width: 100%;
    max-width: 480px;
}

/* ================================
   Account Layout
================================ */
.account-layout {
    display: flex;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.account-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.account-main {
    flex: 1;
    min-width: 0;
}

@media (max-width: 1023px) {
    .account-layout {
        flex-direction: column;
    }
    .account-sidebar {
        width: 100%;
    }
}

/* ================================
   Modal (Tailwind-style)
================================ */
.t-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.t-modal-overlay.show {
    display: flex;
}

.t-modal {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.t-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.t-modal-body {
    padding: 1.5rem;
}

.t-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
