/* ═══════════════════════════════════════════════════════════════════
   Photobooth Yuks PORTAL — Premium Dark UI
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #7c3aed;
    --blue: #3b82f6;
    --teal: #0d9488;
    --pink: #ec4899;
    --emerald: #10b981;
    --amber: #f59e0b;
    --bg: #050510;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --radius: 20px;
    --font: 'Outfit', sans-serif;
}

html,
body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
}

/* ── Background ── */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(59, 130, 246, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 70%),
        #050510;
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-purple {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
}

.glow-teal {
    width: 400px;
    height: 400px;
    bottom: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
}

.glow-pink {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 30%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
}

/* ── Pages ── */
.page {
    display: none;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Glass card ── */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.hero-logo-mark {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.35);
}

.hero-logo-mark svg {
    width: 30px;
    height: 30px;
    color: white;
}

.hero-brand {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ── Bento Grid Layout ── */
.bento-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}



.cta-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text);
    display: flex;
    /* let content fill it */
}

/* Base Bento Types */
.bento-hero {
    grid-column: 1 / -1;
    text-align: left;
}

.bento-half {
    text-align: left;
}

.bento-content.row-layout {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bento-content.col-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Card Glow Effects */
.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
    pointer-events: none;
}

.booking-glow {
    right: -20px;
    bottom: -50px;
    background: rgba(124, 58, 237, 0.4);
}

.download-glow {
    right: -30px;
    top: -30px;
    background: rgba(16, 185, 129, 0.4);
}

.queue-glow {
    left: -30px;
    bottom: -30px;
    background: rgba(239, 68, 68, 0.4);
}

.cta-card:hover .card-glow {
    opacity: 1;
}

/* Typography Overrides for Cards */
.bento-content .cta-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.bento-content .cta-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.bento-hero .cta-text h2 {
    font-size: 20px;
}

.bento-hero .cta-text p {
    font-size: 14px;
}

.cta-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.cta-booking {
    border-color: rgba(124, 58, 237, 0.3);
}

.cta-booking:hover {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}

.cta-download {
    border-color: rgba(16, 185, 129, 0.3);
}

