/* ============================================ */
/* GOOGLE FONTS */
/* ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================ */
/* ROOT VARIABLES - POWERFUL COLORS */
/* ============================================ */
:root {
    /* Primary Colors - Vibrant & Powerful */
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --primary-glow: rgba(108, 92, 231, 0.4);
    
    /* Secondary Colors */
    --secondary: #FD79A8;
    --secondary-dark: #E8638A;
    --secondary-light: #FFB8D0;
    --secondary-glow: rgba(253, 121, 168, 0.4);
    
    /* Accent Colors */
    --accent: #00CEC9;
    --accent-dark: #00B3AE;
    --accent-light: #81ECEC;
    --accent-glow: rgba(0, 206, 201, 0.4);
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-secondary: linear-gradient(135deg, #FD79A8 0%, #FDCB6E 100%);
    --gradient-accent: linear-gradient(135deg, #00CEC9 0%, #81ECEC 100%);
    --gradient-mix: linear-gradient(135deg, #6C5CE7 0%, #FD79A8 50%, #FDCB6E 100%);
    --gradient-dark: linear-gradient(135deg, #2D3436 0%, #1a1a2e 100%);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(20px);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(108, 92, 231, 0.15);
    --shadow-medium: 0 20px 60px rgba(108, 92, 231, 0.2);
    --shadow-hard: 0 30px 80px rgba(108, 92, 231, 0.3);
    --shadow-glow: 0 0 60px rgba(108, 92, 231, 0.15);
    
    /* Spacing */
    --section-padding: 100px 0;
}

/* ============================================ */
/* RESET & BASE */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #0a0a1a;
    color: #ffffff;
    overflow-x: hidden;
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: #0a0a1a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(108, 92, 231, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ============================================ */
/* GLASSMORPHISM */
/* ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.glass-nav {
    background: rgba(10, 10, 26, 0.6) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-nav.scrolled {
    background: rgba(10, 10, 26, 0.92) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================ */
/* NAVIGASI */
/* ============================================ */
.navbar {
    padding: 16px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.logo-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    border: 2px solid #0a0a1a;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.brand-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-badge {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 12px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: glowBadge 3s ease-in-out infinite;
}

@keyframes glowBadge {
    0%, 100% { box-shadow: 0 0 20px rgba(253, 121, 168, 0.3); }
    50% { box-shadow: 0 0 40px rgba(253, 121, 168, 0.6); }
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: white;
}

.navbar .nav-link i {
    margin-right: 8px;
}

.btn-nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-nav-cta::before {
    display: none !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px var(--primary-glow) !important;
}

/* ============================================ */
/* HERO SECTION - ULTRA MODERN */
/* ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 40s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.2); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.6);
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(253, 121, 168, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    top: 30%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-4 {
    bottom: 20%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: var(--gradient-mix);
    animation: floatShape 18s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hero Content */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00CEC9;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    color: white;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    display: inline-block;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Hero Search */
.hero-search {
    padding: 6px;
    border-radius: 16px;
    max-width: 500px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.search-input-group i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.search-input-group input {
    flex: 1;
    padding: 14px 0;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

.search-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-search {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 30px var(--primary-glow);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-trust span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 20px;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.15);
}

.trust-logos i {
    transition: all 0.3s ease;
    cursor: default;
}

.trust-logos i:hover {
    color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Hero Cards */
.hero-cards-wrapper {
    position: relative;
    padding: 20px;
}

.hero-main-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card-image {
    position: relative;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-card-image img {
    transform: scale(1.05);
}

.hero-card-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-card-content {
    padding: 20px 24px;
    color: white;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hero-card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.7;
}

.hero-card-price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

.hero-card-content h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.hero-card-content p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 12px;
}

.hero-card-content p i {
    margin-right: 6px;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.hero-card-quota {
    opacity: 0.6;
}

.hero-card-quota i {
    margin-right: 4px;
}

.hero-card-rating {
    color: #FDCB6E;
}

.hero-card-rating i {
    margin-right: 4px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: floatCard 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05) !important;
    background: rgba(255, 255, 255, 0.1);
}

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.fc-1 .fc-icon { background: rgba(108, 92, 231, 0.3); color: var(--primary-light); }
.fc-2 .fc-icon { background: rgba(0, 206, 201, 0.3); color: var(--accent-light); }
.fc-3 .fc-icon { background: rgba(253, 121, 168, 0.3); color: var(--secondary-light); }
.fc-4 .fc-icon { background: rgba(253, 203, 110, 0.3); color: #FDCB6E; }

.fc-content {
    display: flex;
    flex-direction: column;
}

.fc-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.fc-count {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.fc-1 { top: -10px; right: -10px; animation-delay: 0s; }
.fc-2 { top: 30%; left: -25px; animation-delay: 1.5s; }
.fc-3 { bottom: 20%; right: -20px; animation-delay: 3s; }
.fc-4 { bottom: -10px; left: 15%; animation-delay: 4.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0; }
}

/* ============================================ */
/* SECTION HEADER */
/* ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 12px auto 16px;
}

.section-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-header.text-white .section-tag {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.05);
}

/* ============================================ */
/* EVENTS SECTION */
/* ============================================ */
.events-section {
    padding: var(--section-padding);
    background: #0a0a1a;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hard);
}

.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 30px;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.category-content h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.category-content p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.category-price {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.category-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card:hover .category-arrow {
    background: white;
    color: var(--primary);
    transform: translateX(4px) scale(1.1);
}

.category-hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.category-card:hover .category-hover-effect {
    opacity: 1;
}

/* ============================================ */
/* POPULAR SECTION */
/* ============================================ */
.popular-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--gradient-dark);
    overflow: hidden;
}

.popular-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
}

.popular-swiper {
    padding: 20px 40px;
    position: relative;
}

.popular-swiper .swiper-button-next,
.popular-swiper .swiper-button-prev {
    color: var(--primary-light);
    background: rgba(255,255,255,0.05);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.popular-swiper .swiper-button-next:hover,
.popular-swiper .swiper-button-prev:hover {
    background: rgba(255,255,255,0.1);
}

.popular-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.2);
}

.popular-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
}

.sub-event-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sub-event-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sub-event-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.sub-event-card .card-body {
    padding: 20px;
    color: white;
}

.sub-event-card .card-body .badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.sub-event-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 8px 0 4px;
}

.sub-event-card .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.price-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 12px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.7rem;
}

/* ============================================ */
/* FEATURES SECTION */
/* ============================================ */
.features-section {
    padding: var(--section-padding);
    background: #0f0f1f;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.feature-card h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================ */
/* TESTIMONIAL SECTION */
/* ============================================ */
.testimonial-section {
    padding: var(--section-padding);
    background: #0a0a1a;
}

.testimonial-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(108, 92, 231, 0.1);
    box-shadow: var(--shadow-soft);
}

.testimonial-rating {
    color: #FDCB6E;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(108, 92, 231, 0.2);
}

.testimonial-user h6 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: white;
}

