/* Journey Questionnaire Styles */
.journey-container {
    min-height: 100vh;
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, #1a2533 0%, #0f1823 100%);
}

.progress-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(244, 244, 244, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-percentage {
    font-size: 1.5rem;
    color: var(--gold-start);
    font-weight: 600;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(26, 37, 51, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #B8871B);
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.question-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(37, 51, 67, 0.6), rgba(32, 43, 56, 0.7));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-number {
    font-size: 0.9rem;
    color: var(--gold-start);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
}

.question-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--off-white);
}

.question-subtitle {
    font-size: 1.1rem;
    color: rgba(244, 244, 244, 0.7);
    margin-bottom: 3rem;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.answer-option {
    background: rgba(37, 51, 67, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.answer-option:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateX(10px);
    background: rgba(37, 51, 67, 0.6);
}

.answer-option.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 135, 27, 0.15));
    border-color: var(--gold-start);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.answer-option-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    display: block;
}

.answer-option-description {
    font-size: 0.95rem;
    color: rgba(244, 244, 244, 0.6);
}

.question-nav {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-back, .btn-next {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-back {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-start);
}

.btn-back:hover {
    border-color: var(--gold-start);
    background: rgba(212, 175, 55, 0.1);
}

.btn-next {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--navy);
    border: none;
}

.btn-next:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .journey-container {
        padding: 8rem 1.5rem 3rem;
    }
    
    .question-card {
        padding: 3rem 2rem;
    }
    
    .answer-option {
        padding: 1.5rem;
    }
}

