/* ==========================================================================
   SEPUTAR PENSI - CORE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* 2. CUSTOM PROPERTIES */
:root {
    /* Color Palette */
    --color-bg-base: #03050c;
    --color-bg-surface: #070a13;
    --color-bg-card: rgba(255, 255, 255, 0.015);
    --color-border-card: rgba(255, 255, 255, 0.07);
    
    --color-primary: #3a86f0;       /* Cobalt Blue */
    --color-secondary: #7c3aed;     /* Violet */
    --color-accent: #06b6d4;        /* Cyan */
    --color-emerald: #10b981;       /* Success green */
    --color-warning: #f59e0b;       /* Gold */
    --color-danger: #ef4444;        /* Crimson */
    
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-accent: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    --gradient-glow: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-primary));
    
    /* Theme Gradients for Cards */
    --gradient-music: linear-gradient(135deg, rgba(58, 134, 240, 0.15), rgba(124, 58, 237, 0.05));
    --gradient-art: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(58, 134, 240, 0.05));
    --gradient-dance: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.05));
    
    /* Text Colors */
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-text-dark: #0a0f1d;
    
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-hover: rgba(255, 255, 255, 0.045);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(58, 134, 240, 0.35);
    --glass-blur: 24px;
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
    --shadow-glow: 0 0 30px rgba(58, 134, 240, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 3. RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
}

/* 4. BACKGROUND CINEMATIC EFFECT */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.aurora-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(180px);
    opacity: 0.09;
    animation: orb-float 15s infinite alternate ease-in-out;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: var(--color-primary);
    top: -20%;
    left: 5%;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: var(--color-secondary);
    bottom: -20%;
    right: 5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: var(--color-accent);
    top: 30%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes orb-float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -100px) scale(1.1); }
    100% { transform: translate(-60px, 60px) scale(0.95); }
}

/* 5. TYPOGRAPHY & LAYOUT UTILITIES */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-shine {
    background: var(--gradient-glow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine-flow 6s linear infinite;
}

@keyframes text-shine-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-tag .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-emerald);
    animation: pulse 2s infinite;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-w-2xl;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* Page Header (Internal Pages) */
.page-header-section {
    padding: 10rem 0 3rem 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-w-2xl;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 8rem 0 2rem 0;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

/* 6. GLASSMORPHISM COMPONENT */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), var(--shadow-premium);
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), var(--shadow-premium), var(--shadow-glow);
}

/* 7. NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(4, 7, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
    color: #fff;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
    transition: var(--transition-elastic);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition-elastic);
}

.nav-logo:hover .logo-icon, .nav-logo:hover .logo-img {
    transform: rotate(6deg) scale(1.1);
}

.brand-logo:hover .logo-img {
    transform: rotate(6deg) scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    border: 1px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-nav:hover {
    border-color: var(--color-primary);
    background: var(--gradient-primary);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px -4px rgba(58, 134, 240, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.75rem;
    padding: 0.5rem;
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 7, 18, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 99;
    }
    
    .nav-menu.active {
        top: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
}

/* 8. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fff;
    color: var(--color-bg-base);
}

.btn-primary:hover {
    background: var(--color-text-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-accent {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(58, 134, 240, 0.25);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(58, 134, 240, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(58, 134, 240, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.wa-text-color {
    color: #25d366;
}

/* 9. HERO SECTION */
.hero-section {
    padding: 11rem 0 6rem 0;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-cols: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.trust-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.trust-item .num {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
}

.trust-item .lbl {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Visual Glow Card */
.interactive-glow-card {
    position: relative;
    border-radius: 28px;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 0 50px rgba(99, 102, 241, 0.1);
}

.interactive-glow-card::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.15), transparent);
    z-index: -1;
    filter: blur(10px);
}

.card-glow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.event-badge {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    font-size: 0.75rem;
    font-weight: 700;
    color: #a5b4fc;
}

.live-pulse {
    display: flex;
    align-items: center;
    position: relative;
    width: 10px;
    height: 10px;
}

.live-pulse .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-emerald);
    border-radius: 50%;
}

