/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #07020d;
    --color-bg-medium: #11051e;
    --color-bg-card: rgba(26, 9, 39, 0.65);
    
    --color-primary: #8e24aa;      /* Rich Purple */
    --color-primary-light: #ba54d4;
    --color-secondary: #e91e63;    /* Vibrant Magenta */
    --color-secondary-light: #ff6090;
    
    --color-gold: #ffd700;         /* Royal Gold */
    --color-gold-hover: #ffea70;
    --color-gold-glow: rgba(255, 215, 0, 0.35);
    
    --color-text-light: #f5f5fa;
    --color-text-muted: #bda8cf;
    --color-text-dark: #12041b;
    
    --color-success: #00e676;
    --color-error: #ff1744;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --grad-gold: linear-gradient(135deg, #ff9e00 0%, var(--color-gold) 50%, #ff5200 100%);
    --grad-dark: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
    --grad-glow: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, rgba(142, 36, 170, 0.05) 50%, transparent 100%);
    
    /* Layout & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-premium: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(142, 36, 170, 0.15);
    --border-glass: 1px solid rgba(233, 30, 99, 0.18);
    
    /* Typography */
    --font-heading: 'Yatra One', cursive;
    --font-heading-deco: 'Yatra One', cursive;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Background canvas and ambient glow effects */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 2, 13, 0.82) 0%, rgba(17, 5, 30, 0.95) 100%), url('spiritual-concert-bg.png') no-repeat center center / cover fixed;
    z-index: -3;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    font-weight: 300;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold) !important; }
.text-success { color: var(--color-success) !important; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 2, 13, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(7, 2, 13, 0.9);
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.main-header.scrolled .brand-logo {
    height: 120px;
    margin-top: -32px;
    margin-bottom: -32px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 160px; /* Compensation for transparent margins in image */
    width: auto;
    margin-top: -48px;
    margin-bottom: -48px;
    margin-left: -20px;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 12px rgba(142, 36, 170, 0.7));
}

