.reparation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a); /* Fond sombre avec dégradé */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Ombre plus marquée */
    color: #f0f0f0; /* Texte clair */
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #d2b48c; /* Texte beige pour contraste */
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Légère ombre pour effet 3D */
}

/* Groupes de services */
.service-group {
    margin-bottom: 20px;
}

/* Options de services */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Espace plus généreux entre les cartes */
}

/* Cartes de services */
.service-card {
    flex: 1 1 calc(50% - 10px);
    padding: 20px;
    text-align: center;
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a); /* Fond sombre avec relief */
    border: 1px solid #444; /* Bordure sombre */
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: pointer;
    color: #e6e6e6; /* Texte clair */
}

.service-card:hover,
.service-card.selected {
    border-color: #d2b48c; /* Bordure beige doré */
    background: linear-gradient(145deg, #4a4a4a, #5b5b5b); /* Fond légèrement éclairci */
    color: #fff; /* Texte blanc */
    transform: scale(1.05); /* Effet d'agrandissement */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Ombre plus marquée */
}

/* Icônes des cartes */
.service-card i.icon {
    font-size: 2rem; /* Icônes plus grandes */
    margin-bottom: 10px;
    color: #d2b48c; /* Icône beige doré */
}

/* Zone de texte */
textarea {
    width: 100%;
    border: 1px solid #444; /* Bordure sombre */
    border-radius: 8px;
    padding: 15px;
    resize: none;
    font-size: 1rem;
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a); /* Fond sombre */
    color: #e6e6e6; /* Texte clair */
    margin-top: 10px;
}

textarea:focus {
    outline: none;
    border-color: #d2b48c; /* Bordure beige doré au focus */
    box-shadow: 0 0 10px rgba(210, 180, 140, 0.5); /* Lueur dorée */
}

/* Bouton de validation */
.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a); /* Fond sombre */
    color: #e6e6e6; /* Texte clair */
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(145deg, #4a4a4a, #5b5b5b); /* Fond éclairci */
    color: #fff; /* Texte blanc */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Ombre au survol */
    transform: translateY(-5px); /* Effet de déplacement */
}
