/* ============================================
   assets/css/style.css - استایل اصلی سایت
   محل قرارگیری: پوشه assets/css/
   ============================================ */

/* ===== فونت وزیرمتن ===== */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

/* ===== تنظیمات پایه ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    background: #f5f7fa;
    color: #1a2332;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== کانتینر ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== هدر ===== */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo span {
    color: #667eea;
}

.header-links a {
    margin-right: 20px;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

.header-links a:hover {
    color: #667eea;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
}

.btn-login:hover {
    opacity: 0.9;
}

/* ============================================
   استایل جدید کارت آگهی (شبیه جاب‌ویژن)
   ============================================ */

.job-list {
    display: grid;
    gap: 16px;
}

.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102,126,234,0.12);
    border-color: #667eea;
}

/* ===== برچسب فوری/ویژه ===== */
.urgent-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    box-shadow: 0 2px 12px rgba(238, 90, 36, 0.35);
    z-index: 2;
    letter-spacing: 0.5px;
}

/* ===== ردیف اول: لوگو + عنوان ===== */
.job-header-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.company-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-logo {
    font-size: 28px;
    color: #adb5bd;
}

.job-title-wrap {
    flex: 1;
    min-width: 0;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
    text-decoration: none;
    display: block;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    transition: color 0.2s ease;
}

.job-title:hover {
    color: #667eea;
}

.company-name {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

/* ===== ردیف اطلاعات ===== */
.job-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 10px 0 14px 0;
    font-size: 13px;
    color: #6c757d;
}

.job-info-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

