/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

:root {
        --bg-primary: #1a1a2e;
        --bg-secondary: #16213e;
        --bg-card: #0f0f23;
        --gold: #d4af37;
        --gold-light: #e8c547;
        --gold-dark: #b8962e;
        --orange-cta: #ff6b35;
        --orange-hover: #ff8555;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --text-muted: #6a6a8e;
        --border-color: rgba(212, 175, 55, 0.3);
        --success: #4caf50;
        --error: #ff4444;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

html {
        scroll-behavior: smooth;
}

body {
        font-family: 'Montserrat', sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        min-height: 100vh;
        line-height: 1.6;
        position: relative;
        overflow-x: hidden;
}

/* ============================================
   BLUR GRADIENT BACKGROUND
   ============================================ */
.blur-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

/* Animated gradient orbs */
.blur-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        animation: float 20s ease-in-out infinite;
}

.blur-orb-1 {
        width: 500px;
        height: 500px;
        background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(75, 0, 130, 0.3) 100%);
        top: -10%;
        left: -10%;
        animation-delay: 0s;
}

.blur-orb-2 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
        top: 20%;
        right: -5%;
        animation-delay: -7s;
}

.blur-orb-3 {
        width: 600px;
        height: 600px;
        background: linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(75, 0, 130, 0.2) 100%);
        bottom: -15%;
        left: 30%;
        animation-delay: -14s;
}

.blur-orb-4 {
        width: 350px;
        height: 350px;
        background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
        top: 60%;
        left: -8%;
        animation-delay: -10s;
}

@keyframes float {
        0%, 100% {
                transform: translate(0, 0) scale(1);
        }
        25% {
                transform: translate(30px, -30px) scale(1.05);
        }
        50% {
                transform: translate(-20px, 20px) scale(0.95);
        }
        75% {
                transform: translate(-30px, -10px) scale(1.02);
        }
}

/* ============================================
   STICKY HEADER WITH PROGRESS
   ============================================ */
.sticky-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(180deg, var(--bg-card) 0%, rgba(15, 15, 35, 0.98) 100%);
        border-bottom: 1px solid var(--border-color);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
}

.header-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
}

/* Logo with SVG decorations */
.logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
}

.header-svg {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
}

.header-svg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
}

/* Header Title with Breadcrumb Navigation */
.header-title { 
        display: flex; 
        align-items: center; 
        gap: 0.5rem; 
}

.header-title a { 
        font-family: 'Cinzel', serif; 
        font-size: 1.2rem; 
        font-weight: 700; 
        text-transform: uppercase; 
        letter-spacing: 2px; 
        text-decoration: none; 
        transition: color 0.3s ease; 
}

/* On main page: Thailand 2026 is active (gold) */
.header-title .thailand-link { 
        color: var(--gold); 
}

.header-title .thailand-link:hover { 
        color: var(--gold-light); 
}

.header-title .separator { 
        color: var(--text-muted); 
        font-size: 1rem; 
}

/* On main page: Hotel link is white */
.header-title .hotel-link { 
        color: var(--text-primary); 
}

.header-title .hotel-link:hover { 
        color: var(--gold); 
}

/* Progress Indicator */
.progress-indicator {
        display: flex;
        align-items: center;
        gap: 0.5rem;
}

.progress-steps {
        display: flex;
        align-items: center;
        gap: 0.25rem;
}

.progress-step {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
}

.progress-step.completed {
        background: var(--gold);
        color: var(--bg-primary);
}

.progress-step.active {
        background: var(--orange-cta);
        color: white;
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.progress-step.pending {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-muted);
        border: 1px dashed var(--text-muted);
}

.progress-line {
        width: 30px;
        height: 2px;
        background: var(--border-color);
}

.progress-line.completed {
        background: var(--gold);
}

.progress-label {
        margin-left: 1rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
}

.progress-label strong {
        color: var(--gold);
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.main-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 2rem;
        min-height: calc(100vh - 80px);
}

/* Step 3 layout - sidebar always visible */
.main-container.step3-layout {
        /* Keep original two-column layout with sidebar */
        grid-template-columns: 1fr 380px;
        max-width: 1400px;
}

/* Sidebar is always visible on all steps */
.main-container.step3-layout .sidebar {
        display: block;
}

.form-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
}

/* ============================================
   SECTION CARDS
   ============================================ */
.section-card {
        background: var(--bg-card);
        border-radius: 16px;
        border: 1px solid var(--border-color);
        padding: 2rem;
        box-shadow: var(--shadow);
}

