.elementor-1102 .elementor-element.elementor-element-f127b23:not(.elementor-motion-effects-element-type-background), .elementor-1102 .elementor-element.elementor-element-f127b23 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-1102 .elementor-element.elementor-element-f127b23{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:0px 0px 0px 0px;}.elementor-1102 .elementor-element.elementor-element-f127b23 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS */:root {
        --primary-black: #1a1a1a;
        --matte-gold: #d4af37;
        --gold-dark: #b8941f;
        --gold-light: #e8c968;
        --text-white: #f5f5f5;
        --text-gray: #cccccc;
        --bg-dark: #0f0f0f;
        --border-gold: rgba(212, 175, 55, 0.3);
        --shadow-gold: rgba(212, 175, 55, 0.15);
    }

    /* ========================================
   إعادة تعيين وتنسيق عام
======================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .laser-article {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-black) 100%);
        color: var(--text-white);
        line-height: 1.8;
        padding: 0;
        direction: rtl;
        text-align: right;
    }

    .laser-article * {
        direction: rtl;
    }

    /* ========================================
   الحاوية الرئيسية
======================================== */
    .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* ========================================
   المقدمة السريعة (Answer-First)
======================================== */
    .quick-answer {
        background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
        border: 2px solid var(--matte-gold);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 40px;
        box-shadow: 0 8px 30px var(--shadow-gold);
        position: relative;
        overflow: hidden;
    }

    .quick-answer::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
        animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    .quick-answer-content {
        position: relative;
        z-index: 1;
    }

    .quick-answer h2 {
        display: none;
        /* سيتم إضافة H2 بواسطة Elementor */
    }

    .quick-answer p {
        font-size: 1.15rem;
        line-height: 2;
        color: var(--text-white);
        margin: 0;
    }

    .quick-answer strong {
        color: var(--matte-gold);
        font-weight: 700;
        font-size: 1.25rem;
    }

    /* ========================================
   صندوق المراجعة الطبية
======================================== */
    .medical-review {
        background: var(--primary-black);
        border: 3px double var(--matte-gold);
        border-radius: 12px;
        padding: 35px;
        margin: 40px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .doctor-image-container {
        flex-shrink: 0;
    }

    .doctor-image {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 4px solid var(--matte-gold);
        object-fit: cover;
        box-shadow: 0 5px 20px var(--shadow-gold);
    }

    .review-content {
        flex: 1;
    }

    .review-header {
        text-align: center;
        color: var(--matte-gold);
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-gold);
    }

    .doctor-info {
        margin: 20px 0;
    }

    .doctor-name {
        color: var(--gold-light);
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 15px;
        text-align: center;
    }

    .doctor-titles {
        list-style: none;
        padding-right: 20px;
    }

    .doctor-titles li {
        color: var(--text-gray);
        margin: 8px 0;
        padding-right: 25px;
        position: relative;
    }

    .doctor-titles li::before {
        content
        color: var(--matte-gold);
        font-size: 1.5rem;
        position: absolute;
        right: 0;
        top: -5px;
    }

    .credentials-section {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid var(--border-gold);
    }

    .credentials-title {
        color: var(--matte-gold);
        font-weight: bold;
        margin-bottom: 12px;
    }

    .credentials-list {
        list-style: none;
        padding-right: 20px;
    }

    .credentials-list li {
        color: var(--text-gray);
        margin: 8px 0;
        padding-right: 25px;
        position: relative;
        font-size: 0.95rem;
    }

    .credentials-list li::before {
        color: var(--matte-gold);
        font-weight: bold;
        position: absolute;
        right: 0;
    }

    .last-update {
        text-align: center;
        color: var(--text-gray);
        font-size: 0.9rem;
        margin-top: 25px;
        padding-top: 15px;
        border-top: 2px solid var(--border-gold);
    }

    /* تنسيق متجاوب للمراجعة الطبية */
    @media (max-width: 768px) {
        .medical-review {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .doctor-image {
            width: 150px;
            height: 150px;
        }

        .doctor-titles,
        .credentials-list {
            text-align: right;
        }
    }

    /* ========================================
   جدول المحتويات
======================================== */
    .table-of-contents {
        background: linear-gradient(to bottom, #1a1a1a 0%, #252525 100%);
        border: 2px solid var(--matte-gold);
        border-radius: 12px;
        padding: 30px;
        margin: 40px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .toc-title {
        color: var(--matte-gold);
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-gold);
    }

    .toc-list {
        list-style: none;
        padding: 0;
    }

    .toc-list>li {
        margin: 12px 0;
        padding-right: 30px;
        position: relative;
        color: var(--text-white);
        font-size: 1.05rem;
        transition: all 0.3s ease;
    }

    .toc-list>li::before {
        content: '├─';
        position: absolute;
        right: 0;
        color: var(--matte-gold);
        font-family: monospace;
    }

    .toc-list>li:last-child::before {
        content: '└─';
    }

    .toc-list>li:hover {
        color: var(--matte-gold);
        padding-right: 35px;
    }

    .toc-sublist {
        list-style: none;
        margin-top: 8px;
        padding-right: 40px;
    }

    .toc-sublist li {
        margin: 6px 0;
        padding-right: 25px;
        position: relative;
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    .toc-sublist li::before {
        content: '├─';
        position: absolute;
        right: 0;
        color: var(--gold-dark);
        font-family: monospace;
        font-size: 0.9rem;
    }

    .toc-sublist li:last-child::before {
        content: '└─';
    }

    /* ========================================
   العناوين
======================================== */
    .section-title {
        color: var(--matte-gold);
        font-size: 1.8rem;
        font-weight: bold;
        margin: 50px 0 25px 0;
        padding-bottom: 15px;
        border-bottom: 3px solid var(--matte-gold);
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -3px;
        right: 0;
        width: 100px;
        height: 3px;
        background: var(--gold-light);
    }

    .subsection-title {
        color: var(--gold-light);
        font-size: 1.4rem;
        font-weight: bold;
        margin: 35px 0 20px 0;
        padding-right: 20px;
        border-right: 4px solid var(--matte-gold);
    }

    .sub-subsection-title {
        color: var(--text-white);
        font-size: 1.2rem;
        font-weight: bold;
        margin: 25px 0 15px 0;
        padding-right: 15px;
        border-right: 3px solid var(--gold-dark);
    }

    /* ========================================
   الفقرات والنصوص
======================================== */
    .content-paragraph {
        font-size: 1.1rem;
        line-height: 2;
        color: var(--text-white);
        margin: 20px 0;
        text-align: justify;
    }

    .content-paragraph strong {
        color: var(--matte-gold);
        font-weight: 600;
    }

    /* ========================================
   القوائم
======================================== */
    .benefits-list,
    .features-list {
        list-style: none;
        margin: 20px 0;
        padding: 0;
    }

    .benefits-list li,
    .features-list li {
        padding: 12px 0 12px 40px;
        position: relative;
        color: var(--text-white);
        font-size: 1.05rem;
        line-height: 1.8;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .benefits-list li::before {
        content
        position: absolute;
        right: 0;
        color: var(--matte-gold);
        font-size: 1.5rem;
        font-weight: bold;
    }

    .features-list li::before {
        content
        position: absolute;
        right: 0;
        color: var(--matte-gold);
        font-size: 1.2rem;
        font-weight: bold;
    }

    /* ========================================
   الجداول
======================================== */
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        background: var(--primary-black);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    }

    .comparison-table thead {
        background: linear-gradient(135deg, var(--matte-gold) 0%, var(--gold-dark) 100%);
    }

    .comparison-table th {
        padding: 18px 15px;
        text-align: center;
        color: var(--primary-black);
        font-weight: bold;
        font-size: 1rem;
        border: 1px solid var(--gold-dark);
    }

    .comparison-table td {
        padding: 15px;
        text-align: center;
        color: var(--text-white);
        border: 1px solid var(--border-gold);
        font-size: 0.95rem;
    }

    .comparison-table tbody tr:nth-child(even) {
        background: rgba(212, 175, 55, 0.05);
    }

    .comparison-table tbody tr:hover {
        background: rgba(212, 175, 55, 0.1);
        transition: background 0.3s ease;
    }

    /* ========================================
   صناديق المعلومات
======================================== */
    .info-box {
        background: linear-gradient(135deg, #2a2a2a 0%, var(--primary-black) 100%);
        border-right: 5px solid var(--matte-gold);
        border-radius: 8px;
        padding: 25px;
        margin: 25px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .info-box-title {
        color: var(--matte-gold);
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .info-box-content {
        color: var(--text-gray);
        font-size: 1.05rem;
        line-height: 1.9;
    }

    /* ========================================
   الاقتباسات
======================================== */
    .quote-box {
        background: var(--primary-black);
        border: 3px double var(--matte-gold);
        border-radius: 12px;
        padding: 35px;
        margin: 40px 0;
        font-family: 'Courier New', monospace;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        position: relative;
    }

    .quote-box::before {
        content: '';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }

    .quote-title {
        color: var(--matte-gold);
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-gold);
    }

    .quote-content {
        color: var(--text-white);
        font-size: 1.05rem;
        line-height: 2;
        margin: 20px 0;
        padding: 0 20px;
        text-align: justify;
    }

    .quote-author {
        color: var(--gold-light);
        font-size: 1rem;
        font-weight: bold;
        text-align: left;
        margin-top: 25px;
        padding-top: 15px;
        border-top: 1px solid var(--border-gold);
    }

    /* ========================================
   دراسة الحالة
======================================== */
    .case-study {
        background: linear-gradient(to bottom, #1a1a1a 0%, #252525 100%);
        border: 2px solid var(--matte-gold);
        border-radius: 15px;
        padding: 35px;
        margin: 40px 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .case-study-header {
        color: var(--matte-gold);
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-gold);
    }

    .case-detail {
        margin: 15px 0;
        padding: 15px;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 8px;
    }

    .case-detail-label {
        color: var(--matte-gold);
        font-weight: bold;
        display: inline-block;
        min-width: 150px;
    }

    .case-detail-value {
        color: var(--text-white);
    }

    /* ========================================
   الأسئلة الشائعة
======================================== */
    .faq-section {
        margin: 50px 0;
    }

    .faq-item {
        background: linear-gradient(135deg, #2a2a2a 0%, var(--primary-black) 100%);
        border: 1px solid var(--border-gold);
        border-radius: 10px;
        padding: 25px;
        margin: 20px 0;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--matte-gold);
        box-shadow: 0 5px 20px var(--shadow-gold);
        transform: translateY(-2px);
    }

    .faq-question {
        color: var(--matte-gold);
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .faq-answer {
        color: var(--text-white);
        font-size: 1.05rem;
        line-height: 2;
        text-align: justify;
    }

    /* ========================================
   أزرار الحث على اتخاذ إجراء (CTA)
======================================== */
    .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, var(--matte-gold) 0%, var(--gold-dark) 100%);
        color: var(--primary-black);
        padding: 18px 45px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.15rem;
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px var(--shadow-gold);
        border: 2px solid var(--matte-gold);
        cursor: pointer;
    }

    .cta-button:hover {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--matte-gold) 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    }

    .cta-section {
        text-align: center;
        margin: 50px 0;
        padding: 40px;
        background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
        border: 2px solid var(--matte-gold);
        border-radius: 15px;
    }

    /* ========================================
   المصادر العلمية
======================================== */
    .references-list {
        list-style: decimal;
        padding-right: 30px;
        margin: 30px 0;
    }

    .references-list li {
        color: var(--text-gray);
        margin: 15px 0;
        line-height: 1.8;
        font-size: 0.95rem;
    }

    .references-list a {
        color: var(--matte-gold);
        text-decoration: none;
        border-bottom: 1px dotted var(--matte-gold);
        transition: all 0.3s ease;
    }

    .references-list a:hover {
        color: var(--gold-light);
        border-bottom-style: solid;
    }

    /* ========================================
   المقالات ذات الصلة
======================================== */
    .related-articles {
        background: linear-gradient(to bottom, #1a1a1a 0%, #252525 100%);
        border: 2px solid var(--matte-gold);
        border-radius: 15px;
        padding: 35px;
        margin: 50px 0;
    }

    .related-articles-title {
        color: var(--matte-gold);
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 25px;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-gold);
    }

    .related-articles-list {
        list-style: none;
        padding: 0;
    }

    .related-articles-list li {
        margin: 15px 0;
        padding: 15px;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 8px;
        border-right: 4px solid var(--matte-gold);
        transition: all 0.3s ease;
    }

    .related-articles-list li:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(-5px);
    }

    .related-articles-list a {
        color: var(--text-white);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .related-articles-list a:hover {
        color: var(--matte-gold);
    }

    /* ========================================
   الفواصل
======================================== */
    .section-divider {
        border: none;
        height: 2px;
        background: linear-gradient(to left, transparent 0%, var(--matte-gold) 50%, transparent 100%);
        margin: 50px 0;
    }

    /* ========================================
   التنسيق المتجاوب
======================================== */
    @media (max-width: 768px) {
        .article-container {
            padding: 20px 15px;
        }

        .quick-answer {
            padding: 20px;
        }

        .quick-answer p {
            font-size: 1rem;
        }

        .section-title {
            font-size: 1.4rem;
        }

        .subsection-title {
            font-size: 1.2rem;
        }

        .comparison-table {
            font-size: 0.85rem;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 10px 8px;
        }

        .cta-button {
            padding: 15px 30px;
            font-size: 1rem;
        }
    }

    /* ========================================
   صور الإنفوجرافيك
======================================== */
    .infographic-container {
        text-align: center;
        margin: 40px 0;
        padding: 20px;
        background: rgba(212, 175, 55, 0.03);
        border-radius: 12px;
    }

    .infographic-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        border: 2px solid var(--matte-gold);
    }

    .infographic-caption {
        color: var(--matte-gold);
        font-size: 1.1rem;
        font-weight: bold;
        margin-top: 15px;
        font-style: italic;
    }

    /* ========================================
   روابط داخلية في النص
======================================== */
    .internal-link {
        color: var(--matte-gold);
        text-decoration: none;
        border-bottom: 1px solid var(--matte-gold);
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .internal-link:hover {
        color: var(--gold-light);
        border-bottom: 2px solid var(--gold-light);
    }

    /* ========================================
   التذييل
======================================== */
    .article-footer {
        text-align: center;
        margin-top: 60px;
        padding: 30px;
        border-top: 2px solid var(--border-gold);
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* تمرير سلس */
    html {
        scroll-behavior: smooth;
    }

    /* روابط جدول المحتويات */
    .toc-list a,
    .toc-sublist a {
        color: inherit;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }

    .toc-list>li>a:hover {
        color: var(--matte-gold);
        padding-right: 35px;
    }

    .toc-sublist a:hover {
        color: var(--gold-light);
    }

    .copyright {
        color: var(--matte-gold);
        font-weight: bold;
        margin-bottom: 15px;
    }

    .medical-disclaimer {
        color: var(--text-gray);
        font-style: italic;
    }/* End custom CSS */