/* Start custom CSS for html, class: .elementor-element-3cf4594 */\<style>
    /* --- الخطوط والأساسيات --- */
    @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;500;700;800&display=swap');

    .gate-ar-container {
        direction: rtl;
        text-align: right;
        font-family: 'Cairo', sans-serif;
        color: #333;
        line-height: 1.7;
        background-color: #f4f4f4;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* --- المتغيرات اللونية --- */
    :root {
        --gate-dark: #212121;      /* أسود معدني */
        --gate-wood: #8d6e63;      /* لون خشبي */
        --gate-light: #ffffff;
        --gate-accent: #d4a373;    /* لون تمييز */
    }

    /* --- قسم الهيرو (الصورة 1) --- */
    .gate-hero-ar {
        position: relative;
        height: 550px;
        background-image: url('https://punalu.com/wp-content/uploads/2026/03/blog-5-1-ARAB.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end; /* النص في الأسفل */
        justify-content: flex-start; /* النص يمين (بسبب RTL) */
        padding: 40px;
    }
    .gate-hero-ar::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    }
    .hero-title-box-ar {
        position: relative;
        z-index: 2;
        background: var(--gate-light);
        padding: 30px 40px;
        max-width: 700px;
        border-right: 8px solid var(--gate-wood); /* الخط يمين */
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .gate-hero-ar h1 {
        font-size: 2.2rem;
        margin: 0;
        color: var(--gate-dark);
        line-height: 1.3;
        font-weight: 800;
    }
    .gate-hero-ar span {
        display: block;
        margin-top: 10px;
        font-weight: 600;
        color: var(--gate-wood);
        font-size: 1.1rem;
    }

    /* --- المقدمة --- */
    .gate-intro-ar {
        text-align: center;
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }
    .gate-intro-ar p { font-size: 1.1rem; color: #555; }

    /* --- أنماط الأسوار (الصورة 2) --- */
    .fence-styles-wrapper-ar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0; /* شكل متصل */
        margin-bottom: 60px;
    }
    .fence-img-ar {
        background-image: url('https://punalu.com/wp-content/uploads/2026/03/blog-5-2-ARAB.png');
        background-size: cover;
        background-position: center;
        min-height: 500px;
        position: relative;
    }
    .fence-content-ar {
        background: var(--gate-dark);
        color: white;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .style-card-ar {
        margin-bottom: 40px;
        border-right: 1px solid rgba(255,255,255,0.2); /* الخط يمين */
        padding-right: 20px;
        transition: padding 0.3s;
    }
    .style-card-ar:hover { padding-right: 30px; border-color: var(--gate-accent); }
    .style-card-ar h2 {
        color: var(--gate-accent);
        font-size: 1.6rem;
        margin-top: 0;
        font-weight: 700;
    }
    .style-card-ar ul { padding-right: 20px; color: #ccc; }

    /* --- البوابات والخصوصية (الصورة 3) --- */
    .gate-privacy-section-ar {
        max-width: 1200px;
        margin: 0 auto 80px auto;
        padding: 20px;
    }
    .privacy-grid-ar {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        align-items: center;
    }
    .privacy-img-ar img {
        width: 100%;
        border: 10px solid white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .privacy-text-ar h2 {
        font-size: 1.8rem;
        color: var(--gate-dark);
        border-bottom: 3px solid var(--gate-wood);
        display: inline-block;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .gate-types-ar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    .gate-type-item-ar {
        background: white;
        padding: 15px;
        border: 1px solid #ddd;
        text-align: center;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* --- شبكة الأداء والمواصفات --- */
    .perf-section-ar {
        background: white;
        padding: 60px 20px;
        text-align: center;
    }
    .perf-title-ar { margin-bottom: 50px; }
    .perf-title-ar h2 { font-size: 2.2rem; font-weight: 800; color: var(--gate-dark); }
    
    .perf-grid-ar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .perf-box-ar {
        border: 2px solid #eee;
        padding: 30px;
        transition: 0.3s;
    }
    .perf-box-ar:hover {
        border-color: var(--gate-wood);
        background: #fafafa;
        transform: translateY(-5px);
    }
    .perf-icon-ar { font-size: 2rem; margin-bottom: 15px; display: block; color: var(--gate-wood); }
    .perf-box-ar h3 { margin: 10px 0; font-weight: 700; }

    /* --- الأسئلة الشائعة --- */
    .gate-faq-ar {
        max-width: 800px;
        margin: 60px auto;
        padding: 0 20px;
    }
    details.gate-details-ar {
        background: #fff;
        margin-bottom: 15px;
        border-right: 5px solid #ccc; /* خط يمين */
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    details[open] { border-right-color: var(--gate-dark); }
    
    summary.gate-summary-ar {
        font-weight: 700;
        cursor: pointer;
        list-style: none;
        color: var(--gate-dark);
        display: flex;
        justify-content: space-between;/* End custom CSS */