/* ============================================================
   Page / Support / About Us Styles (page.css)
============================================================ */

/* کانتینر اصلی صفحه با در نظر گرفتن نوبار ثابت (Fixed Navbar) */
.support-section {
    padding-top: 130px;
    padding-bottom: 70px;
    min-height: 80vh;
}

/* کارت محتوایی اختصاصی متناسب با تم تیره و لوکس */
.support-card {
    background-color: var(--hb-card-bg, #22272e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.support-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

/* خط طلایی ظریف بالای کارت */
.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hb-gold, #c5a059), transparent);
}

/* تیتر اصلی H1 */
.support-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.support-card h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--hb-gold, #c5a059);
    border-radius: 2px;
}

/* تیترهای بخش‌ها H2 */
.support-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hb-gold, #c5a059);
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* افزودن نشانگر نوری قبل از هر H2 */
.support-card h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
    background-color: var(--hb-gold, #c5a059);
    border-radius: 3px;
}

/* پاراگراف‌ها */
.support-card p {
    font-size: 1rem;
    line-height: 2;
    color: #c9d1d9;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* لیست ویژگی‌ها و موارد (UL / LI) */
.support-card ul {
    list-style: none;
    padding-right: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.support-card ul li {
    position: relative;
    padding-right: 1.8rem;
    margin-bottom: 0.9rem;
    line-height: 1.9;
    color: #c9d1d9;
    font-size: 0.98rem;
}

/* آیکون سفارشی شیک برای آیتم‌های لیست */
.support-card ul li::before {
    content: "\F26E"; /* کد آیکون bi-check-circle-fill در Bootstrap Icons */
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--hb-gold, #c5a059);
    font-size: 1rem;
}

/* لینک‌ها در صورت استفاده در متن */
.support-card a {
    color: var(--hb-gold, #c5a059);
    text-decoration: none;
    transition: color 0.2s ease;
}

.support-card a:hover {
    color: var(--hb-gold-hover, #b08d48);
    text-decoration: underline;
}

/* واکنش‌گرایی در نمایشگرهای بزرگ‌تر (Desktop) */
@media (min-width: 992px) {
    .support-card {
        padding: 3.5rem;
    }

    .support-card h1 {
        font-size: 2.3rem;
    }
}
