﻿/* Shortcuts Component */

            /* ── Shortcuts Section ──────────────────────────── */
            .sc-section { padding: 80px 0; }
            .sc-head    { margin-bottom: 52px; }

            /* Badge — يستخدم اللون الثانوي من لوحة التحكم */
            .sc-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: var(--secondary-color);
                color: #fff;
                padding: 6px 22px;
                border-radius: 50px;
                font-size: 0.8rem;
                font-weight: 600;
                margin-bottom: 16px;
                letter-spacing: 0.4px;
            }
            .sc-badge i { font-size: 0.78rem; opacity: 0.85; }

            /* عنوان القسم */
            .sc-main-title {
                font-size: 2.1rem;
                font-weight: 800;
                line-height: 1.3;
                margin: 0;
            }

            /* ── البطاقة ─────────────────────────────────────── */
            .sc-card {
                background: #ffffff;
                border-radius: 22px;
                padding: 36px 24px 28px;
                height: 100%;
                position: relative;
                overflow: hidden;
                transition: transform 0.35s ease, box-shadow 0.35s ease;
                box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 0 0 1.5px rgba(0,0,0,0.05);
            }

            /* شريط علوي بالتدرج بين اللونين الأساسي والثانوي */
            .sc-card::before {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
                opacity: 0;
                transition: opacity 0.35s ease;
            }

            .sc-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 24px 60px rgba(0,0,0,0.09), 0 0 0 2px var(--primary-color);
            }
            .sc-card:hover::before { opacity: 1; }

            /* رقم زخرفي — اللون الثانوي */
            .sc-num {
                position: absolute;
                top: 14px;
                right: 18px;
                font-size: 3.8rem;
                font-weight: 900;
                color: var(--secondary-color);
                opacity: 0.06;
                line-height: 1;
                user-select: none;
                transition: opacity 0.3s ease;
                font-family: sans-serif;
            }
            .sc-card:hover .sc-num { opacity: 0.12; }

            /* مربع الأيقونة — اللون الأساسي */
            .sc-icon-wrap {
                width: 64px;
                height: 64px;
                border-radius: 16px;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 22px;
                transition: transform 0.4s ease;
                overflow: hidden;
                color: var(--primary-color);
            }
            .sc-icon-bg {
                position: absolute;
                inset: 0;
                background: var(--primary-color);
                opacity: 0.1;
                border-radius: inherit;
                transition: opacity 0.35s ease, background 0.35s ease;
            }
            .sc-icon-wrap i {
                position: relative;
                font-size: 1.65rem;
                z-index: 1;
                transition: color 0.35s ease, transform 0.4s ease;
            }

            .sc-card:hover .sc-icon-wrap   { transform: rotate(-6deg) scale(1.08); }
            .sc-card:hover .sc-icon-bg     { opacity: 1; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }
            .sc-card:hover .sc-icon-wrap i { color: #fff; transform: rotate(6deg); }

            /* فاصل بتدرج الألوان */
            .sc-divider {
                width: 36px;
                height: 3px;
                background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
                border-radius: 2px;
                margin-bottom: 14px;
                opacity: 0.3;
                transition: width 0.3s ease, opacity 0.3s ease;
            }
            .sc-card:hover .sc-divider { width: 58px; opacity: 0.8; }

            /* نصوص البطاقة */
            .sc-card-title {
                font-size: 1.1rem;
                font-weight: 700;
                color: var(--secondary-color);
                margin-bottom: 10px;
                transition: color 0.3s ease;
            }
            .sc-card:hover .sc-card-title { color: var(--primary-color); }

            .sc-card-desc {
                font-size: 0.875rem;
                color: #64748b;
                line-height: 1.75;
                margin: 0;
            }
