:root {
    --brand: #2563eb;
    --brand-dark: #1d4ed8;
    --brand-light: #60a5fa;
    --accent: #f59e0b;
    --accent-gold: #d4a017;
    --navy: #0f172a;
    --navy-soft: #1e293b;
    --footer: #0a1628;
    --text: #0f172a;
    --muted: #64748b;
    --surface: #ffffff;
    --bg: #f0f4ff;
    --card-radius: 20px;
    --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    --shadow-hover: 0 24px 60px rgba(37, 99, 235, 0.22);
    --gradient-brand: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-mesh: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15), transparent),
                     radial-gradient(ellipse 60% 40% at 100% 0%, rgba(245, 158, 11, 0.08), transparent),
                     radial-gradient(ellipse 50% 30% at 0% 100%, rgba(37, 99, 235, 0.1), transparent);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing-page {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Main white surface card */
.page-main {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0 2.5rem;
}

.page-surface {
    background: var(--surface);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.95);
    overflow: hidden;
}

.page-surface .hero-section {
    padding: 1.5rem 1.5rem 0;
}

.page-surface .events-section {
    padding: 1.75rem 1.75rem 2.5rem;
}

.page-surface .cta-band {
    padding: 0 1.75rem 2rem;
}

.page-surface .cta-inner {
    margin-bottom: 0;
}

.page-surface .page-content {
    padding: 2rem 1.75rem 2.5rem;
}

.page-surface .reg-page .container {
    max-width: 100%;
    padding: 0;
}

.page-surface .reg-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0.5rem 1rem;
}

.page-surface .terms-grid {
    box-shadow: none;
    border: 1px solid #f1f5f9;
}

.page-surface .content-card {
    box-shadow: none;
    border: 1px solid #f1f5f9;
}

@media (max-width: 767.98px) {
    .page-main { padding: 0.75rem 0 1.5rem; }
    .page-surface { border-radius: 18px; }
    .page-surface .hero-section { padding: 1rem 1rem 0; }
    .page-surface .events-section,
    .page-surface .page-content { padding-left: 1rem; padding-right: 1rem; }
    .page-surface .cta-band { padding-left: 1rem; padding-right: 1rem; }
}

/* ─── Header ─── */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-header.navbar { padding: 0.75rem 0; }
.site-header .navbar-brand { margin-right: 0; padding: 0; }

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 0;
}

.brand-logo:hover {
    opacity: 0.92;
    transform: scale(1.01);
}

.brand-logo-img {
    display: block;
    width: auto;
    height: auto;
    max-height: 56px;
    max-width: min(220px, 52vw);
    object-fit: contain;
}

.brand-logo--header .brand-logo-img {
    max-height: 52px;
}

.brand-logo--footer .brand-logo-img {
    max-height: 64px;
    max-width: 240px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.brand-logo--footer {
    margin-bottom: 0.75rem;
}

/* Navigation */
.main-nav { flex-grow: 0; }

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

.nav-menu .nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 1rem !important;
    color: var(--navy-soft) !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.25s ease;
    position: relative;
}

.nav-menu .nav-link i {
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.nav-menu .nav-link:hover {
    color: var(--brand) !important;
    background: rgba(37, 99, 235, 0.08);
}

.nav-menu .nav-link:hover i { transform: scale(1.1); color: var(--brand); }

.nav-menu .nav-link.active {
    color: #fff !important;
    background: var(--gradient-brand);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.nav-menu .nav-link.active i { color: #fff; }

.site-header .navbar-toggler {
    border: 1px solid #e2e8f0;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
}

@media (min-width: 992px) {
    .site-header .navbar-collapse {
        display: flex !important;
        visibility: visible !important;
    }
}

@media (max-width: 991.98px) {
    .site-header .container { position: relative; }
    .site-header .navbar-collapse {
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid #e8ecf1;
        margin-top: 0.75rem;
        padding: 0.75rem;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }
    .nav-menu { flex-direction: column; align-items: stretch; width: 100%; }
    .nav-menu .nav-link { justify-content: flex-start; border-radius: 12px; }
}

/* ─── Hero Slider ─── */
.hero-section {
    padding: 1.75rem 0 0;
}

.hero-carousel-images {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;
    position: relative;
    background: #0f172a;
}

.hero-carousel-images::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 24px 24px;
}

.hero-carousel-images .carousel-inner {
    border-radius: 24px;
    height: auto;
    background: #0f172a;
}

.hero-carousel-images .carousel-item {
    height: auto;
}

.hero-slide-img {
    width: 100%;
    height: auto;
    max-height: clamp(240px, 42vw, 580px);
    object-fit: contain;
    object-position: center;
    display: block;
    background: #0f172a;
}

.hero-slide-link {
    display: block;
    line-height: 0;
    height: auto;
    background: #0f172a;
}

.hero-carousel-images .carousel-control-prev,
.hero-carousel-images .carousel-control-next {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 2;
}

.hero-carousel-images:hover .carousel-control-prev,
.hero-carousel-images:hover .carousel-control-next { opacity: 1; }

.hero-carousel-images .carousel-control-prev:hover,
.hero-carousel-images .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.hero-carousel-images .carousel-control-prev { left: 20px; }
.hero-carousel-images .carousel-control-next { right: 20px; }

.hero-carousel-images .carousel-indicators {
    margin-bottom: 1.25rem;
    z-index: 2;
}

.hero-carousel-images .carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.45);
    border: none;
    transition: all 0.3s ease;
}

