/* =========================================================
   SECTION REMBOURSEMENT
========================================================= */

.remboursement-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.form-card {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 45px 50px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Titres */
.form-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 10px;
}

.form-card .intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 35px;
}

.form-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    margin: 40px 0 20px;
    border-left: 4px solid #2563eb;
    padding-left: 12px;
}

/* =========================================================
   FORMULAIRE
========================================================= */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.form-group label span {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 15px;
    transition: all 0.25s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Texte aide */
.form-group small {
    color: #6b7280;
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

/* =========================================================
   INFO BOX
========================================================= */

.info-box {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 25px 30px;
    margin-top: 40px;
}

.info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.info-box ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.info-box ul li {
    color: #374151;
    margin-bottom: 6px;
}

.info-box .required {
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
}

/* =========================================================
   BOUTON ENVOI
========================================================= */

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

/* =========================================================
   CONDITIONS + MOTIFS ACCEPTÉS
========================================================= */

.conditions {
    margin-bottom: 30px;
}

.conditions h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.conditions ul {
    padding-left: 18px;
}

.conditions ul li {
    margin-bottom: 8px;
}

/* Motifs acceptés */

.conditions ul {
    padding-left: 20px;
}

.refund-items {
    display: flex;
    flex-wrap: wrap;   /* Permet de passer à la ligne si trop large */
    gap: 10px;         /* Espace entre chaque item */
}

.refund-item {
    display: flex;
    align-items: center;
    background: #f0f4f8;
    border-radius: 6px;
    padding: 8px 12px;
    min-width: 180px;   /* Largeur mini pour chaque item */
    font-size: 0.95rem;
}

.refund-item .icon-box {
    width: 24px;
    height: 24px;
    background: #e0f2f1;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.refund-item svg {
    width: 16px;
    height: 16px;
    color: #2e7d32;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
    .form-card {
        padding: 35px 25px;
    }

    .form-card h2 {
        font-size: 24px;
    }
}
