/* تنظیمات پایه و متغیرها */
:root {
    --bg-dark: #121418;
    --card-bg: #1c1f26;
    --gold: #d4af37;
    --blue: #5bb2ff;
    --text-light: #f5f5f5;
    --text-dim: #aaaaaa;
    --success-green: #1a6d44;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; direction: rtl; }

/* ساختار کلی محتوا */
.content-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }

/* بخش هدر صفحه (تیتر و توضیحات) */
.page-header { text-align: center; margin-bottom: 50px; }
.page-header h1 { color: var(--blue); font-size: 32px; margin-bottom: 15px; }
.header-underline { width: 70px; height: 3px; background-color: var(--gold); margin: 0 auto 25px; border-radius: 2px; }
.page-description { max-width: 900px; margin: 0 auto; font-size: 14.5px; color: var(--text-dim); line-height: 2.2; text-align: justify; }
.page-description a { color: var(--blue); text-decoration: none; border-bottom: 1px dashed var(--blue); }

/* گرید کارت‌ها */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* استایل اختصاصی کارت‌های درخواست (منطبق بر تصویر جدید) */
.lawyer-request-card {
    background-color: var(--card-bg);
    border: 1px solid #3a4150;
    border-radius: 10px;
    padding: 35px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.lawyer-request-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.card-icon-wrapper {
    margin-bottom: 25px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper img {
    width: 50px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(88%) sepia(21%) font-weight(700) ; /* آیکون‌ها را کمی روشن‌تر نشان می‌دهد */
}

.lawyer-request-card p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 35px;
    min-height: 50px; /* برای همتراز شدن متن کارت‌ها */
}

/* دکمه سبز عملیاتی */
.btn-success-action {
    background-color: var(--success-green);
    color: white;
    text-decoration: none;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
    display: block;
}

.btn-success-action:hover {
    background-color: #248a57;
}

/* واکنش‌گرایی موبایل */
@media (max-width: 992px) {
    .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cards-grid-3 { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 26px; }
}