.section-card.hidden {
        display: none;
}

.hidden {
        display: none !important;
}

.section-title {
        font-family: 'Cinzel', serif;
        font-size: 1.4rem;
        color: var(--gold);
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 0.75rem;
}

.section-title i {
        font-size: 1.2rem;
}

/* ============================================
   TICKET CARDS - VERTICAL ACCORDION STYLE
   ============================================ */
.ticket-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
}

.ticket-card {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
}

.ticket-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--text-muted);
        transition: all 0.3s ease;
}

.ticket-card:hover {
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateX(5px);
}

.ticket-card:hover::before {
        background: var(--gold);
}

.ticket-card.selected {
        border-color: var(--gold);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.ticket-card.selected::before {
        background: var(--gold);
        width: 6px;
}

.ticket-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
}

.ticket-info {
        flex: 1;
}

.ticket-name {
        font-family: 'Cinzel', serif;
        font-size: 1.15rem;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
}

.ticket-card.selected .ticket-name {
        color: var(--gold);
}

.ticket-subtitle {
        font-size: 0.85rem;
        color: var(--text-muted);
}

.ticket-price-box {
        text-align: right;
}

.ticket-price {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold);
}

.ticket-price-unit {
        font-size: 0.75rem;
        color: var(--text-muted);
}

.ticket-details {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
        display: none;
}

.ticket-card.selected .ticket-details {
        display: block;
        animation: slideDown 0.3s ease;
}

@keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
}

.ticket-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
}

.feature-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(212, 175, 55, 0.15);
        color: var(--gold-light);
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
}

.vip-badge {
        position: absolute;
        top: 0;
        right: 1.5rem;
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        color: var(--bg-primary);
        padding: 0.3rem 1rem;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 0 0 8px 8px;
}

/* Radio indicator */
.ticket-radio {
        width: 22px;
        height: 22px;
        border: 2px solid var(--text-muted);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-right: 1rem;
}

.ticket-card:hover .ticket-radio {
        border-color: var(--gold);
}

.ticket-card.selected .ticket-radio {
        border-color: var(--gold);
        background: var(--gold);
}

.ticket-card.selected .ticket-radio::after {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--bg-primary);
        font-size: 0.7rem;
}

/* ============================================
   SOLD OUT TICKETS
   ============================================ */
.ticket-card.sold-out {
        opacity: 0.6;
        pointer-events: none;
        cursor: not-allowed;
        position: relative;
        filter: grayscale(30%);
}

.ticket-card.sold-out::before {
        opacity: 0.3;
}

.ticket-card.sold-out:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.1);
}

.ticket-card.sold-out .ticket-radio {
        opacity: 0.3;
}

.sold-out-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
        color: white;
        padding: 6px 14px;
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.ticket-card.sold-out .vip-badge {
        right: auto;
        left: 10px;
}

.sold-out-price {
        color: #dc3545 !important;
        font-size: 0.9rem !important;
}

/* ============================================
   FORM FIELDS
   ============================================ */
.form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
}

.form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
}

.form-group.full-width {
        grid-column: 1 / -1;
}

.form-label {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
}

.form-label i {
        font-size: 0.9rem;
}

.form-label .required {
        color: var(--orange-cta);
}

/* Input wrapper for edit mode */
.input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
}

.form-input {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.9rem 1rem;
        color: var(--text-primary);
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
}

.form-input:focus {
        outline: none;
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.05);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
        color: var(--text-muted);
}

.form-input.valid {
        border-color: var(--success);
}

.form-input.invalid {
        border-color: var(--error);
}

.form-input:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        background: rgba(255, 255, 255, 0.02);
}

.input-error {
        font-size: 0.75rem;
        color: var(--error);
        display: none;
}

.form-input.invalid + .input-error {
        display: block;
}

/* Edit button (pencil icon) */
.edit-btn {
        position: absolute;
        right: 10px;
        background: none;
        border: none;
        color: var(--gold);
        cursor: pointer;
        padding: 0.5rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: none;
}

.edit-btn:hover {
        color: var(--gold-light);
        transform: scale(1.1);
}

.edit-btn.visible {
        display: block;
}

/* Ticket Count Selector */
.count-selector {
        display: flex;
        align-items: center;
        gap: 1rem;
}

