/**
 * Virtual Park - Reservation Wizard Styles
 */

/* ============================================================
   Progress Indicator
   ============================================================ */

.wizard-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.wizard-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wizard-step-label {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.wizard-step.active .wizard-step-number {
    background-color: #00b730;
    color: white;
    border-color: #00b730;
    box-shadow: 0 0 15px rgba(0, 183, 48, 0.5);
}

.wizard-step.active .wizard-step-label {
    color: white;
    font-weight: 600;
}

.wizard-step.completed .wizard-step-number {
    background-color: #00b730;
    color: white;
    border-color: #00b730;
}

/* Checkmark removed - just show the number */

.wizard-step.completed .wizard-step-label {
    color: rgba(255, 255, 255, 0.8);
}

.wizard-connector {
    width: 60px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.wizard-connector.active {
    background-color: #00b730;
}

/* ============================================================
   Wizard Container
   ============================================================ */

.wizard-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.wizard-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* ============================================================
   Form Fields
   ============================================================ */

.wizard-form-group {
    margin-bottom: 20px;
}

.wizard-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.wizard-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.wizard-form-group input:focus {
    outline: none;
    border-color: #00b730;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 183, 48, 0.2);
}

.wizard-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Buttons
   ============================================================ */

.wizard-btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.wizard-btn:last-child {
    margin-bottom: 0;
}

.wizard-btn-primary {
    background: linear-gradient(135deg, #00b730 0%, #0ea305 100%);
    color: white;
}

.wizard-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 183, 48, 0.4);
}

.wizard-btn-primary:disabled {
    background: #b1b39d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wizard-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wizard-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.wizard-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #00b730;
}

.wizard-btn-outline:hover {
    background: rgba(0, 183, 48, 0.1);
}

.wizard-btn-back {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    font-size: 14px;
}

.wizard-btn-back:hover {
    color: white;
}

/* ============================================================
   Step 2 - Option Buttons
   ============================================================ */

.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wizard-option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-option-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00b730;
    transform: translateX(5px);
}

.wizard-option-btn .option-label {
    font-weight: 600;
    font-size: 15px;
}

.wizard-option-btn .option-price {
    color: #00b730;
    font-weight: 700;
    font-size: 16px;
}

.wizard-option-btn.highlight {
    border-color: #00b730;
    background: rgba(0, 183, 48, 0.1);
}

/* ============================================================
   Info Message Box
   ============================================================ */

.wizard-info-box {
    background: rgba(0, 183, 48, 0.15);
    border: 1px solid rgba(0, 183, 48, 0.3);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wizard-info-box .info-icon {
    font-size: 24px;
}

.wizard-info-box .info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.wizard-info-box .info-text strong {
    color: #00b730;
}

/* ============================================================
   App Download Section
   ============================================================ */

.app-download-section {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgb(0 0 0 / 89%);
    border-radius: 12px;
}

.app-download-section .section-title {
    color: rgb(0 255 69 / 70%);
    font-size: 14px;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-buttons a img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-buttons a:hover img {
    transform: scale(1.05);
}

/* ============================================================
   Help & Support
   ============================================================ */

.help-support-section {
    margin-top: 20px;
    text-align: center;
}

.help-support-btn {
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.help-support-btn:hover {
    color: white;
}

.help-dropdown {
    display: none;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 10px;
}

.help-dropdown.show {
    display: block;
}

.help-dropdown a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.help-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ============================================================
   Background Fix for Large Screens
   ============================================================ */

body {
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    min-height: 100vh;
}

/* ============================================================
   Responsive Adjustments
   ============================================================ */

@media (max-width: 576px) {
    .wizard-container {
        padding: 15px;
    }

    .wizard-box {
        padding: 20px;
    }

    .wizard-step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .wizard-step-label {
        font-size: 10px;
    }

    .wizard-connector {
        width: 40px;
    }

    .wizard-title {
        font-size: 1.25rem;
    }

    .wizard-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .wizard-option-btn {
        padding: 14px 16px;
    }

    .wizard-option-btn .option-label {
        font-size: 14px;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   Animation
   ============================================================ */

.wizard-step-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide steps that are not active */
.wizard-step-content {
    display: none;
}

.wizard-step-content.active {
    display: block;
}