.live-pulse .ping {
    position: absolute;
    width: 24px;
    height: 24px;
    left: -7px;
    top: -7px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-ping 2s infinite ease-in-out;
}

@keyframes pulse-ping {
    0% { transform: scale(0.3); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

.card-glow-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-glow-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-glow-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.card-glow-bar {
    margin-bottom: 2rem;
}

.bar-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 9999px;
}

.bar-val {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a5b4fc;
    text-align: right;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-cols: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* 10. AUDIENCE SECTION & INSIGHTS */
.insights-section {
    padding: 6rem 0;
    position: relative;
}

.insights-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .insights-grid {
        grid-template-cols: 1fr;
        gap: 2.5rem;
    }
}

.insight-mini-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.insight-mini-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.insight-mini-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.insight-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.insight-icon-wrapper.bg-pink { background: rgba(236, 72, 153, 0.1); color: var(--color-accent); }
.insight-icon-wrapper.bg-purple { background: rgba(168, 85, 247, 0.1); color: var(--color-secondary); }
.insight-icon-wrapper.bg-blue { background: rgba(99, 102, 241, 0.1); color: var(--color-primary); }

/* Dashboard Interactive Card */
.dashboard-visual-card {
    display: flex;
    flex-direction: column;
}

.dashboard-visual-card h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.dash-tab {
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.dash-tab:hover, .dash-tab.active {
    color: #fff;
}

.dash-tab.active {
    border-bottom-color: var(--color-primary);
}

.dash-tab-content {
    display: none;
    flex: 1;
}

.dash-tab-content.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-caption {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}

/* Gender Chart */
.gender-chart-wrapper {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    padding: 1rem 0;
}

.gender-half {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.gender-half .percentage {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.gender-half .gender-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.gender-half.female { color: var(--color-accent); }
.gender-half.male { color: var(--color-primary); }

.female-color { color: var(--color-accent); }
.male-color { color: var(--color-primary); }

.gender-half .fill-bar {
    width: 30px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.gender-half .fill-bar .fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 9999px;
}

.gender-half.female .fill { background: var(--color-accent); }
.gender-half.male .fill { background: var(--color-primary); }

/* Age Chart */
.age-chart-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem 0;
}

.age-bar-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.age-label {
    width: 170px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.bar-outer {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 9999px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 9999px;
}

.age-val {
    width: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-align: right;
}

/* Engagement Chart */
.eng-stats-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
}

.eng-stat-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.eng-stat-box .val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-emerald);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.eng-stat-box .lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-cols: 1fr;
    }
}

/* 11. PRICING RATES SECTION */
.pricing-section {
    padding: 6rem 0;
}

.rates-toggle-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.rate-toggle-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.rate-toggle-btn:hover, .rate-toggle-btn.active {
    background: #fff;
    color: var(--color-bg-base);
    border-color: #fff;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.rates-grid {
    display: grid;
    grid-template-cols: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.rate-card-item {
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem;
    position: relative;
}

.rate-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.title-row h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
}

.badge-free { background: rgba(16, 185, 129, 0.15); color: var(--color-emerald); }
.badge-paid { background: rgba(99, 102, 241, 0.15); color: var(--color-primary); }
.badge-vip { background: rgba(168, 85, 247, 0.15); color: var(--color-secondary); }

