/* =========================
   SECTION RÉPARATIONS / TARIFS
   Compatible Bootstrap
   ========================= */

#reparation {
    background-color: #f8f9fa;
}

/* Titres des sections */
#reparation h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Cartes tarifs */
#reparation .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 1.8rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

/* Effet au survol */
#reparation .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Titre carte */
#reparation .card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #212529;
}

/* Texte prix */
#reparation .card p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Séparateur */
#reparation hr {
    border-top: 2px solid #dee2e6;
    width: 60%;
    margin: 3rem auto;
}

/* Responsive */
@media (max-width: 768px) {
    #reparation .card {
        margin-bottom: 2rem;
    }
}