    /* 1. Global Variables & Settings */
    :root {
        --primary-dark: #1a1a3d;
        --accent-orange: #e85021;
        --bg-light: #f9f9f9;
        --text-grey: #555;
        --card-bg-navy: #1b233d;
    }

    /* 2. Hero Section */
    .web-hero {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f3f5f9 100%);
        border-bottom: 1px solid #eee;
    }
    .hero-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-dark);
        margin-bottom: 20px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--text-grey);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 90%;
    }
    /* Hero Image Filter to match theme */
    .hero-img {
        max-width: 100%;
        height: auto;
        transition: transform 0.5s;
        /* فلتر لتحويل ألوان الصورة (إذا كانت ملونة) إلى درجات الأزرق والكحلي */
        filter: sepia(100%) hue-rotate(190deg) saturate(150%) brightness(0.9);
    }
    .hero-img:hover { transform: translateY(-10px); }

    .btn-custom {
        background-color: var(--accent-orange);
        color: #fff;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
    }
    .btn-custom:hover {
        background-color: #d34418;
        color: #fff;
        transform: translateY(-3px);
    }

    /* 3. Features Grid */
    .features-section { padding: 60px 0; }
    .section-header { text-align: center; margin-bottom: 50px; }
    .section-header h2 {
        font-size: 2.2rem; color: var(--primary-dark); font-weight: 800;
        position: relative; display: inline-block; margin-bottom: 15px;
    }
    .section-header h2::after {
        content: ''; width: 60px; height: 4px; background: var(--accent-orange);
        position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); border-radius: 2px;
    }
    .section-header p { color: var(--text-grey); }

    .feature-box {
        background: #fff; padding: 30px; border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee;
        text-align: center; transition: 0.3s; height: 100%;
    }
    .feature-box:hover { transform: translateY(-5px); border-bottom: 4px solid var(--accent-orange); }
    .feature-icon {
        width: 70px; height: 70px; background: rgba(26, 26, 61, 0.05);
        color: var(--primary-dark); border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 20px; font-size: 1.8rem;
    }
    .feature-box:hover .feature-icon { background: var(--accent-orange); color: #fff; }

    /* 4. Portfolio Section */
    .portfolio-section { background-color: #f8f9fa; padding: 60px 0; }
    .portfolio-item {
        position: relative; border-radius: 15px; overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); height: 260px;
        cursor: pointer; background-color: #e0e0e0; /* لون احتياطي */
    }
    .portfolio-item img {
        width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
    }
    .portfolio-overlay {
        position: absolute; bottom: -100%; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(26, 26, 61, 0.95), rgba(26, 26, 61, 0.2));
        display: flex; flex-direction: column; justify-content: flex-end;
        padding: 20px; transition: 0.4s;
    }
    .portfolio-item:hover .portfolio-overlay { bottom: 0; }
    .portfolio-item:hover img { transform: scale(1.1); }
    .project-title { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0; }
    .project-cat { color: var(--accent-orange); font-size: 0.9rem; font-weight: 600; }

    /* =========================================
       5. Pricing Section (THE FIX: Daleel Style)
       ========================================= */
    .pricing-wrapper { padding: 60px 0; background-color: #fff; }
    
    .pricing-card {
        width: 100%;
        max-width: 380px; /* العرض المثالي */
        margin: 0 auto;
        border-radius: 20px;
        background-color: var(--card-bg-navy) !important; /* خلفية كحلي */
        padding: 5px !important; /* حشوة الإطار الخارجي */
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: none !important;
        transition: transform 0.3s;
    }
    .pricing-card:hover { transform: scale(1.02); }

    /* الجزء العلوي (Header) */
    .pricing-top {
        height: 150px; /* الارتفاع المطلوب (مثل الصورة 2) */
        background: linear-gradient(45deg, rgb(4, 159, 187) 0%, rgb(80, 246, 255) 100%) !important;
        position: relative;
        border-radius: 15px; /* زوايا دائرية داخلية */
        display: flex;
        flex-direction: column;
    }

    /* اللسان المائل (Tab) */
    .pricing-tab {
        border-bottom-right-radius: 10px;
        height: 30px; 
        width: 40%;
        background: var(--card-bg-navy);
        position: absolute; 
        top: 0; 
        left: 0; 
        transform: skew(-40deg);
        transform-origin: top left;
        z-index: 2;
        box-shadow: -10px -10px 0 0 var(--card-bg-navy);
    }
    
    /* ديكور اللسان */
    .pricing-tab::before {
        content: ""; position: absolute; width: 15px; height: 15px;
        top: 0; right: -15px; background: transparent;
        border-top-left-radius: 10px; box-shadow: -5px -5px 0 2px var(--card-bg-navy);
    }
    .pricing-top::before {
        content: ""; position: absolute; top: 30px; left: 0;
        background: transparent; height: 15px; width: 15px;
        border-top-left-radius: 15px; box-shadow: -5px -5px 0 2px var(--card-bg-navy);
        z-index: 2;
    }

    /* العنوان داخل اللسان */
    .pricing-title {
        position: absolute; top: 0; left: 0; width: 100%; height: 30px; z-index: 3;
        padding-left: 15px; display: flex; align-items: center;
    }
    .pricing-title span {
        color: #f0f0f0; font-weight: 800; font-size: 1rem; text-transform: uppercase;
        margin-top: -3px; /* ضبط دقيق للمحاذاة */
    }

    /* السعر */
    .pricing-price {
        margin-top: 45px; /* مسافة للأسفل ليبتعد عن اللسان */
        text-align: center; color: var(--primary-dark);
        display: flex; justify-content: center; align-items: baseline; 
        position: relative; z-index: 1;
    }
    .pricing-amount { 
        font-size: 3rem; 
        font-weight: 800; 
        line-height: 1; 
        color: var(--primary-dark);
    }
    .pricing-riyal { width: 25px; margin: 0 5px; }
    
    /* جملة Starting From */
    .pricing-start-from {
        text-align: center;
        margin-top: 5px;
        font-size: 0.85rem;
        color: #333;
        font-weight: 600;
        opacity: 0.8;
    }

    /* جسم الكارت (الجدول) */
    .pricing-body { padding: 15px; color: #fff; display: flex; flex-direction: column; }
    .pricing-table { width: 100%; margin-bottom: 15px; margin-top: 10px; }
    .pricing-table td {
        padding: 8px 0; /* مسافة مريحة بين السطور */
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem; color: #e0e0e0; vertical-align: middle;
    }
    .pricing-table tr:last-child td { border-bottom: none; }
    .check-icon { color: #4cd137; font-size: 1.1rem; }

    /* الزر */
    .pricing-btn {
        display: block; width: 100%; background: var(--accent-orange);
        color: #fff; text-align: center; padding: 12px;
        border-radius: 8px; font-weight: 700; text-decoration: none;
        font-size: 1rem; transition: 0.3s; margin-top: auto;
    }
    .pricing-btn:hover { background: #fff; color: var(--accent-orange); }

    /* الشارة (Best Value) */
    .badge-best {
        position: absolute; top: 50px; left: 0;
        background: var(--accent-orange); color: #fff;
        padding: 4px 15px; font-size: 0.8rem; font-weight: bold;
        border-radius: 0 15px 15px 0; box-shadow: 2px 2px 5px rgba(0,0,0,0.2); z-index: 5;
    }


/* =========================================
   تنسيق ملاحظات أسفل الأسعار
   ========================================= */

/* خط فاصل خفيف */
.pricing-footer-divider {
    border-top: 1px solid #e0e0e0;
    margin: 40px auto 30px; 
    width: 90%; /* لا يملأ الشاشة بالكامل */
}

.pricing-notes {
    color: #666; /* لون رمادي للنص */
    font-size: 0.9rem; /* حجم خط مناسب للملاحظات */
    margin-bottom: 50px;
}

.notes-list {
    list-style: none; /* إزالة النقاط الافتراضية */
    padding: 0;
    margin: 0;
}

.notes-list li {
    position: relative;
    padding-left: 20px; /* مسافة لترك مكان للنقطة الملونة */
    margin-bottom: 12px; /* مسافة بين السطور */
    line-height: 1.6;
}

/* تصميم النقطة الملونة (Custom Bullet) */
.notes-list li::before {
    content: "•"; /* رمز النقطة */
    color: #e85021; /* اللون البرتقالي الخاص بدليل */
    font-weight: bold;
    font-size: 1.2rem; /* حجم النقطة */
    position: absolute;
    left: 0;
    top: -2px; /* ضبط المحاذاة مع النص */
}

/* تحسين العرض في الموبايل */
@media (max-width: 768px) {
    .pricing-footer-divider {
        margin: 30px auto 20px;
    }
    
    .notes-list li {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
}