.job-location { color: #6c757d; }
.job-salary { color: #1a2332; font-weight: 700; }
.job-category { color: #667eea; }
.job-date { color: #adb5bd; font-size: 12px; }

/* ===== دکمه‌های کارت ===== */
.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-apply {
    padding: 9px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(102,126,234,0.25);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.btn-apply.applied {
    background: linear-gradient(135deg, #28a745, #20c997);
    cursor: default;
    box-shadow: 0 2px 8px rgba(40,167,69,0.25);
}

.btn-apply.applied:hover {
    transform: none;
}

.btn-apply.login {
    background: #f1f3f5;
    color: #495057;
    box-shadow: none;
}

.btn-apply.login:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
}

.btn-apply.employer {
    background: #f1f3f5;
    color: #adb5bd;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-apply.employer:hover {
    transform: none;
}

.btn-view {
    padding: 9px 22px;
    background: #f1f3f5;
    color: #495057;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    transition: all 0.25s ease;
    border: 1px solid #e9ecef;
    display: inline-block;
    text-align: center;
}

.btn-view:hover {
    background: #e9ecef;
    color: #667eea;
    border-color: #667eea;
}

/* ============================================
   دکمه‌های عمومی
   ============================================ */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-block;
    text-align: center;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-secondary {
    background: #f0f0f0;
    color: #555;
}

.btn-success {
    background: #28a745;
    color: #fff;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn-warning {
    background: #ffc107;
    color: #333;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

/* ============================================
   کارت‌های عمومی
   ============================================ */
.card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.card h4 {
    color: #333;
    margin-bottom: 10px;
}

/* ============================================
   فرم‌ها
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* ============================================
   گرید
   ============================================ */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.row3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* ============================================
   جدول
   ============================================ */
.table-wrap {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: right;
    padding: 12px;
    background: #f8f9fa;
    color: #555;
    font-size: 14px;
    border-bottom: 2px solid #e0e0e0;
}

td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

/* ============================================
   وضعیت‌ها (Badge)
   ============================================ */
.badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: inline-block;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.badge-reviewing {
    background: #cce5ff;
    color: #004085;
}

.badge-active {
    background: #d4edda;
    color: #155724;
}

.badge-rejected {
    background: #f8d7da;
    color: #721c24;
}

.badge-expired {
    background: #e2e3e5;
    color: #383d41;
}

.badge-seeker {
    background: #cce5ff;
    color: #004085;
}

.badge-employer {
    background: #d4edda;
    color: #155724;
}

.badge-admin {
    background: #f8d7da;
    color: #721c24;
}

.badge-banned {
    background: #e2e3e5;
    color: #383d41;
}

/* ============================================
   پیام‌های خطا و موفقیت
   ============================================ */
.error {
    background: #fee;
    color: #c00;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.success {
    background: #efe;
    color: #0a0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* ============================================
   صفحه‌بندی
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.pagination a.active {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.pagination a:hover:not(.active) {
    background: #f0f4ff;
}

/* ============================================
   فوتر
   ============================================ */
.footer {
    text-align: center;
    padding: 30px 0;
    color: #888;
    font-size: 13px;
}

/* ============================================
   استایل FAQ
   ============================================ */
.faq-section {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.faq-section .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item .faq-question {
    font-weight: 700;
    color: #1a2332;
    font-size: 16px;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .faq-question::after {
    content: "▼";
    font-size: 12px;
    color: #667eea;
    transition: transform 0.3s;
}

.faq-item .faq-question.open::after {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 8px;
    padding-right: 10px;
    display: none;
}

.faq-item .faq-answer.open {
    display: block;
}

/* ============================================
   استایل Internal Links (لینک‌های داخلی)
   ============================================ */
.internal-links-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.internal-links-box h4 {
    color: #1a2332;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

.internal-links-box ul {
    list-style: none;
    padding: 0;
}

.internal-links-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.internal-links-box ul li:last-child {
    border-bottom: none;
}

.internal-links-box ul li a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s;
}

.internal-links-box ul li a:hover {
    color: #667eea;
}

/* ============================================
   ============================================
   استایل‌های جدید داشبورد جوینده کار
   ============================================
   ============================================ */

/* ===== کارت پروفایل ===== */
.profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: box-shadow 0.3s ease;
}
.profile-card:hover {
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.12);
}

.profile-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.profile-info .name {
    font-size: 22px;
    font-weight: 800;
    color: #1a2332;
    letter-spacing: -0.3px;
}
.profile-info .title {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
}
.profile-info .location {
    color: #8a94a6;
    font-size: 14px;
    margin-top: 4px;
}
.profile-info .location i {
    color: #667eea;
    margin-left: 6px;
}

/* ===== نوار پیشرفت رزومه ===== */
.progress-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    margin-bottom: 28px;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.progress-header h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
}
.progress-header .percent {
    font-size: 20px;
    font-weight: 800;
    color: #667eea;
}

.progress-bar-main {
    height: 10px;
    background: #eef1f5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}
.progress-bar-main .fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.progress-steps .step {
    font-size: 12px;
    color: #b0b8c5;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    font-weight: 500;
    transition: color 0.3s ease;
}
.progress-steps .step.done {
    color: #28a745;
}
.progress-steps .step.active {
    color: #667eea;
    font-weight: 700;
}
.progress-steps .step .step-icon {
    font-size: 16px;
}

/* ===== کارت‌های آمار ===== */
.stat-card {
    background: #ffffff;
    padding: 24px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.12);
}
.stat-card .stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}
.stat-card .number {
    font-size: 34px;
    font-weight: 800;
    color: #1a2332;
}
.stat-card .label {
    color: #8a94a6;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== کارت‌های عمومی (بهبود) ===== */
.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    border: 1px solid rgba(102, 126, 234, 0.06);
    transition: box-shadow 0.3s ease;
}
.card:hover {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.08);
}
.card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card h4 i {
    color: #667eea;
}

/* ===== آیتم‌های درخواست ===== */
.application-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
    gap: 12px;
}
.application-item:last-child {
    border-bottom: none;
}
.application-item .title a {
    font-weight: 600;
    color: #1a2332;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.application-item .title a:hover {
    color: #667eea;
}
.application-item .company {
    color: #8a94a6;
    font-size: 13px;
    margin-top: 2px;
}
.application-item .app-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.application-item .status {
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 600;
}
.application-item .app-date {
    font-size: 11px;
    color: #b0b8c5;
}

/* ===== آیتم‌های پیشنهادات ===== */
.recommendation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
    gap: 12px;
}
.recommendation-item:last-child {
    border-bottom: none;
}
.recommendation-item .rec-title a {
    font-weight: 600;
    color: #1a2332;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.recommendation-item .rec-title a:hover {
    color: #667eea;
}
.recommendation-item .rec-company {
    color: #8a94a6;
    font-size: 13px;
}
.recommendation-item .rec-meta {
    font-size: 12px;
    color: #b0b8c5;
    margin-top: 3px;
}
.recommendation-item .rec-score {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}
.recommendation-item .rec-score.high {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}
.recommendation-item .rec-score.mid {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}

/* ===== دکمه‌های سریع ===== */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}
.quick-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}
.quick-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}
.btn-outline:hover {
    background: #667eea;
    color: #fff;
}
.btn-secondary {
    background: #f0f4ff;
    color: #667eea;
}
.btn-secondary:hover {
    background: #e0e8ff;
}

