/* Styles spécifiques à la page Commander */
:root {
    --bleu-nuit: #6222CC;
    --blanc: #ffffff;
    --vert-fluo: #00ff8c;
    --jaune-doux: #FBA504;
    --gris-clair: #f5f5f5;
    --gris-fonce: #333333;
    --dark: #04000B;
    --light: #F6F4F9;
}
/* Header de page */
.page-header {
    min-height: 70vh;
    background: var(--bleu-nuit) url(../images/bg-bottom.png);
    background-repeat: no-repeat;
    background-position: center bottom -1px;
    color: var(--blanc);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Formulaire de commande */

.order-section {
    background: var(--blanc);
}

.order-container {
    max-width: 900px;
    margin: 0 auto;

}

/* Étapes du formulaire */
.order-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.order-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    color: var(--gris-fonce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--bleu-nuit);
    color: var(--blanc);
}

.step-text {
    font-weight: 500;
}

/* Formulaire multi-étapes */
.order-form-container {
    background-color: var(--blanc);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    margin-bottom: 20px;
}

.form-step p {
    margin-bottom: 30px;
    color: var(--gris-fonce);
}

/* Cartes d'options */
.option-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.option-card {
    background-color: var(--gris-clair);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.option-card.selected {
    border-color: var(--bleu-nuit);
    background-color: rgba(0, 255, 140, 0.05);
}

.option-icon {
    font-size: 2rem;
    color: var(--bleu-nuit);
    margin-bottom: 20px;
    height: 70px;
    width: 70px;
    background-color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bleu-nuit);
    margin: 15px 0;
}

.option-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.option-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--dark);
}

.option-features li i {
    color: var(--bleu-nuit);
    margin-right: 10px;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Formules containers */
.formules-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.achat-formules,
.location-formules {
    display: none;
}

/* Formulaire */
.form-group {
    margin-bottom: 25px;
    color: var(--dark);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.form-check input {
    margin-right: 10px;
    max-width: 5%;
}

.form-check label {
    margin-top: 10px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* Section Témoignages */

.testimonials {
    background: var(--light);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--blanc);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 255, 140, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    font-size: 2rem;
    color: var(--bleu-nuit);
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 0;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gris-fonce);
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gris-fonce);
}

/* Media Queries */
@media (max-width: 992px) {
    .page-header {
        background-attachment: scroll;
        padding: 180px 20px 80px;
        min-height: auto;

    }

    .order-form-container {
        padding: 30px 20px;
    }

    .option-cards,
    .formules-container {
        flex-direction: column;
    }

    .option-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .order-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .order-steps::before {
        display: none;
    }

    .step {
        margin: 0 10px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .form-navigation button {
        width: 100%;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}