/* ==========================================================================
           3. ABOUT US (من نحن)
           ========================================================================== */
         :root {
            --primary: #f05a28;
            --secondary: #0f1e36;
            --text-muted: #475569;
        }

        .showcase-section {
            padding: 140px 6% 120px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .showcase-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 90px;
            align-items: center;
        }

        /* الصورة مع إطار فاخر وتأثير Hover لمعان */
        .showcase-visual-wrapper {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(15, 30, 54, 0.12);
        }

        .showcase-visual-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 40%;
            height: 200%;
            background: linear-gradient(
                135deg,
                transparent 40%,
                rgba(255,255,255,0.35) 50%,
                transparent 60%
            );
            transform: skewX(-25deg);
            transition: all 0.8s ease;
            opacity: 0;
            z-index: 2;
        }

        .showcase-visual-wrapper:hover::before {
            opacity: 1;
            left: 120%;
        }

        .showcase-main-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
            border-radius: 32px;
        }

        .showcase-visual-wrapper:hover .showcase-main-img {
            transform: scale(1.04);
        }

        /* إطار خارجي أنيق */
        .showcase-visual-wrapper::after {
            content: '';
            position: absolute;
            inset: -6px;
            border: 2px solid rgba(240, 90, 40, 0.15);
            border-radius: 38px;
            pointer-events: none;
            z-index: 1;
        }

        /* النص */
        .showcase-info {
            text-align: right;
        }

        .showcase-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary);
            background: rgba(240, 90, 40, 0.1);
            padding: 8px 24px;
            border-radius: 50px;
        }

        .showcase-title {
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1.25;
            margin: 28px 0 24px;
        }

        .showcase-title span {
            color: var(--primary);
        }

        .showcase-desc {
            font-size: 1.18rem;
            line-height: 1.85;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .btn-genius {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 19px 46px;
            background: var(--secondary);
            color: white;
            font-size: 1.13rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 16px;
            transition: all 0.4s ease;
        }

        .btn-genius:hover {
            background: var(--primary);
            transform: translateY(-4px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .showcase-container {
                grid-template-columns: 1fr;
                gap: 70px;
                text-align: center;
            }
            .showcase-info {
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .showcase-section {
                padding: 90px 5% 80px;
            }
            .showcase-title {
                font-size: 2.2rem;
            }
        }