$2000 per half day (up to 4 hour session) for cases in which damages sought exceed $100,000; $500/hour for extra hours. $1500 per half day for smaller cases.
Address:
5737 Kanan Road, #408
Agoura Hills, CA 91301
Fee Structure:
$1500 per half day (up to 4 hour session) for cases in which damages sought exceed $100,000; $300/hour for extra hours. Sliding scale for smaller cases.
Administrative Costs:
None for Zoom mediations.
Payment Responsibility:
Generally split 50-50; other arrangements may be made.
Deposit:
Full payment in advance; must be received at least 10 business days prior to the mediation.
Expenses:
Only if require travel for site-based mediations.
With 24 hour advance notice, deposits are freely transferable to re-scheduled mediation.
document.addEventListener("DOMContentLoaded", function () {
// Target each individual card inside your loop grid
const panelistCards = document.querySelectorAll('.panelist-detail-row');
panelistCards.forEach(card => {
// 1. Locate the panelist's name inside this specific card
// Note: Change '.elementor-heading-title' if your name uses a different widget/class
const nameElement = card.querySelector('.elementor-heading-title');
if (nameElement) {
const name = nameElement.textContent.trim();
// 2. Find the email link inside this card (looks for mailto:)
const emailLink = card.querySelector('a[href^="mailto:"]');
if (emailLink) {
emailLink.setAttribute('aria-label', `Email ${name}`);
}
// 3. Find the phone link inside this card (looks for tel:)
const phoneLink = card.querySelector('a[href^="tel:"]');
if (phoneLink) {
phoneLink.setAttribute('aria-label', `Call ${name}`);
}
}
});
});