/* ========================================
   PAGE SUPPORT - CARTES D'ASSISTANCE
   ======================================== */

.support-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(120, 2, 50, 0.15);
    border-color: #780232;
}

.support-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.support-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.support-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.support-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #780232;
    text-decoration: none;
    transition: all 0.2s ease;
}

.support-card-link:hover {
    color: #a0034a;
    gap: 12px;
}

.support-card-link svg {
    transition: transform 0.2s ease;
}

.support-card-link:hover svg {
    transform: translateX(4px);
}

/* Actions rapides */
.support-quick-actions {
    margin-top: 48px;
    text-align: center;
}

.quick-actions-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 14px 32px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    border-color: #780232;
    color: #780232;
    transform: translateY(-2px);
}

.quick-action-btn--primary {
    background: #780232;
    border-color: #780232;
    color: #ffffff;
}

.quick-action-btn--primary:hover {
    background: #a0034a;
    border-color: #a0034a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(120, 2, 50, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .support-card {
        padding: 24px;
    }

    .support-card-icon {
        width: 56px;
        height: 56px;
    }

    .support-card-title {
        font-size: 18px;
    }

    .support-card-description {
        font-size: 14px;
    }

    .quick-actions-grid {
        flex-direction: column;
        width: 100%;
    }

    .quick-action-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .support-card {
        padding: 20px;
    }

    .support-card-icon {
        width: 48px;
        height: 48px;
    }

    .support-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .quick-action-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