.cta-download:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.12);
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-booking .cta-icon {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.cta-download .cta-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.cta-icon svg {
    width: 22px;
    height: 22px;
}

.cta-text h2 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cta-arrow {
    opacity: 0.3;
    transition: opacity 0.2s;
}

.cta-card:hover .cta-arrow {
    opacity: 0.8;
}

.cta-arrow svg {
    width: 18px;
    height: 18px;
}

.cta-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

/* Queue preview */
.queue-preview {
    width: 100%;
    padding: 20px;
}

.queue-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.queue-preview-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.queue-badge {
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.hero-queue-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 40px;
}

.queue-empty-text {
    font-size: 13px;
    color: var(--text-muted);
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.queue-item-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.queue-item-num.active {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.queue-item-num.waiting {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.queue-item-num.done {
    background: rgba(156, 163, 175, 0.1);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.queue-item-info {
    flex: 1;
    min-width: 0;
}

.queue-item-name {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.queue-item-code {
    font-size: 11px;
    font-family: monospace;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.queue-item-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 99px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.hero-footer {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    margin-top: 48px;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* ── Professional Landing Layout ── */
.sections-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.section-heading {
    margin-bottom: 4px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.text-center {
    text-align: center;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.live-status-pill .live-dot {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

/* ── New Landing Sections ── */
.landing-section {
    width: 100%;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.photo-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 24px;
    margin-top: 16px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
}

.photo-slider::-webkit-scrollbar {
    height: 4px;
}

.photo-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.photo-slider::-webkit-scrollbar-thumb {
    background: rgba(236, 72, 153, 0.4);
    border-radius: 4px;
}

.photo-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 72, 153, 0.8);
}

.photo-placeholder {
    flex: 0 0 calc(100% - 16px);
    height: 180px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

.photo-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.photo-placeholder:hover::before {
    opacity: 1;
}

.cabang-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .cabang-list {
        grid-template-columns: 1fr 1fr;
    }
}

.cabang-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.cabang-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #10b981;
    border-radius: 4px 0 0 4px;
    opacity: 0.5;
    transition: width 0.3s;
}

.cabang-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.cabang-card:hover::before {
    width: 6px;
    opacity: 1;
    box-shadow: 0 0 15px #10b981;
}

.cabang-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    padding-left: 8px;
}

.cabang-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    padding-left: 8px;
}

.info-section {
    background: radial-gradient(circle at top, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-top: 1px solid rgba(124, 58, 237, 0.2) !important;
}

/* ══════════════════════════════════════════════════
   PORTAL PAGES (Booking / Download)
══════════════════════════════════════════════════ */
.portal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.back-btn svg {
    width: 16px;
    height: 16px;
}

.page-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ──── Booking Centered Layout */
.booking-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 720px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

.booking-form-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.booking-step {
    padding: 28px;
    display: none;
}

.booking-step.active {
    display: block;
}

/* Package Selection Grid */
.package-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 500px) {
    .package-selection-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.package-card.selected {
    border-color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
}

.package-card .pkg-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.package-card .pkg-price {
    font-size: 18px;
    font-weight: 800;
    color: #a78bfa;
    margin-bottom: 8px;
}

.package-card .pkg-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.package-card .pkg-check {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #a78bfa;
}

/* Step indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* spread them out */
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.step-num.active {
    background: #a78bfa;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.4);
}

.step-num.done {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.4);
    color: #34d399;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.step-line.active {
    background: linear-gradient(90deg, var(--purple), var(--blue));
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.step-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Form fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-group label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.field-group input,
.field-group textarea,
.field-group select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
    font-family: var(--font);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.field-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.field-group select option {
    background-color: #1a1a2e; /* Dark theme background */
    color: #ffffff;
    font-size: 14px;
    padding: 12px;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Payment methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    transition: all 0.2s;
}

.payment-method-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.payment-method-btn.selected {
    border-color: rgba(124, 58, 237, 0.6);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.pm-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pm-info {
    flex: 1;
}

.pm-info strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
}

.pm-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.pm-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

.pm-check.hidden {
    display: none;
}

/* Payment Bill Card */
.payment-bill-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-bill-card span {
    font-size: 14px;
    color: var(--text-muted);
}

.payment-bill-card strong {
    font-size: 20px;
    font-weight: 800;
    color: #a78bfa;
    /* purple accent */
}

/* QRIS section */
.qris-section {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qris-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.qris-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.qris-image-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.qris-image {
    max-width: 220px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.qris-hint {
    font-size: 13px;
    color: var(--text-muted);
}

/* File upload area */
.file-upload-area {
    position: relative;
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-inner {
    min-height: 100px;
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(124, 58, 237, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: all 0.2s;
}

.file-upload-area:hover .file-upload-inner {
    border-color: rgba(124, 58, 237, 0.6);
    background: rgba(124, 58, 237, 0.08);
}

.file-upload-inner svg {
    width: 28px;
    height: 28px;
}

.file-upload-inner img {
    max-height: 120px;
    border-radius: 8px;
    object-fit: contain;
}

.payment-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.payment-actions .btn {
    flex: 1;
}

/* Booking success */
.success-anim {
    display: flex;
    justify-content: center;
    margin: 8px 0 20px;
}

.success-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    border: 2px solid rgba(52, 211, 153, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.4s ease;
}

@keyframes successPop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-circle svg {
    width: 32px;
    height: 32px;
    color: #34d399;
}

.booking-result-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0;
}

.result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.result-code {
    font-size: 28px;
    font-weight: 900;
    font-family: monospace;
    letter-spacing: 0.25em;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-value {
    font-size: 15px;
    font-weight: 700;
}

/* Payment status tracker */
.pay-status-tracker {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin: 12px 0;
}

.pay-status-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.pay-status-text {
    font-size: 15px;
    font-weight: 700;
}

.pay-status-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Queue sidebar */
.queue-sidebar {
    padding: 20px;
    position: sticky;
    top: 20px;
}

.queue-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.queue-header-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.refresh-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.refresh-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.refresh-btn svg {
    width: 14px;
    height: 14px;
}

.sidebar-queue-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 60vh;
    overflow-y: auto;
}

/* ══════════════════════════════════════════════════
   DOWNLOAD PAGE — (copied + refined from old style)
══════════════════════════════════════════════════ */
main.glass-card {
    padding: 32px;
    max-width: 640px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step.hidden {
    display: none;
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: #a78bfa;
}

.step-text {
    text-align: center;
}

.step-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-text p {
    color: var(--text-muted);
    font-size: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-wrapper input {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.2s;
}

.input-wrapper input:focus {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.1);
    font-size: 20px;
}

.input-wrapper input.shake {
    animation: shake 0.4s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    20%,
    60% {
        transform: translateX(-8px)
    }

    40%,
    80% {
        transform: translateX(8px)
    }
}

/* ── Buttons ── */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.primary-btn {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
}

.primary-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.5);
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.7);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.success-btn {
    background: linear-gradient(135deg, #059669, #0d9488);
    color: white;
    box-shadow: 0 0 24px rgba(13, 148, 136, 0.3);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(13, 148, 136, 0.4);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.alert.hidden {
    display: none;
}

/* Download step */
.success-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 14px;
    color: #34d399;
    font-weight: 800;
    font-size: 16px;
}

.success-banner svg {
    width: 22px;
    height: 22px;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.meta-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.code-value {
    font-size: 22px;
    font-weight: 900;
    font-family: monospace;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    font-size: 15px;
    font-weight: 800;
    font-family: monospace;
}

.timer-pill svg {
    width: 16px;
    height: 16px;
}

.timer-pill.expired {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* Sections */
.section-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-green {
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
}

.dot-blue {
    background: #60a5fa;
    box-shadow: 0 0 8px #60a5fa;
}

.section-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
}

/* Image preview */
.image-preview-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-preview {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 0.4s;
}

.photo-preview.loaded {
    opacity: 1;
}

.loading-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Selection toolbar */
.selection-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
    font-family: var(--font);
}

.chip-btn.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
}

.chip-btn.accent {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
    color: #a78bfa;
}

.chip-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.chip-btn:not(:disabled):hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
}

.chip-btn svg {
    width: 14px;
    height: 14px;
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    aspect-ratio: 3/4;
    background: rgba(0, 0, 0, 0.4);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-item.selected {
    border-color: var(--purple);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
}

.photo-num {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.3);
    opacity: 0;
    transition: opacity 0.2s;
}

.photo-item.selected .photo-check {
    opacity: 1;
}

.photo-check svg {
    width: 28px;
    height: 28px;
    color: white;
}

.photo-download {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.photo-download a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    transition: background 0.2s;
}

.photo-download a svg {
    width: 16px;
    height: 16px;
}

.photo-download a:hover {
    background: rgba(124, 58, 237, 0.8);
}

/* ══════════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════════ */
.pricing-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.pricing-card.highlighted {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
    background: rgba(168, 85, 247, 0.07);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    transform: none;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 4px;
}

.pricing-price {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #a855f7, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.pricing-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 4px;
}

.pricing-chip {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 20px;
}

.pricing-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-book-btn {
    margin-top: 10px;
    width: 100%;
    padding: 9px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 130, 246, 0.3));
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: var(--font);
    transition: all 0.2s;
}

.pricing-book-btn:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(59, 130, 246, 0.5));
    transform: translateY(-1px);
}

/* Thumbnails */
.pricing-cover, .pkg-cover {
    width: 100%;
    height: 180px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin-bottom: 0;
    background: #1f2937;
    flex-shrink: 0;
}
.pkg-cover { height: 100px; margin-bottom: 12px; }
.pricing-cover img, .pkg-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Flash Sale Flash Badge */
.pricing-badge.flash-badge, .pkg-flash-badge {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    position: absolute;
    top: -1px;
    left: -1px;
    right: auto;
    border-radius: 20px 0 20px 0;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    color: white;
    letter-spacing: 1px;
    animation: flashPulse 2s infinite;
    z-index: 10;
}
.pkg-flash-badge { top: 0; left: 0; border-radius: 14px 0 14px 0; }
@keyframes flashPulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}
.pricing-card.flash-sale, .package-card.flash-sale {
    border: 2px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

/* Accordion Styling for package selection */
.pricing-accordion {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.accordion-btn:hover { color: #fff; }
.accordion-btn .chevron {
    transition: transform 0.3s ease;
}
.pricing-accordion.open .accordion-btn .chevron {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.pricing-accordion.open .accordion-content {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 12px;
}