/* ============================================================
   تنسيق الحاسوب الملحمي النهائي - مؤسسة بيت اللمسة
   المميزات: خدمات فضية شفافة + شعارات ذهبية + خانات منبثقة عريضة
   ============================================================ */

@media screen and (min-width: 1024px) {
    
    /* 1. ضبط الجسم وتوهج الأقسام العام */
    body {
        background: var(--silver-grad);
        background-attachment: fixed;
        padding-bottom: 0 !important;
    }

    /* توهج ذهبي عميق على حواف كل الأقسام الرئيسية */
    header, .mobile-hero, .m-service-card, .article-card, #dynamic-content {
        border: 1px solid rgba(183, 131, 28, 0.3) !important;
        box-shadow: 0 0 20px rgba(101, 71, 11, 0.4) !important;
    }

    main {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* 2. الهيدر الملكي */
    header {
        width: 90% !important;
        max-width: 1150px;
        margin: 25px auto !important;
        padding: 15px 50px !important;
        border-radius: 100px !important;
        justify-content: space-between !important;
        background: var(--gold-grad) !important;
        position: sticky;
        top: 20px;
        z-index: 2000;
    }

    /* 3. عنوان الهيرو (تأثير المرآة الضخم) */
    .mobile-hero {
        height: 650px !important;
        width: 100% !important;
        border-radius: 50px !important;
        margin: 40px 0 !important;
    }

    .hero-overlay h2 { 
        font-size: 4.5rem !important; 
        font-weight: 900 !important;
        background: linear-gradient(to bottom, #fff 50%, rgba(255,255,255,0.2) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
        line-height: 1.2;
    }

    /* 4. شبكة الخدمات (فضي شفاف بدقة عالية + شعارات ذهبية موحدة) */
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 35px !important;
        padding: 50px 0 !important;
    }

    .m-service-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(207, 216, 220, 0.2)) !important;
        backdrop-filter: blur(15px) !important;
        border-radius: 40px !important;
        padding: 40px !important;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* توحيد الشعارات بالثيم الذهبي المشرق (طلب الصورة 2) */
    .m-service-card .m-icon-box {
        background: var(--gold-grad) !important;
        border: 2px solid white !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* حركة المس */
    .m-service-card:hover {
        transform: translateY(-20px) !important;
        box-shadow: 0 30px 60px rgba(101, 71, 11, 0.5) !important;
    }

    /* الكارت الرابع العريض بنفس النمط الفضي */
    .m-service-card:nth-child(4) {
        grid-column: 1 / span 3 !important;
        flex-direction: row !important;
        text-align: right !important;
        padding: 50px 80px !important;
        justify-content: flex-start !important;
    }

    .m-service-card:nth-child(4) .m-icon-box {
        margin: 0 0 0 50px !important;
    }

    /* 5. ضبط المقالات (طلب الصورة 1) لضمان التناسق الهندسي */
    .blog-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
        margin-bottom: 60px !important;
    }

    .article-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .card-img-box img {
        height: 300px !important;
        object-fit: cover !important;
    }

    /* 6. حل مشكلة الخانات المنبثقة (طلب الصورة 3) لتملأ الشاشة */
    #dynamic-content {
        max-width: 1100px !important; /* جعل المحتوى عريضاً وفخماً */
        width: 90% !important;
        margin: 40px auto !important;
        padding: 60px !important;
        border-radius: 50px !important;
        background: white !important;
        box-shadow: 0 30px 100px rgba(0,0,0,0.3) !important;
    }

    #dynamic-content .article-page-img {
        width: 100% !important;
        max-height: 550px !important;
        object-fit: cover !important;
        border-radius: 30px !important;
    }

    /* 7. أحدث المشاريع */
    .mobile-slider {
        justify-content: center !important;
        gap: 30px !important;
    }

    .mobile-slider img {
        width: 350px !important;
        height: 450px !important;
    }

    /* 8. إخفاء عناصر الموبايل */
    .m-bottom-nav { display: none !important; }
}