/* ============================================
   WebIArtisan AI Generator - Styles
   ============================================ */

:root {
    /* Couleurs dynamiques - seront modifiées par le randomizer */
    --primary-color: #00d1b2;
    --secondary-color: #3273dc;
    --accent-color: #ff3860;
    --bg-gradient-start: #f5f5f5;
    --bg-gradient-end: #ffffff;
    --text-color: #363636;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Reset et base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
    padding-top: 3.25rem;
}

/* ============================================
   LANDING SECTION
   ============================================ */

.landing-content {
    padding: 3rem 1.5rem;
}

.landing-content .title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.landing-content .title i {
    -webkit-text-fill-color: initial;
    color: var(--primary-color);
}

.landing-content .fa-magic {
    animation: sparkle 2s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
}

/* Animation pulse sur le bouton principal */
.pulse-animation {
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 209, 178, 0.4);
    transition: all 0.3s ease;
}

.pulse-animation:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 209, 178, 0.6);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 209, 178, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 209, 178, 0.8);
    }
}

/* ============================================
   WIZARD SECTION
   ============================================ */

#wizard-section {
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

/* AI Neural Network Background Effect */
#wizard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 209, 178, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(50, 115, 220, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 56, 96, 0.02) 0%, transparent 30%);
    pointer-events: none;
    animation: neuralPulse 8s ease-in-out infinite;
}

@keyframes neuralPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* Question Container AI Styling */
#question-container {
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

#question-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 400% 400%;
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: aiGlow 3s ease infinite;
}

#question-container:hover::before {
    opacity: 0.5;
}

#question-container.ai-active::before {
    opacity: 1;
}

@keyframes aiGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

#question-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
    transform: translateY(-2px);
}

.question-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.question-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: titleExpand 0.8s ease forwards;
}

@keyframes titleExpand {
    to {
        width: 100%;
    }
}

/* AI Typing Effect Cursor */
.ai-typing::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: bold;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Progress Bar AI Styling */
#wizard-progress {
    height: 8px;
    border-radius: 4px;
    overflow: visible;
    position: relative;
}

#wizard-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Enhanced Option Cards with AI Effects */
.option-card {
    cursor: pointer;
    padding: 1.5rem;
    border: 2px solid #dbdbdb;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 209, 178, 0.1), transparent);
    transition: left 0.5s ease;
}

.option-card:hover::before {
    left: 100%;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.1), rgba(50, 115, 220, 0.1));
    box-shadow: 0 5px 20px rgba(0, 209, 178, 0.3);
    animation: selectedPulse 2s ease-in-out infinite;
}

@keyframes selectedPulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(0, 209, 178, 0.3);
    }

    50% {
        box-shadow: 0 5px 30px rgba(0, 209, 178, 0.5);
    }
}

.option-card .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.option-card:hover .icon {
    transform: scale(1.1);
}

.option-card.selected .icon {
    color: var(--primary-color);
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Input de texte personnalisé */
.generator-input {
    border: 2px solid #dbdbdb;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.generator-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.2);
    outline: none;
}

/* Progress bar animée */
.progress.is-primary {
    transition: width 0.5s ease;
}

/* ============================================
   PREVIEW SECTION
   ============================================ */

#preview-section {
    background: #f5f5f5;
}

/* Preview Controls - Action Buttons */
#preview-section .field.is-grouped.is-grouped-centered {
    flex-wrap: wrap;
    gap: 0.5rem;
}

#preview-section .field.is-grouped.is-grouped-centered .control {
    margin: 0.25rem;
}

#preview-section .field.is-grouped.is-grouped-centered .button {
    min-width: 200px;
    transition: all 0.3s ease;
}

#preview-section .field.is-grouped.is-grouped-centered .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.preview-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.preview-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #363636;
    color: white;
}

.preview-frame-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    background: #e0e0e0;
    overflow: auto;
}

.preview-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
    transition: width 0.3s ease;
}

