/* ===========================
   Slide 24 — Complaints & Quality Assurance
   =========================== */
.slide-24 {
    background: radial-gradient(ellipse at 70% 50%, #1a1205 0%, #100b03 60%, #050301 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.glow-complaint-center {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.gold-text {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.slide-layout-two-col {
    display: flex;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* بطاقة المستثمر */
.investor-note {
    background: linear-gradient(90deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.02) 100%);
    border-right: 4px solid var(--gold);
    padding: 18px 20px;
    border-radius: 12px 0 0 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.premium-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.p-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .p-feature:hover {
        background: rgba(255,255,255,0.03);
        border-color: rgba(255,255,255,0.08);
        transform: translateX(-5px);
    }

/* الواجهة التخيلية (Complaints Mockup) */
.complaint-mockup {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    direction: rtl;
}

    .complaint-mockup:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

.mockup-header {
    background: rgba(0,0,0,0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-title {
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
}

.complaint-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ملخص الدعم */
.support-summary {
    display: flex;
    gap: 12px;
}

.s-card {
    flex: 1;
    background: rgba(34,197,94,0.05);
    border: 1px solid rgba(34,197,94,0.1);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.s-val {
    display: block;
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 900;
}

.s-lbl {
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
}

/* صندوق التذكرة */
.ticket-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 12px;
}

.t-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.t-id {
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
}

.t-priority.high {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.t-subject {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 800;
}

/* خطوات التذكرة */
.t-status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.t-status-step {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    flex: 1;
}

    .t-status-step.done {
        color: #22c55e;
        font-weight: bold;
    }

    .t-status-step.active {
        color: #f59e0b;
        font-weight: bold;
    }

.t-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}

.t-assigned {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.resolve-btn {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: bold;
    cursor: pointer;
}

/* شارة التحليل الذكي */
.root-cause-badge {
    background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.02) 100%);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-icon {
    font-size: 1.5rem;
}

.root-cause-badge strong {
    display: block;
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.root-cause-badge span {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .slide-layout-two-col {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .complaint-mockup {
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}