.count-btn {
        width: 44px;
        height: 44px;
        border: 1px solid var(--border-color);
        background: rgba(255, 255, 255, 0.05);
        color: var(--gold);
        border-radius: 8px;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
}

.count-btn:hover:not(:disabled) {
        background: var(--gold);
        color: var(--bg-primary);
}

.count-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
}

.count-value {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        min-width: 40px;
        text-align: center;
}

/* Date Selector */
.date-selector {
        display: none;
        gap: 0.75rem;
        flex-wrap: wrap;
}

.date-selector.visible {
        display: flex;
}

.date-option {
        flex: 1;
        min-width: 120px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        cursor: pointer;
        text-align: center;
        transition: all 0.3s ease;
}

.date-option:hover {
        border-color: var(--gold);
}

.date-option.selected {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
}

.date-day {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--gold);
}

.date-label {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-top: 0.25rem;
}

/* ============================================
   GUEST SECTIONS (Dynamic)
   ============================================ */
.guest-sections-container {
        margin-top: 2rem;
}

.guest-section {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
        from {
                opacity: 0;
                transform: translateY(-10px);
        }
        to {
                opacity: 1;
                transform: translateY(0);
        }
}

.guest-section.removing {
        animation: fadeSlideOut 0.3s ease forwards;
}

@keyframes fadeSlideOut {
        from {
                opacity: 1;
                transform: translateY(0);
        }
        to {
                opacity: 0;
                transform: translateY(-10px);
        }
}

.guest-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
}

.guest-title {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 0.5rem;
}

.guest-age-note {
        font-size: 0.8rem;
        color: var(--text-muted);
        font-family: 'Montserrat', sans-serif;
        margin-top: 0.25rem;
}

.remove-guest-btn {
        background: rgba(255, 68, 68, 0.1);
        border: 1px solid rgba(255, 68, 68, 0.3);
        color: var(--error);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
}

.remove-guest-btn:hover {
        background: rgba(255, 68, 68, 0.2);
        border-color: var(--error);
}

.guest-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
}

.form-notice {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.85rem;
        color: var(--text-secondary);
}

.form-notice i {
        color: var(--gold);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */

/* Card Payment Block (Mollie) */
.card-payment-block {
        margin-bottom: 1.5rem;
}

.card-payment-option {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.1) 100%);
        border: 2px solid rgba(76, 175, 80, 0.4);
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1.25rem;
}

.card-payment-option:hover {
        border-color: rgba(76, 175, 80, 0.8);
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(46, 125, 50, 0.15) 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.card-payment-option.selected {
        border-color: var(--success);
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(46, 125, 50, 0.2) 100%);
}

.card-payment-icons {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        flex-shrink: 0;
}

.card-icon {
        height: 24px;
        width: auto;
        object-fit: contain;
}

.card-icon.visa-icon {
        height: 20px;
}

.card-icon.mastercard-icon {
        height: 28px;
}

.card-icon.amex-icon {
        height: 24px;
}

.card-payment-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
}

.card-payment-title {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
}

.card-payment-subtitle {
        font-size: 0.85rem;
        color: var(--text-secondary);
}

.card-payment-arrow {
        color: var(--text-muted);
        font-size: 1.2rem;
        transition: all 0.3s ease;
}

.card-payment-option:hover .card-payment-arrow {
        color: var(--success);
        transform: translateX(3px);
}

/* Payment Divider */
.payment-divider {
        display: flex;
        align-items: center;
        margin: 1.5rem 0;
        gap: 1rem;
}

.payment-divider::before,
.payment-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border-color);
}

.payment-divider span {
        font-size: 0.85rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
}

/* Responsive card payment */
@media (max-width: 768px) {
        .card-payment-option {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding: 1rem;
        }
        
        .card-payment-icons {
                width: 100%;
                justify-content: center;
        }
        
        .card-payment-text {
                align-items: center;
        }
        
        .card-payment-arrow {
                display: none;
        }
}

.payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
}

.payment-option {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
}

.payment-option:hover {
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateY(-2px);
}

.payment-option.selected {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
}

.payment-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 0.5rem;
}

.payment-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
}

.payment-name {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

.payment-option.selected .payment-name {
        color: var(--gold);
}

/* Payment Details Block */
.payment-details-block {
        display: none;
        margin-top: 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1.5rem;
}

.payment-details-block.visible {
        display: block;
        animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
}

.payment-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 1.5rem;
}

/* QR Code Section with Timer */
.qr-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
}