.hero-carousel-images .carousel-indicators .active {
    background: #fff;
    width: 48px;
    box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

@media (max-width: 767.98px) {
    .hero-section { padding-top: 1rem; }
    .hero-slide-img {
        max-height: min(85vw, 420px);
    }
    .hero-carousel-images .carousel-control-prev,
    .hero-carousel-images .carousel-control-next { opacity: 1; width: 40px; height: 40px; }
}
@media (max-width: 575.98px) {
    .hero-slide-img {
        max-height: min(90vw, 380px);
    }
    .hero-carousel-images { border-radius: 16px; }
    .hero-carousel-images .carousel-inner { border-radius: 16px; }
}

/* ─── Events Section ─── */
.events-section {
    padding: 3.5rem 0 4rem;
    position: relative;
}

.section-head {
    margin-bottom: 1.5rem;
}

.section-head-compact {
    margin-bottom: 1.25rem;
}

.section-head-compact h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.2rem;
    letter-spacing: -0.02em;
}

.section-head-compact .section-sub {
    color: var(--muted);
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

.section-head h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

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

.section-head .section-sub {
    color: var(--muted);
    margin: 1rem 0 0;
    font-size: 1.05rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Check registration box */
.check-reg-box {
    background: var(--surface);
    border-radius: 20px;
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.9);
    position: relative;
    overflow: hidden;
}

.check-reg-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.check-reg-box .form-label {
    color: var(--navy);
    font-weight: 700;
}

.check-reg-box .form-control {
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 0.65rem 1rem;
}

.check-reg-box .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.check-reg-box .btn-primary {
    background: var(--gradient-brand);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
}

/* Event cards */
.event-card {
    background: var(--surface);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.6);
    animation: fadeUp 0.6s ease backwards;
}

.event-card:nth-child(1) { animation-delay: 0.05s; }
.event-card:nth-child(2) { animation-delay: 0.1s; }
.event-card:nth-child(3) { animation-delay: 0.15s; }
.event-card:nth-child(4) { animation-delay: 0.2s; }

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

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.2);
}

.event-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.event-card-image.has-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 55%);
    pointer-events: none;
}

.event-card-image.has-photo .image-overlay-icon {
    z-index: 1;
}

.event-card-image.is-closed,
.event-detail-cover.is-closed img {
    filter: grayscale(100%);
}

/* ——— Event detail page ——— */
.reg-page-event .container {
    max-width: 960px;
}

.event-detail-card {
    padding: 1.5rem;
}

.event-detail-layout {
    display: grid;
    grid-template-columns: minmax(260px, 42%) 1fr;
    gap: 2rem;
    align-items: start;
}

.event-detail-media {
    min-width: 0;
}

.event-detail-cover {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    line-height: 0;
}

.event-detail-cover img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
}

.event-detail-body {
    min-width: 0;
}

.event-detail-body .reg-title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    line-height: 1.25;
}

.event-detail-back {
    text-align: left;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .event-detail-media {
        position: sticky;
        top: 1rem;
    }

    .event-detail-body .btn-reg-submit {
        width: auto;
        min-width: 220px;
    }
}

@media (max-width: 767.98px) {
    .reg-page-event .container {
        max-width: 100%;
    }

    .event-detail-card {
        padding: 1rem 0.25rem;
    }

    .event-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .event-detail-media {
        position: static;
    }

    .event-detail-cover {
        border-radius: 14px;
    }

    .event-detail-cover img {
        max-height: none;
    }
}

