/* Your existing styles from index.html - copy everything from the <style> tag */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    position: relative;
    color: black;
    padding: 60px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../logo.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 350px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-text h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text .event-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    opacity: 0.95;
    font-weight: 600;
}

.logo-text .event-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 350px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 600;
}

.info-value small {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
}

.ticket-steps {
    display: flex;
    justify-content: center;
    margin: 30px 0 40px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 200px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #ddd;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 0 0 3px #4CAF50;
}

.step.completed .step-circle {
    background-color: #2E7D32;
    color: white;
    box-shadow: 0 0 0 3px #2E7D32;
}

.step.completed .step-circle::after {
    content: '✓';
}

.step-line {
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #ddd;
    z-index: 0;
}

.step:first-child .step-line {
    width: 50%;
    left: 50%;
}

.step:last-child .step-line {
    width: 50%;
    left: 0;
}

.step-text {
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}

.main-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    min-height: 400px;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ticket-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-option:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.1);
}

.ticket-option h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.ticket-option p {
    color: #666;
    margin-bottom: 20px;
}

.ticket-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.ticket-price-discounted {
    color: #ff5722;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff5722;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.note {
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.95rem;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.total-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #4CAF50;
}

.total-label {
    font-weight: 600;
    color: #666;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 5px;
}

.total-savings {
    color: #ff5722;
    font-weight: 600;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.participant-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px dashed #ccc;
}

.participant-form h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.participant-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.participant-row:last-child {
    border-bottom: none;
}

.participant-number {
    font-weight: bold;
    color: #4CAF50;
    margin-right: 10px;
    min-width: 40px;
}

.participant-field {
    flex: 1;
    min-width: 200px;
}

.ticket-preview {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    border: 1px dashed #ccc;
}

.ticket-preview h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.preview-label {
    font-weight: 600;
    color: #666;
}

.preview-value {
    color: #333;
    font-weight: 500;
}

.participants-summary {
    margin-top: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    flex: 1;
    min-width: 200px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method:hover {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
    transform: translateY(-2px);
}

.payment-method.selected {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.payment-method i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.payment-method .popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #ff5722;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.payment-detail-form {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: none;
}

.payment-detail-form.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bank-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.bank-option {
    flex: 1;
    min-width: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: white;
}

.bank-option:hover {
    border-color: #4CAF50;
    background-color: #f0f9f0;
}

.bank-option.selected {
    border-color: #4CAF50;
    background-color: #e8f5e8;
    font-weight: 600;
}

.payment-status {
    text-align: center;
    padding: 30px;
    display: none;
}

.payment-status.active {
    display: block;
}

.payment-status .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.payment-status.success i {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.payment-status.failed i {
    font-size: 5rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: #e8f5e8;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.booking-id {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    letter-spacing: 2px;
    margin: 20px 0;
    padding: 10px;
    background-color: #f0f9f0;
    border-radius: 5px;
    display: inline-block;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.participants-list {
    margin-top: 15px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.participant-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.evidence-upload-page {
    padding: 20px 0;
}

.evidence-upload-area {
    margin: 30px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #4CAF50;
    text-align: center;
}

.evidence-upload-area i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.evidence-upload-area h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.evidence-upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.file-upload-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.file-upload-btn:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
}

.file-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e8;
    border-radius: 5px;
    display: none;
}

.file-info.active {
    display: block;
}

.file-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.file-name {
    font-weight: 600;
    color: #2c3e50;
}

.file-size {
    color: #666;
    font-size: 0.9rem;
}

.remove-file {
    color: #dc3545;
    cursor: pointer;
    font-size: 0.9rem;
}

.remove-file:hover {
    text-decoration: underline;
}

.upload-note {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff3cd;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    text-align: left;
}

@media (max-width: 992px) {
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .logo-text .event-title {
        font-size: 1.3rem;
    }
    
    .event-info {
        min-width: 300px;
        padding: 20px;
    }
    
    .info-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 40px 0;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }
    
    .event-info {
        width: 100%;
        min-width: auto;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .step {
        width: 120px;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .ticket-option {
        padding: 20px;
    }
    
    .payment-method {
        min-width: 100%;
    }
    
    .participant-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .bank-logos {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .step {
        width: 90px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-line {
        top: 20px;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .navigation-buttons > div {
        display: flex;
        gap: 10px;
    }
}