/* Payment Timer Styles */
.payment-timer {
        text-align: center;
        margin-bottom: 1rem;
}

.timer-label {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 0.25rem;
}

.timer-value {
        font-family: 'Cinzel', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 2px;
}

.timer-value.warning {
        color: var(--orange-cta);
}

.timer-value.expired {
        color: var(--error);
}

.qr-container {
        background: white;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#qrCode {
        width: 160px;
        height: 160px;
}

#qrCode canvas, #qrCode img {
        width: 100% !important;
        height: 100% !important;
}

.qr-label {
        margin-top: 0.75rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        text-align: center;
}

/* Payment Info Section */
.payment-info-section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
}

.payment-field {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
}

.payment-field-label {
        font-size: 0.85rem;
        color: var(--text-muted);
}

.payment-field-value {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
}

/* Amount field - clickable for copy */
.amount-field-clickable {
        cursor: pointer;
}

.amount-field-clickable:hover {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.05);
}

.amount-field-clickable.copied {
        background: rgba(76, 175, 80, 0.2);
        border-color: var(--success);
}

/* Amount field with network badge */
.amount-display {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
}

.amount-value {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold);
}

.amount-network {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin-left: 0.5rem;
}

/* Address field - clickable */
.address-field-clickable {
        cursor: pointer;
        position: relative;
}

.address-field-clickable:hover {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.05);
}

.address-field-clickable.copied {
        background: rgba(76, 175, 80, 0.2);
        border-color: var(--success);
}

.address-text {
        flex: 1;
        font-family: 'Courier New', monospace;
        font-size: 0.85rem;
        color: var(--text-primary);
        word-break: break-all;
}

.copy-btn {
        background: var(--gold);
        color: var(--bg-primary);
        border: none;
        border-radius: 6px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
}

.copy-btn:hover {
        background: var(--gold-light);
}

.copy-btn.copied {
        background: var(--success);
}

.payment-warning {
        margin-top: 1rem;
        padding: 0.75rem 1rem;
        background: rgba(255, 107, 53, 0.1);
        border-left: 3px solid var(--orange-cta);
        border-radius: 0 8px 8px 0;
        font-size: 0.85rem;
        color: var(--text-secondary);
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
}

.payment-warning i {
        color: var(--orange-cta);
        font-size: 1rem;
        margin-top: 0.1rem;
}

.payment-warning b {
        color: var(--gold);
}

/* ============================================
   STEP 3 - CONFIRMATION (with sidebar)
   ============================================ */
.confirmation-section {
        text-align: center;
        padding: 3rem 2rem;
}

/* Download Tickets Section */
.download-tickets-section {
        margin: 1.5rem 0;
}

.download-tickets-btn {
        background: linear-gradient(135deg, var(--success) 0%, #388e3c 100%);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        min-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
}

.download-tickets-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.confirmation-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto 2rem;
}

.confirmation-icon img {
        width: 100%;
        height: 100%;
}

.confirmation-title {
        font-family: 'Cinzel', serif;
        font-size: 2rem;
        color: var(--gold);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
}

.confirmation-message {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.8;
}

/* Booking reference card - centered */
.booking-reference-card {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        max-width: 600px;
        margin: 0 auto;
}

.reference-label {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
}

.reference-code {
        font-family: 'Cinzel', serif;
        font-size: 1.75rem;
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
}

.booking-summary-details {
        text-align: left;
}

.summary-item {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.summary-item:last-child {
        border-bottom: none;
}

.summary-item-label {
        color: var(--text-muted);
}

.summary-item-value {
        color: var(--text-primary);
        font-weight: 500;
        text-align: right;
}

/* Guest list for multiple guests on Step 3 */
.guests-list {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        text-align: right;
}

.guests-list .guest-entry {
        color: var(--text-primary);
        font-weight: 500;
}

/* Confirmation action buttons */
.confirmation-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: wrap;
}

.confirmation-btn {
        min-width: 200px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
}

.confirmation-btn i {
        font-size: 1.1rem;
}

/* ============================================
   SIDEBAR - BOOKING SUMMARY
   ============================================ */
.sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
}

.summary-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow);
}

.summary-header {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
}

.summary-title {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
}

/* Booking reference in sidebar header (Step 2) */
.summary-reference {
        font-size: 0.85rem;
        color: var(--gold-light);
        margin-left: auto;
        font-weight: 600;
        letter-spacing: 1px;
}

.summary-body {
        padding: 1.5rem;
}