.event-card-image.is-closed.has-photo::before {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 55%);
}

.event-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-card-image::after { opacity: 1; }

.event-card-image .placeholder-letter {
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
}

.status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.status-badge.ended { background: #64748b; color: #fff; }
.status-badge.open  { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.status-badge.full  { background: linear-gradient(135deg, #d97706, #f59e0b); color: #fff; }
.status-badge.closed,
.status-badge.close { background: #475569; color: #fff; }
.status-badge.verifikasi { background: linear-gradient(135deg, #1d4ed8, #3b82f6); color: #fff; }

.event-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.2s;
}

.event-card:hover .event-card-title { color: var(--brand); }

.event-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    flex: 1;
}

.event-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.7rem;
    font-size: 0.84rem;
    color: var(--muted);
}

.event-info li i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand);
    border-radius: 8px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.event-card .btn-action {
    width: 100%;
    padding: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    border: none;
    transition: all 0.25s ease;
}

.btn-action.open {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-action.open:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
    color: #fff;
}

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

.btn-action.disabled.close {
    background: #e2e8f0;
    color: #64748b;
}

.btn-action.disabled.coming-soon {
    background: #eff6ff;
    color: #2563eb;
}

/* Empty state */
.events-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--surface);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}

.events-empty i {
    font-size: 4rem;
    color: #cbd5e1;
}

/* ─── Footer ─── */
.site-footer {
    background: linear-gradient(180deg, var(--footer) 0%, #050d18 100%);
    color: #94a3b8;
    margin-top: 2rem;
    padding: 0 0 1.5rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
    gap: 2rem 2.5rem;
    padding: 2.25rem 0 0;
    align-items: start;
}

.footer-col { min-width: 0; }

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.footer-tagline {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #94a3b8;
    max-width: 280px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li { margin: 0 0 0.5rem; }
.footer-links li:last-child { margin-bottom: 0; }

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: #fff; }

.footer-links-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-contact i {
    font-size: 0.95rem;
    opacity: 0.85;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #94a3b8;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: var(--brand);
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    margin: 0;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

/* ─── Content pages ─── */
.page-content { padding: 2.5rem 0 3rem; }

.content-card {
    background: var(--surface);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.content-card h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy);
}

.terms-page { background: transparent; }
.terms-page .container { max-width: 1100px; }

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
}

.terms-column-title { margin-bottom: 1.75rem; padding-bottom: 0.75rem; border-bottom: 3px solid var(--navy); }
.terms-column-title .title-id { display: block; font-size: 1.15rem; font-weight: 800; color: #000; }
.terms-column-title .title-en { display: block; font-size: 1rem; font-weight: 600; color: var(--accent-gold); font-style: italic; margin-top: 0.2rem; }
.terms-block { margin-bottom: 1.35rem; }
.terms-block .text-id { font-weight: 700; color: #000; font-size: 0.9rem; line-height: 1.55; margin-bottom: 0.2rem; }
.terms-block .text-en { font-style: italic; color: var(--accent-gold); font-size: 0.875rem; line-height: 1.5; }
.terms-list { margin: 0.5rem 0 0 1.1rem; padding: 0; }
.terms-list li { margin-bottom: 0.85rem; }
.terms-list li .text-id, .terms-list li .text-en { display: block; }

@media (max-width: 991px) { .terms-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 1.75rem; } }

/* ─── Registration Flow page ─── */
.registration-flow-page .container {
    max-width: 920px;
}

.registration-flow-card {
    max-width: 100%;
    padding: 2.25rem 2.5rem;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(37, 99, 235, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(16, 185, 129, 0.05), transparent 50%),
        var(--surface);
}

.registration-flow-hero {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
}

.registration-flow-hero-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    flex-shrink: 0;
}

.registration-flow-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin-bottom: 0.35rem;
}

.registration-flow-card h1 {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.registration-flow-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    margin-bottom: 2rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(90deg, #f8fafc 0%, #f0f9ff 100%);
    border: 1px solid #e2e8f0;
}

.flow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.flow-pill--accent {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #6ee7b7;
    color: #047857;
}

.flow-pill-arrow {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* Timeline vertikal */
.flow-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.flow-timeline-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.15rem;
    position: relative;
    padding-bottom: 1.35rem;
}

.flow-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-radius: 2px;
}

.flow-timeline-item--finish:not(:last-child)::before {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.flow-timeline-marker {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.flow-timeline-marker--finish {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.flow-timeline-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.flow-timeline-card:hover {
    transform: translateX(4px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.flow-timeline-card--finish {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.flow-timeline-card--finish:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.flow-timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--brand);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.flow-timeline-icon--finish {
    background: #d1fae5;
    color: #059669;
}

.flow-timeline-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.15rem;
    line-height: 1.3;
}

.flow-timeline-sub {
    font-size: 0.75rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-gold, #b45309);
    margin: 0 0 0.5rem;
}

.flow-timeline-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.flow-timeline-desc strong {
    color: #334155;
    font-weight: 700;
}

.registration-flow-note {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-top: 0.5rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.registration-flow-note-icon {
    color: #d97706;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.registration-flow-note strong {
    display: block;
    font-size: 0.85rem;
    color: #92400e;
    margin-bottom: 0.25rem;
}

.registration-flow-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 767.98px) {
    .registration-flow-card {
        padding: 1.5rem 1.15rem;
    }

    .registration-flow-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .flow-pill-arrow {
        display: none;
    }

    .flow-timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 0.85rem;
    }

    .flow-timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .flow-timeline-item:not(:last-child)::before {
        left: 19px;
        top: 42px;
    }

    .flow-timeline-card {
        flex-direction: column;
        gap: 0.75rem;
    }

    .registration-flow-cta .btn-lg {
        width: 100%;
    }
}

.badge-download-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

/* Registration — minimal */
.reg-page .container { max-width: 520px; }

.reg-page.reg-page-event .container { max-width: 960px; }

.reg-page-wide .container { max-width: 720px; }

.reg-page-business .container { max-width: 960px; }

.reg-form-lead {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.reg-form-lead-sub { font-weight: 600; color: var(--brand); }

.reg-vip-notice {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.reg-vip-notice strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
    color: var(--brand-dark);
}

.reg-form-vip .form-control,
.reg-form-vip .form-select {
    border-radius: 10px;
}

.reg-section-divider {
    margin: 1.75rem 0;
    border-color: #e2e8f0;
}

.reg-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

.reg-panel-body-flat {
    padding-top: 0.25rem;
}

.reg-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    max-height: 420px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    margin-bottom: 1rem;
}

.reg-product-group-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--navy-soft);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.reg-product-group .reg-check {
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.reg-product-group-others {
    grid-column: 1 / -1;
    border-top: 1px dashed #cbd5e1;
    padding-top: 0.75rem;
}

.reg-form-business .form-control,
.reg-form-business .form-select {
    border-radius: 10px;
}

@media (max-width: 767.98px) {
    .reg-product-grid {
        grid-template-columns: 1fr;
        max-height: 360px;
    }
}

.reg-form-individual .form-control,
.reg-form-individual .form-select {
    border-radius: 4px;
    border-color: #cbd5e1;
    font-size: 0.9rem;
}

.reg-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.reg-label-en {
    font-weight: 500;
    color: var(--accent-gold);
    font-style: normal;
}

.reg-req { color: #dc2626; }

.reg-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding-top: 0.35rem;
}

.reg-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    margin: 0;
    cursor: pointer;
}

.reg-accordion .reg-panel {
    border: 1px solid #dbeafe;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.reg-panel-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: none;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.reg-panel-toggle:not(.collapsed) .reg-panel-icon::before {
    content: '−';
    font-family: inherit;
    font-weight: 700;
}

.reg-panel-toggle.collapsed .reg-panel-icon::before {
    content: '+';
    font-family: inherit;
    font-weight: 700;
}

.reg-panel-toggle .bi { display: none; }

.reg-panel-body {
    padding: 1rem 1.25rem 1.25rem;
    background: #f1f5f9;
}

.reg-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    font-size: 0.85rem;
    color: #334155;
    cursor: pointer;
}

.reg-check input { margin-top: 0.2rem; flex-shrink: 0; }

.reg-check-other .form-control { max-width: 280px; }

/* Konfirmasi modal — overlay tengah layar (jangan tertimpa layout landing) */
#regConfirmModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10050 !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

#regConfirmModal:not(.show) {
    display: none !important;
}

#regConfirmModal.show {
    display: block !important;
}