.testimonial-user small {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1920&h=300&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    animation: floatShape 20s ease-in-out infinite;
}

.cta-shape-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 121, 168, 0.1) 0%, transparent 70%);
    animation: floatShape 25s ease-in-out infinite reverse;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.cta-title span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 30px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 50px var(--primary-glow);
    color: white;
}

.btn-cta-arrow {
    transition: all 0.3s ease;
}

.btn-cta:hover .btn-cta-arrow {
    transform: translateX(4px);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.premium-footer {
    background: #080816;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.premium-footer .brand-logo {
    margin-bottom: 16px;
}

.footer-desc {
    max-width: 300px;
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.footer-title {
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.6;
}

.footer-contact i {
    width: 20px;
    color: var(--primary-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.03);
    margin: 30px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.3;
}

.footer-payment {
    display: flex;
    gap: 16px;
    font-size: 1.6rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.footer-payment i:hover {
    opacity: 0.6;
}

/* ============================================ */
/* MOBILE BOTTOM NAV */
/* ============================================ */
.mobile-bottom-nav {
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 8px 0;
    z-index: 1040;
}

.mobile-bottom-nav .nav-link {
    padding: 6px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-link i {
    font-size: 1.3rem;
}

.mobile-bottom-nav .nav-link.active {
    color: var(--primary-light);
    background: rgba(108, 92, 231, 0.1);
}

/* ============================================ */
/* DETAIL HERO SECTION */
/* ============================================ */
.detail-hero-section {
    position: relative;
    padding: 120px 0 60px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.detail-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.detail-hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.7);
    z-index: 1;
}

.detail-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a1a 0%, transparent 70%);
    z-index: 1;
}

.detail-hero-section .container {
    position: relative;
    z-index: 2;
}

.detail-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.detail-hero-title i {
    margin-right: 12px;
}

.detail-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.detail-hero-stats {
    display: flex;
    gap: 24px;
}

.detail-stat {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.detail-stat i {
    margin-right: 6px;
    color: var(--primary-light);
}

/* ============================================ */
/* BREADCRUMB */
/* ============================================ */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================ */
/* FILTER SECTION */
/* ============================================ */
.filter-section {
    padding: 30px 0 0;
    background: #0a0a1a;
}

.filter-wrapper {
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.filter-btn i {
    margin-right: 6px;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.filter-search i {
    color: rgba(255, 255, 255, 0.3);
}

.filter-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 6px 0;
    font-size: 0.9rem;
}

.filter-search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================ */
/* DETAIL EVENTS SECTION */
/* ============================================ */
.detail-events-section {
    padding: 40px 0 80px;
    background: #0a0a1a;
}

/* ============================================ */
/* MODAL EVENT DETAIL */
/* ============================================ */
.modal-content.glass-card {
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.modal-header {
    padding: 24px 28px 0;
}

.modal-header .modal-title {
    color: white;
    font-weight: 600;
}

.modal-body {
    padding: 24px 28px 28px;
}

.modal-event-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.modal-event-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.modal-event-status {
    position: absolute;
    top: 12px;
    right: 12px;
}

.modal-event-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: white;
    margin-bottom: 8px;
}

.modal-event-meta {
    margin-bottom: 16px;
}

.modal-event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.detail-item i {
    width: 18px;
}

.modal-event-description {
    margin-bottom: 16px;
}

.modal-event-description h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.modal-event-description p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.modal-event-prices h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.modal-event-prices .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.modal-event-prices .price-item .price-type {
    font-weight: 600;
    color: white;
}

.modal-event-prices .price-item .price-benefit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.modal-event-prices .price-item .price-amount {
    font-weight: 700;
    color: var(--primary-light);
}

/* ============================================ */
/* ORDER SUMMARY */
/* ============================================ */
.order-summary {
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.order-summary h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.order-summary p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================ */
/* QTY CONTROL */
/* ============================================ */
.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.qty-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.qty-input {
    width: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 8px;
}

.qty-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

/* ============================================ */
/* VA CARD */
/* ============================================ */
.va-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.va-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: white;
    letter-spacing: 2px;
    margin: 8px 0;
}

.va-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.va-deadline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-light);
}

.booking-number {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    margin: 16px 0;
}

.booking-number small {
    color: rgba(255, 255, 255, 0.4);
}

.booking-number h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin: 4px 0 0;
}

