/* Styles pour la page de suivi */

/* Barre de progression moderne */
.progress-tracker {
    width: 100%;
    margin: 40px 0 20px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.step-icon i {
    font-size: 1.5rem;
    color: #999;
}

/* Étape complétée */
.step.completed .step-icon {
    background-color: #28a745;
    border-color: #28a745;
}

.step.completed .step-icon i {
    color: white;
}

/* Étape active (en cours) */
.step-icon.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.1);
    box-shadow: 0 0 0 5px rgba(125, 112, 0, 0.15);
}

.step-icon.active i {
    color: white;
}

/* Étape à venir */
.step .step-icon {
    background-color: white;
}

.step-label {
    text-align: center;
}

.step-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 2px;
}

.step-status {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Connecteur entre les étapes */
.step-connector {
    flex: 1;
    height: 3px;
    background-color: #dee2e6;
    margin: 0 10px;
    position: relative;
    top: -30px;
    min-width: 30px;
}

.step-connector.completed {
    background-color: #28a745;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .progress-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .step {
        flex-direction: row;
        width: 100%;
        gap: 20px;
    }

    .step-icon {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    .step-label {
        text-align: left;
        flex: 1;
    }

    .step-connector {
        display: none;
    }
}

/* Styles pour les cartes */
.bg-soft {
    background-color: #fff6ea;
}

/* Animation pour le formulaire */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1) !important;
}

/* Style pour les boutons */
.btn-outline-secondary {
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.btn-outline-primary {
    border-radius: 50px;
    padding: 10px 20px;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline-primary:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.btn-primary {
    background-color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6b3f2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Style pour le formulaire de recherche */
.form-control-lg {
    border-radius: 12px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(125, 112, 0, 0.25);
}

/* Styles pour les informations */
.bg-soft {
    background-color: #fff6ea;
}

.bg-soft h3 {
    color: var(--primary-dark);
}

/* Message de statut */
.rounded-3 {
    border-radius: 12px !important;
}

.text-primary-gold {
    color: var(--primary-gold) !important;
}

.step-date {
    display: block;
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 2px;
}

.step.completed .step-date {
    color: #28a745;
}

.step .active .step-date {
    color: var(--primary-gold);
    font-weight: 500;
}