#regConfirmModal .modal-dialog {
    position: relative;
    margin: 1.75rem auto;
    max-width: 480px;
    width: calc(100% - 2rem);
    pointer-events: none;
}

#regConfirmModal.show .modal-dialog {
    pointer-events: auto;
}

.modal-backdrop {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 10040 !important;
    width: 100vw !important;
    height: 100vh !important;
}

.modal-backdrop.show {
    opacity: 0.5;
}

body.modal-open {
    overflow: hidden;
}

body.modal-open .site-header {
    z-index: 1000;
}

.reg-confirm-modal {
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.reg-confirm-modal .modal-title { font-weight: 700; color: var(--navy); }

.reg-confirm-intro {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.reg-confirm-list {
    margin: 0;
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 0.35rem 0.75rem;
    font-size: 0.9rem;
}

.reg-confirm-list dt {
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

.reg-confirm-list dd {
    margin: 0;
    color: var(--navy);
    word-break: break-word;
}

.reg-confirm-primary {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.reg-confirm-primary dt { color: var(--brand-dark); }

.reg-confirm-highlight {
    font-weight: 700;
    color: var(--brand-dark) !important;
}

.reg-confirm-secondary {
    padding-top: 0.25rem;
}

.reg-card {
    background: var(--surface);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.reg-card-center { text-align: center; }

.reg-event-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.reg-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.reg-card-center .reg-title { margin-bottom: 0.5rem; }

.reg-event-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: #475569;
}

.reg-event-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.reg-event-info i { color: var(--brand); }

.reg-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.reg-actions { margin-top: 0.5rem; }

.btn-reg-submit {
    width: 100%;
    padding: 0.7rem 1rem;
    font-weight: 700;
    border-radius: 12px;
}

.reg-back {
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.reg-back a {
    color: #64748b;
    text-decoration: none;
}

.reg-back a:hover { color: var(--brand); }

/* Visitor type selection */
.reg-type-intro {
    font-size: 0.9rem;
    color: var(--muted);
    margin: -0.5rem 0 1.25rem;
}

.visitor-type-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visitor-type-card {
    display: block;
    text-align: center;
    padding: 1.25rem 1.5rem 1.1rem;
    border-radius: 6px;
    border: 1px solid #b8d4d9;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.visitor-type-card:hover {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.visitor-card-individual,
.visitor-card-business {
    background: #e8f4f6;
    border-color: #b8d4d9;
}

.visitor-card-vip {
    background: #eef2ff;
    border-color: #93c5fd;
}

.visitor-type-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: uppercase;
}

.visitor-btn-individual { background: #0d5c63; }
.visitor-btn-business { background: #1a8a94; }
.visitor-btn-vip { background: #2563eb; }

.visitor-type-desc {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #334155;
}

.visitor-card-vip .visitor-type-desc {
    color: #1e3a5f;
}

.visitor-type-desc em {
    font-style: italic;
    font-weight: 600;
}

.visitor-type-selected {
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.visitor-type-selected .visitor-type-btn {
    margin-bottom: 0;
    max-width: 100%;
}

.reg-success-icon {
    font-size: 3rem;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.reg-code-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.reg-code-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.reg-code {
    font-size: 1.35rem;
    color: var(--brand);
    letter-spacing: 0.04em;
}

.reg-meta { margin-bottom: 1rem; }

.reg-status-list {
    margin: 0 0 1rem;
}

.reg-status-list > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.reg-status-list > div:last-child { border-bottom: none; }

.reg-status-list dt {
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

.reg-status-list dd {
    margin: 0;
    text-align: right;
    color: var(--navy);
}

/* Alerts */
.landing-page .alert {
    border-radius: 14px;
    border: none;
    box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════
   DEKORASI & AKSESORIS — lebih hidup
   ═══════════════════════════════════════ */

.deco-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.landing-page > *:not(.deco-bg):not(#regConfirmModal):not(.modal-backdrop) {
    position: relative;
    z-index: 1;
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.deco-blob-1 {
    width: 500px; height: 500px;
    background: rgba(59, 130, 246, 0.25);
    top: -10%; right: -5%;
}
.deco-blob-2 {
    width: 400px; height: 400px;
    background: rgba(245, 158, 11, 0.15);
    bottom: 20%; left: -10%;
    animation-delay: -7s;
}
.deco-blob-3 {
    width: 300px; height: 300px;
    background: rgba(139, 92, 246, 0.12);
    top: 40%; left: 30%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.deco-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.deco-float {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    color: var(--brand);
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    animation: floatIcon 6s ease-in-out infinite;
}

.deco-float-1 { top: 18%; left: 8%; animation-delay: 0s; }
.deco-float-2 { top: 25%; right: 12%; animation-delay: -1.5s; }
.deco-float-3 { top: 55%; left: 5%; animation-delay: -3s; }
.deco-float-4 { top: 70%; right: 8%; animation-delay: -4.5s; }
.deco-float-5 { top: 40%; right: 25%; animation-delay: -2s; }

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

/* Hero sparks */
.hero-section { position: relative; }

.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

.hero-spark {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
    animation: sparkle 2s ease-in-out infinite;
}

.hero-spark-1 { top: 15%; left: 10%; }
.hero-spark-2 { top: 30%; right: 15%; animation-delay: 0.7s; }
.hero-spark-3 { bottom: 25%; left: 20%; animation-delay: 1.4s; width: 6px; height: 6px; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Marquee ticker */
.marquee-wrap {
    margin-top: 1.25rem;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.6);
    border-radius: 50px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.marquee-track span i { color: var(--brand); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats strip */
.stats-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.stat-card-accent {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
}

.stat-card-accent .stat-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.stat-card-accent .stat-label { color: rgba(255,255,255,0.85); }

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    pointer-events: none;
}

/* Features strip */
.features-strip {
    padding: 1.5rem 0 2rem;
}

.features-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px dashed rgba(37, 99, 235, 0.25);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.feature-pill:hover {
    border-style: solid;
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-pill strong { display: block; font-size: 0.9rem; color: var(--navy); }
.feature-pill small { color: var(--muted); font-size: 0.78rem; }

/* Section tags & deco rings */
.section-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    background: var(--surface);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: var(--muted);
}

.tag-chip i { color: var(--brand); }

.events-section { position: relative; overflow: hidden; }

.section-deco { position: absolute; inset: 0; pointer-events: none; }

.deco-ring {
    position: absolute;
    border: 2px dashed rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    animation: spinSlow 40s linear infinite;
}

.deco-ring-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.deco-ring-2 { width: 250px; height: 250px; bottom: -50px; left: -50px; animation-direction: reverse; }

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

/* Enhanced check box */
.check-reg-box { position: relative; text-align: center; }

.check-reg-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    background: var(--gradient-brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.check-reg-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin: -0.5rem 0 0.75rem;
}

.check-reg-box .input-group-text {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: var(--brand);
}

/* Enhanced event cards */
.event-card {
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 3;
    pointer-events: none;
    transition: left 0.6s ease;
}

.event-card:hover .card-shine { left: 150%; }

.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(37, 99, 235, 0.08) 50%);
    z-index: 2;
    pointer-events: none;
}

.card-hot {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    animation: pulseHot 1.5s ease infinite;
}

@keyframes pulseHot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.image-overlay-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.4);
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-card:hover .image-overlay-icon { opacity: 1; }

.card-meta-top { margin-bottom: 0.5rem; }

.event-status-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.event-status-pill--open {
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
}

.event-status-pill--coming_soon {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
}

.event-status-pill--close,
.event-status-pill--registration_closed {
    color: #64748b;
    background: rgba(100, 116, 139, 0.12);
}

.event-status-pill--ongoing {
    color: #0e7490;
    background: rgba(6, 182, 212, 0.12);
}

.event-status-pill--ended {
    color: #991b1b;
    background: rgba(239, 68, 68, 0.1);
}

.event-card-title a { color: var(--navy) !important; }
.event-card-title a:hover { color: var(--brand) !important; }

.price-row span { font-weight: 700; color: var(--brand-dark) !important; }

.events-empty .empty-illustration {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    animation: floatIcon 4s ease-in-out infinite;
}

/* CTA Band */
.cta-band {
    padding: 3rem 0;
    position: relative;
}

.cta-inner {
    background: var(--gradient-brand);
    border-radius: 28px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.35);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(0,0,0,0.08);
    border-radius: 50%;
}

.cta-content { position: relative; z-index: 1; color: #fff; }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    color: var(--brand-dark);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}

/* Trust strip */
.trust-strip {
    padding: 2rem 0 1rem;
    text-align: center;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.trust-label i { color: var(--brand); }

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.25rem;
    background: var(--surface);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.trust-logo:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.trust-logo i { font-size: 1.1rem; color: var(--brand); opacity: 0.7; }

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .footer-col-brand { grid-column: 1 / -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .deco-float { display: none; }
    .cta-inner { flex-direction: column; text-align: center; padding: 2rem; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .footer-bottom { margin-top: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .feature-pill { max-width: 100%; }
    .marquee-track span { font-size: 0.75rem; }
}