/* ============================================ */
/* CETAK TIKET - HERO */
/* ============================================ */
.print-hero-section {
    position: relative;
    padding: 120px 0 40px;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.print-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.print-hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

.print-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.7);
    z-index: 1;
}

.print-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a1a 0%, transparent 70%);
    z-index: 1;
}

.print-hero-section .container {
    position: relative;
    z-index: 2;
}

.print-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.print-hero-title i {
    margin-right: 12px;
    color: var(--primary-light);
}

.print-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================ */
/* CETAK TIKET - CONTENT */
/* ============================================ */
.print-content-section {
    padding: 40px 0 60px;
    background: #0a0a1a;
}

.print-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
}

.print-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.print-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 12px;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.print-card-header h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

.print-card-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.print-search-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.print-search-group .input-group-text {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    padding: 12px 16px;
}

.print-search-group .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 0;
    font-size: 1rem;
}

.print-search-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.print-search-group .form-control:focus {
    box-shadow: none;
}

.btn-print-search {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}

.btn-print-search:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--primary-glow);
    color: white;
}

.print-hint {
    margin-top: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.print-hint i {
    margin-right: 6px;
}

/* ============================================ */
/* HASIL TIKET */
/* ============================================ */
.print-result-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.print-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.print-result-status .badge {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 12px;
}

/* ============================================ */
/* TICKET CONTAINER - DETAIL LENGKAP */
/* ============================================ */
.ticket-container {
    background: linear-gradient(145deg, #1a1a3e 0%, #0a0a1a 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.ticket-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Ticket Header */
.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    flex-wrap: wrap;
    gap: 12px;
}

.ticket-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.ticket-brand i {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    padding: 8px;
    border-radius: 12px;
    color: white;
}

.ticket-brand small {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 12px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    color: white;
    letter-spacing: 1px;
}

.ticket-barcode {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 12px;
}

.ticket-barcode svg {
    display: block;
}

/* Ticket Event Section */
.ticket-event-section {
    margin-bottom: 20px;
}

.ticket-event-name h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.ticket-event-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ticket-event-category {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 500;
}

.ticket-event-status {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-event-status.valid {
    background: rgba(0, 206, 201, 0.2);
    color: #00CEC9;
}

.ticket-event-status.invalid {
    background: rgba(255, 0, 0, 0.2);
    color: #dc3545;
}

/* Ticket Info Grid */
.ticket-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.ticket-info-group {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ticket-info-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ticket-info-label i {
    margin-right: 4px;
}

.ticket-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Ticket Detail Section */
.ticket-detail-section {
    margin: 16px 0;
}

.ticket-detail-item {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ticket-detail-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.ticket-detail-label i {
    margin-right: 4px;
}

.ticket-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Ticket Pemesan Section */
.ticket-pemesan-section {
    margin: 16px 0;
}

.ticket-pemesan-section h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.ticket-pemesan-section h6 i {
    margin-right: 6px;
}

.ticket-pemesan-item {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.ticket-pemesan-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-pemesan-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

/* Ticket Payment Section */
.ticket-payment-section {
    margin: 16px 0;
}

.ticket-payment-item {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ticket-payment-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-payment-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.ticket-payment-value.text-success {
    color: #00CEC9 !important;
}

.ticket-payment-value.text-warning {
    color: #FDCB6E !important;
}

/* Ticket Divider */
.ticket-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    margin: 16px 0;
}

/* Ticket Barcode Large */
.ticket-barcode-large {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    margin: 16px 0;
}

.ticket-barcode-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.ticket-barcode-label i {
    margin-right: 6px;
}

.ticket-barcode-wrapper {
    display: flex;
    justify-content: center;
    padding: 12px;
    background: white;
    border-radius: 12px;
}

.ticket-barcode-wrapper svg {
    display: block;
    max-width: 100%;
}

.ticket-barcode-hint {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Ticket Footer */
.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.ticket-footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.ticket-footer-left i {
    color: var(--primary-light);
}

.ticket-footer-right {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

/* Print Actions Top */
.print-result-actions-top {
    display: flex;
    gap: 8px;
}

.btn-print-action-sm {
    padding: 6px 16px;
    border-radius: 10px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-print-action-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--primary-glow);
    color: white;
}

.btn-print-action-sm-secondary {
    padding: 6px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-print-action-sm-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* Print Actions */
.print-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-print-action {
    padding: 12px 28px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-print-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--primary-glow);
    color: white;
}

.btn-print-action-secondary {
    padding: 12px 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-print-action-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.btn-print-warning {
    padding: 12px 28px;
    border-radius: 14px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-print-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(253, 121, 168, 0.4);
    color: white;
}

/* ============================================ */
/* ERROR & WARNING CARDS */
/* ============================================ */
.print-error-card,
.print-warning-card {
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
}

.print-error-card {
    background: rgba(255, 0, 0, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.06);
}

.print-warning-card {
    background: rgba(255, 193, 7, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.06);
}

.print-error-icon,
.print-warning-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.print-error-icon {
    color: #dc3545;
}

.print-warning-icon {
    color: #ffc107;
}

.print-error-card h5,
.print-warning-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.print-error-actions,
.print-warning-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.print-error-hint {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.print-error-hint i {
    margin-right: 6px;
}

.print-warning-details {
    margin: 16px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.print-warning-details p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================ */
/* TIPS SECTION */
/* ============================================ */
.print-tips-section {
    padding: 60px 0 40px;
    background: #0a0a1a;
}

.tip-card {
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 12px;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.tip-card h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

.tip-card p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================ */
/* PRINT STYLES - CETAK TIKET */
/* ============================================ */
@media print {
    /* Sembunyikan semua elemen */
    body * {
        visibility: hidden !important;
    }
    
    /* Tampilkan hanya tiket */
    #ticketContainer,
    #ticketContainer * {
        visibility: visible !important;
    }
    
    #ticketContainer {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        padding: 40px !important;
        background: white !important;
        color: #1a1a2e !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    #ticketContainer::before {
        display: none !important;
    }
    
    /* Warna untuk print */
    #ticketContainer .ticket-brand {
        color: #1a1a2e !important;
    }
    
    #ticketContainer .ticket-brand small {
        background: #6C5CE7 !important;
        color: white !important;
    }
    
    #ticketContainer .ticket-event-name h2 {
        color: #1a1a2e !important;
    }
    
    #ticketContainer .ticket-event-category {
        background: rgba(108, 92, 231, 0.1) !important;
        color: #6C5CE7 !important;
    }
    
    #ticketContainer .ticket-event-status.valid {
        background: rgba(0, 206, 201, 0.1) !important;
        color: #00CEC9 !important;
    }
    
    #ticketContainer .ticket-info-value,
    #ticketContainer .ticket-detail-value,
    #ticketContainer .ticket-pemesan-value,
    #ticketContainer .ticket-payment-value {
        color: #1a1a2e !important;
    }
    
    #ticketContainer .ticket-info-label,
    #ticketContainer .ticket-detail-label,
    #ticketContainer .ticket-pemesan-label,
    #ticketContainer .ticket-payment-label {
        color: #999 !important;
    }
    
    #ticketContainer .ticket-info-group,
    #ticketContainer .ticket-detail-item,
    #ticketContainer .ticket-pemesan-item,
    #ticketContainer .ticket-payment-item {
        background: #f8f9fa !important;
        border-color: #eee !important;
    }
    
    #ticketContainer .ticket-divider {
        background: #eee !important;
    }
    
    #ticketContainer .ticket-header {
        border-bottom-color: #eee !important;
    }
    
    #ticketContainer .ticket-footer {
        border-top-color: #eee !important;
    }
    
    #ticketContainer .ticket-footer-left {
        color: #999 !important;
    }
    
    #ticketContainer .ticket-footer-right {
        color: #ccc !important;
    }
    
    #ticketContainer .ticket-barcode-wrapper {
        background: #f8f9fa !important;
    }
    
    #ticketContainer .ticket-barcode-large {
        border-color: #eee !important;
        background: #f8f9fa !important;
    }
    
    #ticketContainer .ticket-barcode svg,
    #ticketContainer .ticket-barcode-wrapper svg {
        filter: invert(1) !important;
    }
    
    /* Sembunyikan tombol dan header aksi */
    .print-result-header,
    .print-actions,
    .print-result-actions-top,
    .btn-print-action,
    .btn-print-action-secondary,
    .btn-print-action-sm,
    .btn-print-action-sm-secondary {
        display: none !important;
    }
}