.brand-logo:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 18px rgba(233, 30, 99, 0.9));
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--color-secondary-light);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--grad-primary);
    color: var(--color-text-light) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn::after {
    display: none !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    border-color: rgba(255,255,255,0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px var(--color-gold-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: var(--color-gold-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

/* Floating and rotating mandalas for a premium, spiritual background */
.mandala-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    opacity: 0.12;
    color: var(--color-gold);
    pointer-events: none;
    z-index: -1;
}

.mandala-bg.left {
    top: 10%;
    left: -150px;
    animation: rotateMandalaLeft 90s linear infinite;
}

.mandala-bg.right {
    bottom: 10%;
    right: -150px;
    animation: rotateMandalaRight 120s linear infinite;
}

.mandala-svg {
    width: 100%;
    height: 100%;
}

@keyframes rotateMandalaLeft {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateMandalaRight {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--grad-glow);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 0 24px;
    animation: fadeIn 1s ease-out;
}

.hero-subtitle-top {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.hero-title {
    font-family: var(--font-heading-deco);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 10%, #ffd700 50%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 15px rgba(233, 30, 99, 0.4));
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Event details bar in hero */
.event-details-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: rgba(26, 9, 39, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 24px 48px;
    border-radius: 100px;
    margin-bottom: 48px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 2;
}

.detail-svg-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    stroke-width: 1.8;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.detail-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.map-link {
    color: var(--color-text-light);
    text-decoration: none;
    border-bottom: 1px dashed var(--color-gold);
    transition: var(--transition-smooth);
    display: inline-block;
}

.map-link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-secondary-light);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.map-icon-mini {
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-left: 2px;
}


.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(3px);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
    padding: 100px 24px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: 2px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--grad-primary);
    margin-top: 12px;
    border-radius: 2px;
}

.title-divider.center {
    margin: 12px auto 0 auto;
}

/* ==========================================================================
   ABOUT / CONCEPT SECTION
   ========================================================================== */
.about-section {
    background: radial-gradient(circle at 10% 20%, rgba(26, 9, 39, 0.4) 0%, transparent 80%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text-content .about-p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text-content .highlight-p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: 400;
    border-left: 3px solid var(--color-secondary);
    padding-left: 20px;
    line-height: 1.7;
}

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-check {
    font-size: 1.5rem;
    color: var(--color-gold);
    line-height: 1.2;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
}

.feature-item h4 {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.95rem;
}

.about-visual-card {
    perspective: 1000px;
}

.visual-card-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-glass);
    transition: var(--transition-smooth);
    transform: rotateY(-5deg);
}

.visual-card-inner:hover {
    transform: rotateY(0deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(142, 36, 170, 0.35);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(7, 2, 13, 0.9) 0%, rgba(7, 2, 13, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.overlay-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.overlay-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   CHIEF GUEST SECTION
   ========================================================================== */
.guest-section {
    background: radial-gradient(circle at 90% 80%, rgba(26, 9, 39, 0.4) 0%, transparent 80%);
}

.guest-profile-card {
    display: flex;
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: var(--border-glass);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-top: 40px;
    align-items: center;
}

.guest-image-container {
    flex: 0 0 400px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornate-frame {
    position: relative;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(142, 36, 170, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.ornate-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: calc(var(--radius-lg) + 2px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.ornate-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(233, 30, 99, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.ornate-frame:hover::before {
    opacity: 1;
}

.guest-image {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 6px);
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

.guest-info {
    padding: 50px 50px 50px 10px;
    flex: 1;
}

.guest-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 16px;
}

.guest-info h3 {
    font-size: 2.2rem;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.guest-designation {
    font-size: 1.05rem;
    color: var(--color-secondary-light);
    font-weight: 500;
    display: block;
    margin-bottom: 24px;
}

.guest-bio {
    font-size: 0.98rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.guest-quote {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--color-gold);
}

.guest-quote blockquote {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ==========================================================================
   REGISTRATION WIZARD
   ========================================================================== */
.register-section {
    background: radial-gradient(circle at 50% 50%, rgba(142, 36, 170, 0.1) 0%, transparent 70%);
}

.wizard-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: var(--border-glass);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
}

/* Wizard Steps Indicator Header */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 2, 13, 0.4);
    padding: 30px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed .step-number {
    background: var(--color-success);
    color: var(--color-text-dark);
    border-color: var(--color-success);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--color-text-muted);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.step-indicator.active .step-number {
    background: var(--grad-primary);
    color: var(--color-text-light);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.step-indicator.active .step-label {
    color: var(--color-text-light);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    transform: translateY(-12px);
    transition: var(--transition-smooth);
}

.step-line.active {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* Wizard Panels Content */
.wizard-step-panel {
    display: none;
    padding: 50px;
    animation: slideIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.wizard-step-panel.active {
    display: block;
}

.panel-title {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.panel-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

/* Forms general */
.wizard-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.required {
    color: var(--color-secondary);
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(7, 2, 13, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary-light);
    background: rgba(7, 2, 13, 0.6);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.2);
}

.error-msg {
    font-size: 0.8rem;
    color: var(--color-error);
    display: none;
    margin-top: 4px;
}

.form-group.has-error .error-msg {
    display: block;
}

.form-group.has-error .form-input {
    border-color: var(--color-error);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.15);
}

.form-actions {
    margin-top: 12px;
}

.form-actions.dual {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

/* Step 2 Payment Layout */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(7, 2, 13, 0.3);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-badge {
    background: var(--grad-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.payment-qr {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.scan-instruction {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
}

.payment-form-container {
    display: flex;
    flex-direction: column;
}

/* File Dropzone Uploader */
.file-dropzone {
    position: relative;
    width: 100%;
    height: 150px;
    border: 2px dashed rgba(233, 30, 99, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgba(7, 2, 13, 0.2);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.file-dropzone:hover, .file-dropzone.dragover {
    border-color: var(--color-secondary-light);
    background: rgba(233, 30, 99, 0.04);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    pointer-events: none;
    padding: 20px;
}

.upload-icon {
    font-size: 2.2rem;
    color: var(--color-text-muted);
}

.upload-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.upload-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Preview Image Uploader */
.file-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-medium);
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    z-index: 11;
}

.file-preview.hidden {
    display: none;
}

.preview-img {
    height: 120px;
    width: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.preview-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.file-name {
    font-size: 0.85rem;
    color: var(--color-text-light);
    word-break: break-all;
    font-weight: 500;
}

.btn-remove-file {
    background: rgba(255, 23, 68, 0.15);
    color: var(--color-error);
    border: 1px solid rgba(255, 23, 68, 0.3);
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.btn-remove-file:hover {
    background: var(--color-error);
    color: #fff;
}

/* Step 3 Success Styles */
.success-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--color-success);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px auto;
}

.success-icon {
    font-size: 3rem;
}

.panel-title.text-success {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

/* Virtual Ticket Styling */
.virtual-ticket {
    max-width: 500px;
    margin: 40px auto;
    background: radial-gradient(circle at top right, #38154e, #1a0827);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.08);
    position: relative;
    text-align: left;
    overflow: hidden;
}

/* Jagged ticket edges using borders or pseudo-elements */
.virtual-ticket::before, .virtual-ticket::after {
    content: '';
    position: absolute;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1a0927; /* Matches card container background to create cutout */
    z-index: 5;
}

.virtual-ticket::before {
    top: 60px;
}

.virtual-ticket::after {
    right: -10px;
    left: auto;
    top: 60px;
}

.ticket-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
    position: relative;
}

.ticket-logo {
    height: 48px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.ticket-header-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 2px;
}

.ticket-header-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1.5px;
}

.ticket-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
}

.ticket-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ticket-col:last-child {
    align-items: flex-end;
    text-align: right;
}

.ticket-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ticket-val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.ticket-id {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary-light) !important;
}

.ticket-footer {
    background: rgba(7, 2, 13, 0.4);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.barcode-simulation {
    display: flex;
    width: 80%;
    height: 30px;
    background: transparent;
}

.barcode-simulation span {
    display: block;
    height: 100%;
    background-color: var(--color-text-light);
    margin-right: 2px;
}

/* Vary the width of the barcode bars */
.barcode-simulation span:nth-child(even) { width: 1px; }
.barcode-simulation span:nth-child(odd) { width: 2px; }
.barcode-simulation span:nth-child(3n) { width: 3px; }
.barcode-simulation span:nth-child(4n) { width: 4px; }
.barcode-simulation span:nth-child(5n) { display: none; }

.ticket-status-note {
    font-size: 0.72rem;
    color: var(--color-gold);
    font-style: italic;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #05010a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 24px 30px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 88px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    filter: drop-shadow(0 0 8px rgba(142,36,170,0.5));
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4, .footer-socials h4 {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-socials h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-secondary-light);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-socials p {
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.social-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-svg-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-light);
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    background: var(--grad-primary);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.social-icon-link:hover .social-svg-icon {
    color: #fff;
    transform: scale(1.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.footer-contact a:hover {
    color: var(--color-secondary-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, 15px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .guest-profile-card {
        flex-direction: column;
    }
    
    .guest-image-container {
        flex: 1;
        padding: 40px 40px 20px 40px;
    }
    
    .guest-info {
        padding: 20px 40px 40px 40px;
        text-align: center;
    }
    
    .guest-quote {
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }
    
    .footer-socials {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 120px !important;
        margin-top: -32px !important;
        margin-bottom: -32px !important;
        margin-left: -15px !important;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(14, 5, 25, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 40px;
        border-left: 1px solid rgba(233, 30, 99, 0.15);
        transition: var(--transition-smooth);
        z-index: 100;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-item {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .event-details-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 30px;
        border-radius: var(--radius-md);
        width: 90%;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual-card {
        order: -1;
    }
    
    .visual-card-inner {
        transform: none !important;
    }
    
    .about-image {
        height: 300px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-actions.dual {
        grid-template-columns: 1fr;
    }
    
    .form-actions.dual .btn-secondary {
        order: 2;
    }
    
    .wizard-steps {
        padding: 24px 30px;
    }
    
    .wizard-step-panel {
        padding: 30px 24px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-socials {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .guest-image {
        width: 250px;
        height: 250px;
    }
    
    .step-label {
        display: none;
    }
    
    .step-line {
        transform: translateY(-20px);
    }
    
    .success-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   PRINT MEDIA STYLES
   ========================================================================== */
@media print {
    body {
        background: #07020d !important;
        color: #f5f5fa !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    /* Hide everything on the page */
    body > *, 
    header, 
    main > section:not(.register-section), 
    .register-section > *:not(.section-container), 
    .register-section .section-container > *:not(.wizard-container),
    .wizard-container > *:not(#step-panel-3),
    #step-panel-3 > *:not(#virtual-ticket),
    .success-actions,
    #bg-canvas,
    footer {
        display: none !important;
    }
    
    /* Center and isolate the ticket */
    .register-section, 
    .section-container, 
    .wizard-container, 
    #step-panel-3 {
        display: block !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #virtual-ticket {
        display: block !important;
        margin: 40px auto !important;
        border: 2px solid #ffd700 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        background: radial-gradient(circle at top right, #38154e, #1a0827) !important;
    }

    /* Keep color gradients and text clear */
    .ticket-val {
        color: #f5f5fa !important;
    }
    .ticket-id {
        color: #ff6090 !important;
    }
    .text-gold {
        color: #ffd700 !important;
    }
    .barcode-simulation span {
        background-color: #f5f5fa !important;
    }
}
