/* ==========================================================
   ۱. نوار راهبری بالا
   ================================================---------- */
.kj-top-navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    font-family: inherit !important;
}

.kj-breadcrumb-path {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit !important;
}

.kj-breadcrumb-path a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
}

.kj-breadcrumb-path a:hover {
    text-decoration: underline;
}

.kj-breadcrumb-path .kj-sep {
    color: #cbd5e1;
}

.kj-breadcrumb-path .kj-current-leaf {
    color: #1e293b;
    font-weight: 800;
}

.kj-btn-back-courses {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    transition: all 0.2s ease;
    font-family: inherit !important;
}

.kj-btn-back-courses:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* ==========================================================
   ۲. نوار کنترل بالای گرید دوره‌ها
   ================================================---------- */
.kj-unified-control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    font-family: inherit !important;
}

.kj-unified-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.kj-cat-tab-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: inherit !important;
}

.kj-cat-tab-btn:hover {
    background: #f1f5f9;
    color: #0284c7;
    border-color: #cbd5e1;
}

.kj-cat-tab-btn.active {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.kj-unified-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.kj-unified-search {
    position: relative;
    width: 220px;
    flex-shrink: 0;
}

.kj-unified-search i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
}

.kj-unified-search input {
    width: 100%;
    padding: 7px 34px 7px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 12px;
    outline: none;
    background: #f8fafc;
    box-sizing: border-box;
    transition: all 0.2s ease;
    font-family: inherit !important;
}

.kj-unified-search input:focus {
    background: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.15);
}

.kj-counter-badge {
    font-size: 11.5px;
    color: #64748b;
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 12px;
    white-space: nowrap;
    font-family: inherit !important;
}

#kj-sort-select {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 12px;
    background: #f8fafc;
    color: #334155;
    outline: none;
    cursor: pointer;
    font-family: inherit !important;
}

#kj-sort-select option {
    font-family: inherit !important;
    background: #ffffff;
    color: #334155;
}

@media (max-width: 850px) {
    .kj-unified-control-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .kj-unified-search {
        width: 100%;
    }
    .kj-unified-meta {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* ==========================================================
   ۳. گرید و کارت‌های دوره‌ها
   ================================================---------- */
.kj-courses-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)) !important;
    gap: 22px !important;
    width: 100% !important;
}

.kj-course-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kj-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.18);
    border-color: #e0f2fe;
}

.kj-course-card.kj-hidden-card {
    display: none !important;
}

.kj-card-thumb {
    position: relative !important;
    width: 100% !important;
    height: 155px !important;
    background: #f1f5f9 !important;
    overflow: visible !important;
}

.kj-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px 14px 0 0 !important;
}