/* ============================================
   CONFIGURATION PANEL
   ============================================ */

#config-panel {
    background: white;
    border-left: 4px solid var(--primary-color);
}

.config-field {
    margin-bottom: 1rem;
}

.config-field label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: block;
}

.config-field input,
.config-field select,
.config-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.config-field input:focus,
.config-field select:focus,
.config-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* ============================================
   BOUTON DÉ (RANDOMIZER)
   ============================================ */

#randomize-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#randomize-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#randomize-btn:hover::before {
    width: 300px;
    height: 300px;
}

#randomize-btn.spinning .fa-dice {
    animation: dice-roll 1s ease-in-out;
}

@keyframes dice-roll {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(90deg) scale(1.2);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    75% {
        transform: rotate(270deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

.toast.success {
    border-left: 4px solid #23d160;
}

.toast.error {
    border-left: 4px solid #ff3860;
}

.toast.info {
    border-left: 4px solid #209cee;
}

.toast.warning {
    border-left: 4px solid #ffdd57;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal.is-active {
    display: flex;
}

.modal-card.is-large {
    width: 90%;
    max-width: 900px;
}

/* ============================================
   UTILITAIRES ET ANIMATIONS
   ============================================ */

.is-hidden {
    display: none !important;
}

/* ============================================
   BRAIN THINKING - Animation de chargement
   ============================================ */

.brain-loader {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.brain-loader__icon {
    font-size: 4.5rem;
    color: var(--primary-color);
    animation: brain-pulse 1.8s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 12px rgba(0, 209, 178, 0.4));
}

.brain-loader__particles {
    position: absolute;
    inset: -10px;
    pointer-events: none;
}

.brain-loader__particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: brain-think-float 2.5s ease-in-out infinite;
}

.brain-loader__particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.brain-loader__particle:nth-child(2) { top: 20%; right: 0; animation-delay: 0.3s; }
.brain-loader__particle:nth-child(3) { top: 50%; right: -5%; animation-delay: 0.6s; }
.brain-loader__particle:nth-child(4) { bottom: 20%; right: 5%; animation-delay: 0.9s; }
.brain-loader__particle:nth-child(5) { bottom: 10%; left: 30%; animation-delay: 1.2s; }
.brain-loader__particle:nth-child(6) { bottom: 25%; left: 0; animation-delay: 1.5s; }
.brain-loader__particle:nth-child(7) { top: 45%; left: -5%; animation-delay: 1.8s; }
.brain-loader__particle:nth-child(8) { top: 5%; left: 25%; animation-delay: 2.1s; }

.brain-loader__rings {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.2;
    animation: brain-ring-expand 2s ease-out infinite;
}

.brain-loader__rings::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    opacity: 0.15;
    animation: brain-ring-expand 2s ease-out infinite 0.5s;
}

@keyframes brain-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(0, 209, 178, 0.4));
    }
    50% {
        transform: scale(1.08);
        opacity: 0.95;
        filter: drop-shadow(0 0 20px rgba(0, 209, 178, 0.6));
    }
}

@keyframes brain-think-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(3px, -8px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-2px, 4px) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate(-5px, -4px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes brain-ring-expand {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de transition pour les questions */
.question-transition {
    animation: questionChange 0.4s ease;
}

@keyframes questionChange {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 768px) {
    .question-options {
        grid-template-columns: 1fr;
    }

    .landing-content {
        padding: 2rem 1rem;
    }

    .landing-content .title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .landing-content .subtitle {
        font-size: 1.25rem;
    }

    .landing-content .content.is-large {
        font-size: 1rem;
    }

    .landing-content .button.is-large {
        font-size: 1rem;
    }

    /* Mobile Preview Action Buttons */
    #preview-section .field.is-grouped.is-grouped-centered {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    #preview-section .field.is-grouped.is-grouped-centered .control {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }

    #preview-section .field.is-grouped.is-grouped-centered .button {
        width: 100%;
        min-width: auto;
        justify-content: center;
    }

    .preview-frame-wrapper {
        height: 50vh;
    }

    .toast-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .toast {
        min-width: auto;
    }
}

/* ============================================
   SCROLLBAR PERSONNALISÉE
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ============================================
   LOGO PICKER
   ============================================ */

.logo-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
    margin: 1rem 0;
}

