  /* ================================================================
           1. نظام الألوان والمتغيرات (CSS VARIABLES)
           ================================================================
        */
        :root {
            --main-color: #0056b3; /* الأزرق العميق */
            --accent-color: #ff6b00; /* البرتقالي الحيوي */
            --dark-color: #0d1b2a;
            --light-bg: #f8fbff;
            --white: #ffffff;
            --text-main: #333333;
            --text-muted: #666666;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
            --glass-bg: rgba(255, 255, 255, 0.95);
        }

        /* ================================================================
           2. التنسيقات العامة (GLOBAL STYLES)
           ================================================================
        */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none !important;
        }

        body {
            background-color: var(--light-bg);
            font-family: 'Cairo', sans-serif;
            color: var(--text-main);
            line-height: 2;
            overflow-x: hidden;
            /* خلفية متدرجة خفيفة جداً تملأ كامل الصفحة */
            background-image: 
                linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
        }

        a {
            transition: var(--transition);
            text-decoration: none;
            color: var(--main-color);
        }

        /* ================================================================
           3. الهيدر المفتوح (OPEN HEADER)
           ================================================================
        */
       .hero-section {
    padding: 100px 0 120px 0;
    /* لون جديد: تدرج سماوي فاتح واحترافي */
    background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
    color: #1e293b; /* لون نص كحلي داكن جداً للوضوح */
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; 
    gap: 40px;
    text-align: right;
}

.hero-image {
    flex: 1;
    text-align: center;
    /* تطبيق حركة الطفو هنا */
    animation: floatImage 4s ease-in-out infinite;
}

/* تعريف حركة الطفو (فوق وتحت) */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); } /* تتحرك للأعلى 20 بكسل */
    100% { transform: translateY(0px); }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* ظل ناعم للصورة */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.hero-text {
    flex: 1;
}

.hero-section h1 {
    font-family: 'Almarai', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #0369a1; /* لون أزرق براند احترافي */
}

.brand-logo-text {
    color: #0ea5e9;
    font-weight: bold;
}

/* التعديلات الخاصة بالموبايل */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column; /* الصورة فوق والكلام تحت في الموبايل */
        text-align: center;
    }
    
    .hero-section {
        padding: 60px 0 80px 0;
        clip-path: none; 
    }

    .hero-image img {
        max-width: 220px;
        margin-bottom: 30px;
    }
}

/* الأيقونات العائمة */
.floating-object {
    opacity: 0.07 !important;
    color: #00789f;
}

        .brand-logo-text {
            color: var(--accent-color);
            font-weight: 900;
            letter-spacing: 1px;
        }

        /* ================================================================
           4. نظام الأقسام المفتوحة (OPEN SECTIONS)
           ================================================================
        */
        .full-page-content {
            padding: 20px 0;
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-wrapper {
            margin-bottom: 80px;
            padding: 20px;
            transition: var(--transition);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            border-right: 6px solid var(--accent-color);
            padding-right: 20px;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin: 0;
        }

        .section-icon-box {
            width: 50px;
            height: 50px;
            background: var(--white);
            color: var(--main-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            box-shadow: var(--shadow);
            font-size: 1.3rem;
        }

        /* ================================================================
           5. قسم التطبيقات المميز (APP ZONE)
           ================================================================
        */
        .app-special-container {
            background: var(--white);
            border-radius: 30px;
            padding: 50px;
            box-shadow: var(--shadow);
            border-left: 8px solid var(--main-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .app-special-container::before {
            content: "\f3ab"; /* Google Play Icon */
            font-family: "Font Awesome 6 Brands";
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 15rem;
            opacity: 0.03;
            z-index: -1;
            transform: rotate(-15deg);
        }

        .app-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            background: var(--light-bg);
            padding: 20px;
            border-radius: 15px;
            transition: var(--transition);
        }

        .app-benefit-item:hover {
            transform: scale(1.02);
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .app-benefit-item i {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-top: 5px;
        }

        /* ================================================================
           6. الجداول المتقدمة (ADVANCED TABLES)
           ================================================================
        */
        .table-custom-wrapper {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .data-table-new {
            width: 100%;
            margin-bottom: 0;
        }

        .data-table-new thead {
            background-color: var(--dark-color);
            color: var(--white);
        }

        .data-table-new th {
            padding: 20px;
            font-weight: 700;
            border: none;
        }

        .data-table-new td {
            padding: 20px;
            vertical-align: middle;
            color: var(--text-muted);
            border-bottom: 1px solid #f1f1f1;
        }

        /* ================================================================
           7. أزرار التواصل والتفاعل (INTERACTIVE BUTTONS)
           ================================================================
        */
.contact-cta {
    background: linear-gradient(135deg, var(--main-color), #003d80);
    color: white !important;
    /* صغرنا الحشو */
    padding: 6px 16px; 
    border-radius: 50px;
    /* صغرنا الخط */
    font-size: 0.9rem; 
    font-weight: 600;
    display: inline-block;
    /* قللنا الظل شوية عشان ميبقاش ضخم على زرار صغير */
    box-shadow: 0 5px 10px rgba(0, 86, 179, 0.2); 
    border: 2px solid transparent;
    transition: all 0.3s ease; /* إضافة تنعيم للحركة */
}

.contact-cta:hover {
    background: var(--white);
    color: var(--main-color) !important;
    border-color: var(--main-color);
    transform: translateY(-3px); /* حركة أخف تناسب الحجم الصغير */
}

        /* ================================================================
           8. تحسينات التجاوب (RESPONSIVENESS)
           ================================================================
        */
        @media (max-width: 991px) {
            .full-page-content { padding: 0 15px; }
            .hero-section { padding: 100px 0 60px 0; }
        }

        @media (max-width: 576px) {
            .app-special-container { padding: 30px 20px; }
            .section-header h2 { font-size: 1.4rem; }
        }

        /* ================================================================
           9. إضافات جمالية (AESTHETIC DECORATIONS)
           ================================================================
        */
        .floating-object {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
            pointer-events: none;
        }

        .float-1 { top: 10%; right: 5%; animation: float 6s infinite ease-in-out; }
        .float-2 { bottom: 10%; left: 5%; animation: float 8s infinite ease-in-out; }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