/* ===== وضعیت‌های درخواست ===== */
.status-pending {
    background: #fff8e1;
    color: #f57c00;
}
.status-reviewing {
    background: #e3f2fd;
    color: #0d47a1;
}
.status-accepted {
    background: #e8f5e9;
    color: #1b5e20;
}
.status-rejected {
    background: #fbe9e7;
    color: #b71c1c;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 32px 16px;
    color: #8a94a6;
}
.empty-state p {
    margin-bottom: 4px;
}
.empty-state .btn {
    margin-top: 12px;
}

/* ============================================
   ریسپانسیو
   ============================================ */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
    }
    .row3 {
        grid-template-columns: 1fr 1fr;
    }
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    .header-links a {
        margin-right: 10px;
        font-size: 12px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* ریسپانسیو کارت‌ها */
    .job-card {
        padding: 16px;
    }
    .job-header-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    .company-logo {
        width: 48px;
        height: 48px;
    }
    .job-title {
        font-size: 16px;
    }
    .job-info-row {
        gap: 8px 16px;
        font-size: 12px;
    }
    .btn-apply,
    .btn-view {
        font-size: 13px;
        padding: 8px 18px;
    }
    .urgent-badge {
        font-size: 10px;
        padding: 3px 12px;
        top: 10px;
        right: 12px;
    }
    .job-actions {
        justify-content: center;
    }
    
    /* ریسپانسیو FAQ */
    .faq-section {
        padding: 16px;
    }
    .faq-section .section-title {
        font-size: 18px;
    }
    .faq-item .faq-question {
        font-size: 14px;
    }
    .faq-item .faq-answer {
        font-size: 13px;
    }

    /* ===== ریسپانسیو داشبورد ===== */
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .profile-actions {
        justify-content: center;
    }
    .progress-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    .progress-steps .step {
        flex: none;
        padding: 2px 10px;
        font-size: 11px;
    }
    .recommendation-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .application-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .application-item .app-status {
        align-items: flex-start;
        width: 100%;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .stat-card .number {
        font-size: 26px;
    }
    .quick-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .job-card {
        padding: 14px;
    }
    .job-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .job-info-row {
        justify-content: center;
    }
    .job-actions {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
    .btn-apply,
    .btn-view {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* ریسپانسیو FAQ */
    .faq-section {
        padding: 12px;
    }
    .faq-section .section-title {
        font-size: 16px;
    }

    /* ===== ریسپانسیو داشبورد ===== */
    .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .profile-info .name {
        font-size: 18px;
    }
    .stats {
        grid-template-columns: 1fr 1fr !important;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-card .number {
        font-size: 22px;
    }
}