.kj-thumb-cat-badge {
    position: absolute;
    top: 9px;
    right: 9px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 10.5px;
    padding: 2px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.kj-thumb-bottom-bar {
    position: absolute;
    bottom: 8px;
    right: 8px;
    left: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.kj-instructor-slide-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    padding: 3px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    pointer-events: auto;
    cursor: pointer;
    overflow: hidden;
    max-width: 34px;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.kj-instructor-slide-pill img {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0;
}

.kj-instructor-name-slide {
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
    margin-right: 7px;
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-family: inherit !important;
}

.kj-instructor-slide-pill:hover {
    max-width: 170px;
}

.kj-instructor-slide-pill:hover .kj-instructor-name-slide {
    opacity: 1;
}

.kj-mini-meta-icons {
    display: flex;
    gap: 5px;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.kj-mini-icon {
    position: relative;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit !important;
}

.kj-mini-icon i {
    font-size: 13px !important;
    width: 13px !important;
    height: 13px !important;
    line-height: 1 !important;
}

.kj-mini-icon:hover {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.1);
}

.kj-mini-icon[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    right: 50%;
    transform: translateX(50%);
    background: #0f172a;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    font-family: inherit !important;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 99999;
}

.kj-mini-icon[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    right: 50%;
    transform: translateX(50%);
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 99999;
}

.kj-mini-icon[data-tooltip]:hover::after,
.kj-mini-icon[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.kj-card-body {
    padding: 13px 15px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: space-between !important;
}

.kj-card-title {
    margin: 0 0 12px 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.6 !important;
    min-height: 42px !important;
    font-family: inherit !important;
}

.kj-btn-open-player {
    display: block !important;
    width: 100% !important;
    background: #0284c7 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
    font-family: inherit !important;
}

.kj-course-card:hover .kj-btn-open-player {
    background: #059669 !important;
}

/* ==========================================================
   ۴. صفحه پلیر، ویدیو و سایدبار
   ================================================---------- */
.kj-player-wrapper.rtl-curriculum-right .kj-player-body {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    min-height: 560px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

@media (max-width: 950px) {
    .kj-player-wrapper.rtl-curriculum-right .kj-player-body {
        grid-template-columns: 1fr;
    }
}

.kj-sidebar-curriculum {
    background: #f8fafc;
    border-left: 1px solid #e2e8f0;
    padding: 20px;
    order: 1;
}

.kj-main-content {
    padding: 25px;
    order: 2;
}

.kj-enrollment-action-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.kj-btn-enroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13.5px;
    border: unset;
    cursor: pointer;
    box-sizing: border-box;
    font-family: inherit !important;
}

.kj-btn-start {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.kj-btn-start:hover { background: #059669; color: #fff; }

.kj-btn-login {
    background: #2563eb;
    color: #fff;
}
.kj-btn-login:hover { background: #1d4ed8; color: #fff; }

.kj-enrolled-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    padding: 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-family: inherit !important;
}

.kj-video-under-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.kj-video-under-title i {
    font-size: 24px;
    color: #0284c7;
}

.kj-video-under-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    font-family: inherit !important;
}

.kj-video-container {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 56.25% !important;
    background: #000000 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.kj-video-container video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #000000 !important;
    outline: none !important;
}

.kj-video-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
}

.kj-video-locked-overlay i {
    font-size: 48px;
    margin-bottom: 12px;
    color: #f87171;
}

.kj-lesson-row.is-locked-lesson {
    background: #f8fafc;
    opacity: 0.6;
    cursor: not-allowed !important;
}

.kj-lock-tag {
    background: #fee2e2;
    color: #ef4444;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: auto;
}

.kj-accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.kj-accordion-head {
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 13px;
    background: #f1f5f9;
}

.kj-lessons-ul { list-style: none; margin: 0; padding: 0; }
.kj-lesson-row {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-top: 1px solid #f1f5f9;
    cursor: pointer;
    gap: 10px;
}
.kj-lesson-row:hover:not(.is-locked-lesson), .kj-lesson-row.current-playing { background: #e0f2fe; }

.kj-tabs-container { margin-top: 20px; }
.kj-tabs-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    border-bottom: 2px solid #f1f5f9;
}
.kj-tabs-nav li {
    padding-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #64748b;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.kj-tabs-nav li.active { color: #0284c7; border-color: #0284c7; }
.kj-tab-pane { display: none; }
.kj-tab-pane.active { display: block; }

.kj-description-rich-content {
    color: #334155;
    line-height: 1.8;
    font-size: 13.5px;
}
.kj-description-rich-content p { margin: 0 0 10px 0 !important; }
.kj-description-rich-content ul, 
.kj-description-rich-content ol { margin: 8px 20px 14px 0 !important; padding: 0 !important; }
.kj-description-rich-content li { margin-bottom: 5px !important; line-height: 1.7 !important; }

/* ==========================================================
   ۵. کارت‌های چهارگانه پیوست
   ================================================---------- */
.kj-attachments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.kj-attach-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.kj-attach-card:hover {
    border-color: #0284c7;
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.kj-attach-card.is-disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(1);
}

.badge-pdf    { background: #fee2e2; color: #dc2626; padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 11px; }
.badge-mp3    { background: #f3e8ff; color: #7e22ce; padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 11px; }
.badge-ppt    { background: #ffedd5; color: #ea580c; padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 11px; }
.badge-helper { background: #e0f2fe; color: #0369a1; padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 11px; }

/* ==========================================================
   ۶. پیش‌نمایش ویدیوها به تفکیک فصل
   ================================================---------- */
.kj-preview-grid-container {
    background: #ffffff;
    padding: 20px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
}

.kj-preview-grid-header {
    display: none !important;
}

.kj-section-preview-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.kj-section-preview-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.kj-section-preview-title {
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    margin: 10px 0 15px 0 !important;
    padding-right: 10px !important;
    border-right: 3px solid #0284c7 !important;
}

.kj-videos-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.kj-video-preview-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.kj-video-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -5px rgba(2, 132, 199, 0.2);
    border-color: #38bdf8;
}

.kj-preview-thumb-box {
    position: relative;
    width: 100%;
    height: 130px;
    background: #0f172a;
    overflow: hidden;
}

.kj-preview-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.kj-video-preview-card:hover .kj-preview-thumb-box img {
    transform: scale(1.05);
    opacity: 0.9;
}

.kj-preview-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(2, 132, 199, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.kj-video-preview-card:hover .kj-preview-overlay-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.kj-video-preview-card.is-preview-locked .kj-preview-overlay-icon {
    background: rgba(239, 68, 68, 0.85);
}

.kj-preview-title-bar {
    padding: 12px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.kj-preview-title-bar span {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
}

/* باکس تبریک و هدایت مسیر */
.jahat-completion-page {
    padding: 10px;
    font-family: inherit;
}
.jahat-congrats-banner {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 25px;
}
.jahat-congrats-banner h2 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 800;
}
.jahat-congrats-banner p {
    margin: 0;
    color: #a7f3d0;
    font-size: 15px;
}
.jahat-pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.jahat-path-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.jahat-path-card.highlight {
    border-color: #f59e0b;
    background: #fffdfa;
}
.jahat-path-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
}
.jahat-path-badge.gold {
    background: #fef3c7;
    color: #d97706;
}
.jahat-path-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.5;
}
.jahat-path-intro {
    color: #64748b;
    font-size: 13.5px;
    margin-bottom: 18px;
    line-height: 1.6;
}
.jahat-path-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 15px 0 8px 0;
}
.jahat-path-card ul {
    margin: 0;
    padding-right: 20px;
    color: #475569;
    font-size: 13px;
    line-height: 1.8;
}

/* باکس تبریک و هدایت مسیر */
.jahat-completion-page {
    padding: 10px 0;
    font-family: inherit;
    width: 100%;
}
.jahat-congrats-banner {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.2);
}
.jahat-congrats-banner h2 {
    color: #fff !important;
    margin: 0 0 10px 0;
    font-size: 21px;
    font-weight: 800;
}
.jahat-congrats-banner p {
    margin: 0;
    color: #a7f3d0;
    font-size: 14.5px;
}
.jahat-pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.jahat-path-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.jahat-path-card.highlight {
    border-color: #f59e0b;
    background: #fffdfa;
}
.jahat-path-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
}
.jahat-path-badge.gold {
    background: #fef3c7;
    color: #d97706;
}
.jahat-path-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.5;
}
.jahat-path-intro {
    color: #64748b;
    font-size: 13.5px;
    margin-bottom: 18px;
    line-height: 1.6;
}
.jahat-path-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 15px 0 8px 0;
}
.jahat-path-card ul {
    margin: 0;
    padding-right: 20px;
    color: #475569;
    font-size: 13px;
    line-height: 1.8;
}

/* بخش دکمه ارتباط با کارشناس */
.jahat-support-section {
  margin-top: 30px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
}

.jahat-support-section h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 15px 0;
}

.jahat-eitaa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ea580c;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.jahat-eitaa-btn:hover {
  background-color: #c2410c;
  transform: translateY(-2px);
  color: #ffffff !important;
}

.jahat-eitaa-btn .eitaa-icon {
  font-size: 18px;
}