.summary-event {
        text-align: center;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 1.25rem;
}

.event-name {
        font-family: 'Cinzel', serif;
        font-size: 1.25rem;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
}

.event-date {
        font-size: 0.9rem;
        color: var(--gold);
}

.event-location {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 0.25rem;
}

.summary-details {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
}

.summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
}

.summary-label {
        color: var(--text-secondary);
}

.summary-value {
        color: var(--text-primary);
        font-weight: 500;
}

.summary-divider {
        height: 1px;
        background: var(--border-color);
        margin: 0.75rem 0;
}

.summary-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.5rem;
}

.total-label {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        color: var(--text-primary);
}

.total-price {
        font-family: 'Cinzel', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--gold);
}

/* Button Styles */
.btn {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        border: none;
        border-radius: 10px;
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
}

.btn-primary {
        background: linear-gradient(135deg, var(--orange-cta) 0%, #ff8555 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:disabled {
        opacity: 0.5;
        cursor: not-allowed;
}

.btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
        border: 1px solid var(--border-color);
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--gold);
}

.secure-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        font-size: 0.75rem;
        color: var(--text-muted);
}

/* ============================================
   HOTEL PACKAGES PROMO BANNER
   ============================================ */
.hotel-promo-banner {
        max-width: 1400px;
        margin: 1.5rem auto 0;
        padding: 0 2rem;
}

/* ============================================
   EMAIL LINK STYLES
   ============================================ */
.email-link {
        color: #ff6b35;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
}

.email-link:hover {
        color: #ff8c5a;
        text-decoration: underline;
}

.hotel-promo-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 150, 46, 0.08) 100%);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
}

.hotel-promo-link:hover {
        border-color: var(--gold);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(184, 150, 46, 0.12) 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.hotel-promo-content {
        display: flex;
        align-items: center;
        gap: 1rem;
}

.hotel-promo-icon {
        font-size: 1.5rem;
        color: var(--gold);
}

.hotel-promo-text h3 {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        color: var(--gold);
        margin-bottom: 0.15rem;
}

.hotel-promo-text p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin: 0;
}

.hotel-promo-arrow {
        color: var(--gold);
        font-size: 1.2rem;
        transition: transform 0.3s ease;
}

.hotel-promo-link:hover .hotel-promo-arrow {
        transform: translateX(5px);
}

@media (max-width: 768px) {
        .hotel-promo-banner {
                padding: 0 1rem;
                margin: 1rem auto 0;
        }

        .hotel-promo-link {
                padding: 0.875rem 1rem;
        }

        .hotel-promo-text h3 {
                font-size: 1rem;
        }

        .hotel-promo-text p {
                font-size: 0.8rem;
        }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
        .main-container {
                grid-template-columns: 1fr;
        }

        .sidebar {
                position: static;
        }
}

@media (max-width: 768px) {
        .sticky-header {
                padding: 0.75rem 1rem;
        }

        .header-content {
                flex-direction: column;
                gap: 0.75rem;
        }

        .logo-container {
                flex-wrap: nowrap;
                justify-content: center;
                gap: 0.5rem;
        }

        /* Mobile header: Logo + text in one row */
        .logo {
                font-size: 1.1rem;
                letter-spacing: 1px;
        }

        .header-svg {
                width: 32px;
                height: 32px;
        }

        .header-title a {
                font-size: 0.9rem;
                letter-spacing: 1px;
        }

        .header-title .separator {
                font-size: 0.8rem;
        }

        .main-container {
                padding: 1rem;
        }

        .section-card {
                padding: 1.25rem;
        }

        .form-grid, .guest-form-grid {
                grid-template-columns: 1fr;
        }

        .payment-grid {
                grid-template-columns: repeat(3, 1fr);
        }

        .payment-layout {
                grid-template-columns: 1fr;
        }

        .qr-section {
                order: -1;
        }

        .blur-orb {
                filter: blur(60px);
                opacity: 0.3;
        }

        /* Step 3 mobile layout fix */
        .confirmation-section {
                padding: 1.5rem 1rem;
        }

        .booking-reference-card {
                padding: 1.25rem;
                max-width: 100%;
        }

        .reference-code {
                font-size: 1.4rem;
                letter-spacing: 2px;
        }

        .confirmation-title {
                font-size: 1.5rem;
                flex-wrap: wrap;
        }

        .confirmation-icon {
                width: 100px;
                height: 100px;
        }

        /* Summary item on mobile */
        .summary-item {
                flex-direction: column;
                gap: 0.25rem;
                align-items: flex-start;
        }

        .summary-item-value,
        .guests-list {
                text-align: left;
        }

        /* Progress label shorter on mobile */
        .progress-label {
                font-size: 0.8rem;
                margin-left: 0.5rem;
        }

        .progress-step {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
        }

        .progress-line {
                width: 20px;
        }
}