/* ============================================ */
/* RESPONSIVE - GLOBAL */
/* ============================================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
    
    .popular-swiper {
        padding: 20px 0;
    }
    
    .detail-hero-title {
        font-size: 2.4rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-search {
        width: 100%;
    }
    
    .ticket-event-name h2 {
        font-size: 1.6rem;
    }
    
    .ticket-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-title-line {
        display: inline;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-search {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .category-card {
        height: 240px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment {
        justify-content: center;
    }
    
    .popular-swiper .swiper-button-next,
    .popular-swiper .swiper-button-prev {
        display: none;
    }
    
    .detail-hero-section {
        padding: 100px 0 40px;
        min-height: 300px;
    }
    
    .detail-hero-title {
        font-size: 2rem;
    }
    
    .filter-wrapper {
        padding: 16px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .modal-event-details {
        grid-template-columns: 1fr;
    }
    
    .modal-event-image img {
        height: 200px;
    }
    
    .va-number {
        font-size: 1.4rem;
    }
    
    .ticket-container {
        padding: 20px;
    }
    
    .ticket-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticket-barcode {
        width: 100%;
        overflow: auto;
    }
    
    .ticket-barcode svg {
        width: 100% !important;
        height: auto !important;
    }
    
    .ticket-event-name h2 {
        font-size: 1.3rem;
    }
    
    .ticket-info-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-barcode-wrapper {
        overflow: auto;
    }
    
    .ticket-barcode-wrapper svg {
        width: 100% !important;
        height: auto !important;
        max-width: 300px;
    }
    
    .print-result-actions-top {
        width: 100%;
        justify-content: flex-start;
    }
    
    .print-actions {
        flex-direction: column;
    }
    
    .print-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .ticket-payment-section .row {
        gap: 8px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .brand-badge {
        font-size: 0.45rem;
        padding: 1px 8px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .detail-hero-title {
        font-size: 1.6rem;
    }
    
    .detail-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .filter-tabs {
        gap: 4px;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .qty-control {
        gap: 8px;
    }
    
    .qty-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    
    .qty-input {
        width: 50px;
        font-size: 1rem;
    }
    
    .ticket-container {
        padding: 14px;
    }
    
    .ticket-event-name h2 {
        font-size: 1.1rem;
    }
    
    .ticket-event-meta {
        gap: 6px;
    }
    
    .ticket-event-category,
    .ticket-event-status {
        font-size: 0.7rem;
        padding: 2px 12px;
    }
    
    .ticket-info-value,
    .ticket-detail-value,
    .ticket-pemesan-value {
        font-size: 0.85rem;
    }
    
    .ticket-payment-value {
        font-size: 0.95rem;
    }
}

/* ============================================ */
/* SCROLLBAR CUSTOM */
/* ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* ============================================ */
/* SELECTION */
/* ============================================ */
::selection {
    background: var(--primary);
    color: white;
}

