body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fc;
}

.navbar-brand span {
    color: #0d6efd;
}

.hero {
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: #fff;
    padding: 120px 0;
}

.search-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.lawyer-card {
    border-radius: 15px;
    border: none;
    transition: 0.3s;
}

.lawyer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0d6efd;
    margin: 0 auto 15px;
}

.stats-section {
    background: #fff;
    padding: 60px 0;
}

.stat-box h3 {
    font-size: 40px;
    font-weight: 700;
    color: #0d6efd;
}

.feature-icon {
    font-size: 40px;
    color: #0d6efd;
}

.site-footer {
    background: #111827;
    color: #ccc;
    padding: 50px 0;
}

.site-footer a {
    color: #aaa;
    text-decoration: none;
}

.register-card {
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.role-toggle .btn {
    border-radius: 30px;
}

.lawyer-profile-page {
    background: #f4f6fb;
}

.profile-card {
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #0d6efd;
    overflow: hidden;
}

.lawyer-profile-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating i {
    color: #f4c430;
}

.badge-verified {
    background: #e6f4ea;
    color: #198754;
}

.slot-btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
}

.lawyers-listing-page {
    background: #f4f6fb;
}

.filter-card {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.listing-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0d6efd;
    overflow: hidden;
}

.listing-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-listing-card {
    background: #fff;
    border: 1px solid #edf1f6;
    box-shadow: 0 10px 25px rgba(18, 38, 63, 0.06);
}

.lawyer-listing-card:hover {
    box-shadow: 0 16px 32px rgba(18, 38, 63, 0.1);
}

@media (max-width: 767.98px) {
    .lawyer-listing-card .text-md-end {
        text-align: left !important;
    }
}

.badge-online {
    background: #e7f1ff;
    color: #0d6efd;
}

.online-dot {
    font-size: 8px;
}

.sort-select {
    width: 200px;
}

/* ── FOOTER ── */
.footer { background: #111827;color: #ccc; border-top: 3px solid var(--accent); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; }
.footer-logo span { color: var(--accent); }
.footer a { color: #C9B89E; text-decoration: none; font-size: 13px; transition: .2s; }
.footer a:hover { color: var(--accent); }
.footer-heading { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