/* Extra small screens - hide "Tomorrowland" text */
@media (max-width: 480px) {
        .logo .logo-tomorrowland {
                display: none;
        }

        .logo {
                font-size: 1rem;
        }

        .header-svg {
                width: 28px;
                height: 28px;
        }

        .payment-grid {
                grid-template-columns: repeat(2, 1fr);
        }

        .confirmation-section {
                padding: 1rem 0.5rem;
        }

        .booking-reference-card {
                padding: 1rem;
        }
}

/* ============================================
   LOADING OVERLAY
   ============================================ */
.loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(26, 26, 46, 0.9);
        backdrop-filter: blur(5px);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
}

.loading-spinner {
        width: 60px;
        height: 60px;
        border: 4px solid rgba(212, 175, 55, 0.3);
        border-top-color: var(--gold);
        border-radius: 50%;
        animation: spin 1s linear infinite;
}

@keyframes spin {
        to {
                transform: rotate(360deg);
        }
}

.loading-text {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
}

/* ============================================
   RUSSIAN USER POPUP
   ============================================ */
.ru-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(8px);
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ru-popup-overlay.active {
        opacity: 1;
        visibility: visible;
}

.ru-popup-modal {
        background: linear-gradient(145deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2.5rem;
        max-width: 520px;
        width: 90%;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.1);
        transform: scale(0.9);
        transition: transform 0.3s ease;
}

.ru-popup-overlay.active .ru-popup-modal {
        transform: scale(1);
}

.ru-popup-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.5rem;
}

.ru-popup-icon img {
        width: 100%;
        height: 100%;
}

.ru-popup-title {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
}

.ru-popup-text {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.8rem;
}

.ru-popup-text-ru {
        color: var(--text-muted);
        font-size: 0.9rem;
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 2rem;
}

.ru-popup-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
}

.ru-popup-btn {
        padding: 1rem 2rem;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
}

.ru-popup-btn-redirect {
        background: linear-gradient(135deg, var(--orange-cta) 0%, #ff8555 100%);
        border: none;
        color: white;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.ru-popup-btn-redirect:hover {
        background: linear-gradient(135deg, #ff8555 0%, var(--orange-cta) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.ru-popup-btn-redirect::after {
        content: '›';
        font-size: 1.3rem;
        margin-left: 0.3rem;
}

.ru-popup-btn-stay {
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
}

.ru-popup-btn-stay:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 480px) {
        .ru-popup-modal {
                padding: 1.5rem;
        }
        
        .ru-popup-title {
                font-size: 1.2rem;
                letter-spacing: 2px;
        }
        
        .ru-popup-text {
                font-size: 0.9rem;
        }
        
        .ru-popup-text-ru {
                font-size: 0.85rem;
        }
}
/* ============================================
                   GPU OPTIMIZATION
                   ============================================ */

                /* 1) Make blur orbs cheaper */
                .blur-orb {
                                filter: blur(40px);         /* was 80px */
                                opacity: 0.25;              /* was 0.4 */
                                animation: float 30s ease-in-out infinite; /* slower animation */
                                will-change: transform;     /* hint compositor */
                }

                /* Reduce orb sizes a bit */
                .blur-orb-1 { width: 360px; height: 360px; }
                .blur-orb-2 { width: 300px; height: 300px; }
                .blur-orb-3 { width: 460px; height: 460px; }
                .blur-orb-4 { width: 280px; height: 280px; }

                /* 2) Avoid heavy backdrop-filter on full-screen overlays */
                .loading-overlay {
                                backdrop-filter: none !important;
                                -webkit-backdrop-filter: none !important;
                                background: rgba(26, 26, 46, 0.96);
                }

                .ru-popup-overlay {
                                backdrop-filter: none !important;
                                -webkit-backdrop-filter: none !important;
                                background: rgba(10, 10, 20, 0.98);
                }

                /* 3) Respect reduced motion: disable orb animation */
                @media (prefers-reduced-motion: reduce) {
                                .blur-orb { animation: none !important; }
                }