.rate-header .desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.price-row {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.benefit-list li i {
    font-size: 1.1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.benefit-list li i.check-success {
    color: var(--color-emerald);
}

.benefit-list .requirement-header {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

.benefit-list .req-item {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.benefit-list .req-item i {
    color: var(--color-text-muted);
}

/* Featured cards specs */
.popular-card {
    border-color: rgba(58, 134, 240, 0.4);
    background: rgba(58, 134, 240, 0.03);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(58, 134, 240, 0.3);
}

.vip-card {
    border-color: rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.03);
}

.vip-benefit-icon {
    color: var(--color-secondary) !important;
}

.vip-benefit-icon-gold {
    color: var(--color-warning) !important;
}

.btn-vip {
    background: var(--gradient-accent) !important;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2) !important;
}



/* 13. EVENTS CATALOG & CARD COMPONENT */
.events-showcase {
    padding: 6rem 0;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.showcase-header .section-title {
    margin-bottom: 0;
}

.events-showcase-grid {
    display: grid;
    grid-template-cols: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-show-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-image-placeholder {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-placeholder.music-theme { background: var(--gradient-music); }
.event-image-placeholder.art-theme { background: var(--gradient-art); }
.event-image-placeholder.dance-theme { background: var(--gradient-dance); }

.theme-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    border-radius: 50%;
}

.event-image-placeholder .card-icon {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.15);
    transition: var(--transition-elastic);
}

.event-show-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
    color: rgba(255, 255, 255, 0.3);
}

.event-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.event-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.event-institution {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.event-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.event-meta-info span i {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
}

.lineup-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.lineup-box .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.lineup-box .stars {
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 500;
}

.preview-package-banner {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.15);
    text-align: center;
    font-size: 0.8rem;
    color: #fbcfe8;
    margin-top: auto;
}

@media (max-width: 768px) {
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* 14. CATALOG PAGE SPECIFICS */
.catalog-section {
    padding: 3rem 0 6rem 0;
}

.toolbar-card {
    padding: 1.5rem;
    margin-bottom: 3.5rem;
}

.toolbar-grid {
    display: grid;
    grid-template-cols: 1.5fr 1fr 1.5fr;
    gap: 1.5rem;
    align-items: center;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    width: 18px;
    height: 18px;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(58, 134, 240, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.filter-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.select-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.filter-dropdown-wrapper select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: var(--transition-smooth);
}

.filter-dropdown-wrapper select:focus {
    border-color: var(--color-primary);
    background: rgba(4, 7, 18, 0.9);
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cat-tab {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.cat-tab:hover, .cat-tab.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cat-tab.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(58, 134, 240, 0.2);
}

.catalog-grid {
    display: grid;
    grid-template-cols: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    text-align: center;
}

.no-results i {
    width: 64px;
    height: 64px;
    color: var(--color-warning);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--color-text-muted);
}

/* Call to Action Banner Page */
.cta-banner-section {
    padding: 4rem 0;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem;
    border-color: rgba(236, 72, 153, 0.2);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02), rgba(99, 102, 241, 0.02));
}

.cta-banner-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.cta-banner-content p {
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .toolbar-grid {
        grid-template-cols: 1fr;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }
}

/* 15. PARTNERSHIP WIZARD */
.wizard-main-section {
    padding: 10rem 0 6rem 0;
}

.wizard-layout-grid {
    display: grid;
    grid-template-cols: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: start;
}

.wizard-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.wizard-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.wizard-main-subtitle {
    color: var(--color-text-muted);
}

/* Progress Stepper */
.step-progress-wrapper {
    margin-top: 2rem;
}

.step-dots {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto 0.75rem auto;
    position: relative;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.step-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(58, 134, 240, 0.5);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.step-line.active {
    background: var(--color-primary);
}

.step-labels {
    display: flex;
    justify-content: space-between;
    max-width: 440px;
    margin: 0 auto;
}

.step-labels .lbl {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-align: center;
    width: 80px;
}

.step-labels .lbl.active {
    color: #fff;
}

/* Form inputs styling */
.form-step-container {
    display: none;
}

.form-step-container.active {
    display: block;
    animation: fade-slide-up 0.5s ease;
}

@keyframes fade-slide-up {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.step-section-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-section-title i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.form-group-row {
    margin-bottom: 1.5rem;
}

.form-group-row.split-2 {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 1.5rem;
}

.form-control-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-control-block label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-control-block .required {
    color: var(--color-danger);
}

.form-control-block input, 
.form-control-block select, 
.form-control-block textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control-block select {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 1.15rem;
    padding-right: 2.75rem;
    appearance: none;
}

.form-control-block select option {
    background: var(--color-bg-surface);
    color: #fff;
}

.form-control-block input:focus, 
.form-control-block select:focus, 
.form-control-block textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(58, 134, 240, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.wizard-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

/* Success step */
.success-wizard-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.success-icon-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.success-wizard-state h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.success-wizard-state p {
    color: var(--color-text-muted);
    max-w-md;
    margin-bottom: 2.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Live Preview Columns side */
.preview-column {
    position: sticky;
    top: 110px;
}

.sticky-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-title-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-title-bar i {
    width: 16px;
    height: 16px;
}

.preview-disclaimer {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-disclaimer i {
    width: 16px;
    height: 16px;
    color: var(--color-warning);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.preview-disclaimer span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .wizard-layout-grid {
        grid-template-cols: 1fr;
    }
    .preview-column {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .form-group-row.split-2 {
        grid-template-cols: 1fr;
        gap: 1.5rem;
    }
}

/* 16. BLOG STYLES */
.blog-section {
    padding: 3rem 0 6rem 0;
}

.blog-grid {
    display: grid;
    grid-template-cols: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-visual {
    height: 160px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-visual.sponsor-blog-theme { background: linear-gradient(135deg, #1e1b4b, #111827); }
.blog-card-visual.budget-blog-theme { background: linear-gradient(135deg, #311042, #180828); }
.blog-card-visual.promo-blog-theme { background: linear-gradient(135deg, #0f172a, #311042); }

.blog-card-visual .card-icon {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-elastic);
}

.blog-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    color: rgba(255, 255, 255, 0.25);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-meta span i {
    width: 14px;
    height: 14px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.blog-summary {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    flex: 1;
}

/* Modals sizing customization */
.modal-large {
    max-width: 850px;
}

#modal-article-area {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Formatting for modal loaded rich articles */
#modal-article-area h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

#modal-article-area .meta-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

#modal-article-area .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#modal-article-area p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

#modal-article-area h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

#modal-article-area ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

#modal-article-area ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    font-size: 1.025rem;
}

#modal-article-area ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: -1.25rem;
    top: -0.25rem;
}

#modal-article-area blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    font-style: italic;
    color: #fff;
    font-size: 1.1rem;
}

/* Modal responsive buttons */
.modal-footer-btns {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

/* Modals Core Styling */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 12, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    z-index: 1001;
    width: 90%;
    max-width: 650px;
    background: var(--color-bg-surface);
    border: 1px solid rgba(58, 134, 240, 0.25);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

@media (max-width: 576px) {
    .modal-container {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-danger);
}

/* 14. FAQ SECTION */
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    border-radius: 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: var(--transition-smooth);
}

.accordion-header span {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    padding-right: 1.5rem;
    line-height: 1.4;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* 17. FOOTER SECTION */
.footer {
    background: var(--color-bg-base);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 134, 240, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

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

.footer-grid {
    display: grid;
    grid-template-cols: 1.3fr 0.7fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 15px rgba(58, 134, 240, 0.45);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-badge:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-icon.wa { background: rgba(16, 185, 129, 0.1); color: var(--color-emerald); }
.contact-icon.mail { background: rgba(99, 102, 241, 0.1); color: var(--color-primary); }
.contact-icon.ig { background: rgba(236, 72, 153, 0.1); color: var(--color-accent); }

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

.contact-info .label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link-item a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-link-item a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-reminder {
    display: flex;
    flex-direction: column;
}

.reminder-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.reminder-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.reminder-card h4 i {
    color: var(--color-warning);
    width: 20px;
    height: 20px;
}

.reminder-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.reminder-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reminder-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(58, 134, 240, 0.35);
}

.reminder-item span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.reminder-item span strong {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* RESPONSIVE LAYOUT FOR FOOTER */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-cols: 1.2fr 0.8fr;
        gap: 3rem;
    }
    .footer-reminder {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-cols: 1fr;
    }
    .footer-reminder {
        grid-column: span 1;
    }
}

/* Admin Dashboard Tabs */
.dashboard-tabs {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dash-tab.active, .dash-tab:hover {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(58, 134, 240, 0.2);
}

/* Modal Poster Styles */
.modal-poster-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-poster {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 18. SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