/* ============================================ */
/* E-TIKET MODAL */
/* ============================================ */
.eticket-container {
    background: linear-gradient(145deg, #1a1a3e 0%, #0a0a1a 100%);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.eticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
}

.eticket-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.eticket-brand i {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    padding: 8px;
    border-radius: 10px;
    color: white;
}

.eticket-brand small {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    color: white;
    letter-spacing: 1px;
}

.eticket-event {
    margin-bottom: 16px;
}

.eticket-event h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.eticket-category {
    display: inline-block;
    padding: 3px 14px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-light);
}

.eticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.eticket-item {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.eticket-item label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eticket-item label i {
    margin-right: 4px;
}

.eticket-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.eticket-item p.text-success {
    color: #00CEC9 !important;
}

.eticket-barcode {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.eticket-barcode-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.eticket-barcode-label i {
    margin-right: 6px;
}

.eticket-barcode-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px;
    background: white;
    border-radius: 10px;
}

.eticket-barcode-wrapper svg {
    display: block;
    max-width: 100%;
}

.eticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 8px;
}

.eticket-footer i {
    margin-right: 6px;
}

.eticket-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* RESPONSIVE E-TIKET */
/* ============================================ */
@media (max-width: 767.98px) {
    .eticket-grid {
        grid-template-columns: 1fr;
    }
    
    .eticket-container {
        padding: 16px;
    }
    
    .eticket-event h3 {
        font-size: 1.2rem;
    }
    
    .eticket-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .eticket-container {
        padding: 12px;
    }
    
    .eticket-event h3 {
        font-size: 1rem;
    }
    
    .eticket-item p {
        font-size: 0.85rem;
    }
    
    .eticket-barcode-wrapper {
        overflow: auto;
    }
    
    .eticket-barcode-wrapper svg {
        width: 100% !important;
        height: auto !important;
        max-width: 200px;
    }
}