.logo-option {
    cursor: pointer;
    border-radius: 12px;
    border: 3px solid transparent;
    background: #f8f9fa;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.logo-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.05), rgba(50, 115, 220, 0.05));
    opacity: 0;
    transition: opacity 0.25s;
}

.logo-option:hover::before {
    opacity: 1;
}

.logo-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.logo-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 209, 178, 0.07);
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.25);
    transform: scale(1.04);
}

.logo-option.selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Logo options panel - étape 7 */
.logo-options-panel {
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.06), rgba(50, 115, 220, 0.06));
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 209, 178, 0.2);
}

.logo-options-panel summary {
    padding: 0.25rem 0;
}

.logo-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem 1rem;
}

.logo-options-grid .label {
    margin-bottom: 0.25rem;
}

.logo-svg-preview {
    width: 80px;
    height: 80px;
}

.logo-svg-preview svg {
    width: 100%;
    height: 100%;
}

.logo-option-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.logo-no-logo-option {
    background: white;
    border: 3px dashed #dbdbdb;
    justify-content: center;
    min-height: 110px;
}

.logo-no-logo-option:hover {
    border-color: var(--primary-color);
    border-style: solid;
}

.logo-no-logo-option.selected {
    border-style: solid;
}

.logo-regen-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 0.75rem;
}

.logo-regen-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 209, 178, 0.4);
}

.logo-regen-btn .fa-dice {
    transition: transform 0.4s ease;
}

.logo-regen-btn.spinning .fa-dice {
    animation: dice-roll 0.6s ease-in-out;
}

@media screen and (max-width: 768px) {
    .logo-picker-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   VALIDATION TEMPS RÉEL
   ============================================ */

.is-valid {
    border-color: #48c774 !important;
    box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25) !important;
}

.is-invalid {
    border-color: #f14668 !important;
    box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25) !important;
}

.validation-errors {
    animation: slideDown 0.3s ease-out;
}

.validation-success {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeIn 0.3s ease-out;
}

.validation-success .fa-check-circle {
    color: #48c774;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   PROGRESSION AMÉLIORÉE - STEPPER
   ============================================ */

.wizard-stepper {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 0 1rem;
    position: relative;
}

.wizard-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color) var(--progress, 0%), #e0e0e0 var(--progress, 0%));
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.step-item:hover {
    transform: translateY(-2px);
}

.step-item.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.step-item.disabled:hover {
    transform: none;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-item.completed .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-item.active .step-circle {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 209, 178, 0.1);
    animation: pulse 2s infinite;
}

.step-item.locked .step-circle {
    border-color: #f14668;
    color: #f14668;
}

.step-label {
    font-size: 0.75rem;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
    color: #666;
}

.step-item.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-item.completed .step-label {
    color: #48c774;
}

/* Progress info */
.wizard-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(0, 209, 178, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.progress-percentage {
    font-weight: bold;
    color: var(--primary-color);
}

.progress-time {
    font-size: 0.875rem;
    color: #666;
}

/* Navigation rapide */
.quick-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    max-height: 60vh;
    overflow-y: auto;
}

.quick-nav-title {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.quick-nav-step {
    display: block;
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.quick-nav-step:hover {
    background: rgba(0, 209, 178, 0.1);
    color: var(--primary-color);
}

.quick-nav-step.active {
    background: var(--primary-color);
    color: white;
}

.quick-nav-step.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wizard-stepper {
        padding: 0 0.5rem;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.625rem;
        max-width: 60px;
    }
    
    .quick-nav {
        display: none;
    }
}