.elementor-4555 .elementor-element.elementor-element-0cfbce7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6f60a2e *//* تصميم مختلف: ألوان جديدة - أخضر/برتقالي/رمادي للصيانة والنظافة */
:root {
    --primary-color: #27ae60; /* أخضر رئيسي */
    --secondary-color: #2c3e50; /* رمادي داكن */
    --accent-color: #f39c12; /* برتقالي للتحذيرات */
    --bg-gradient: linear-gradient(135deg, #e8f5e8 0%, #d5f4e6 100%); /* خلفية خضراء فاتحة */
    --card-bg: rgba(255,255,255,0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Cairo', sans-serif; 
    line-height: 1.8; 
    color: var(--secondary-color); 
    background: var(--bg-gradient);
}
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Breadcrumb */
.breadcrumb { 
    background: rgba(255,255,255,0.9); 
    padding: 15px 25px; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    box-shadow: 0 4px 15px rgba(39, 156, 18, 0.1);
}
.breadcrumb a { color: var(--primary-color); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* Content Card - تصميم جديد */
.content-card { 
    background: var(--card-bg); 
    margin: 30px 0; 
    border-radius: 20px;     padding: 40px; 
    box-shadow: 0 15px 50px rgba(39, 156, 18, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 156, 18, 0.2);
    position: relative;
    overflow: hidden;}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71, var(--accent-color));
}

h1 { 
    color: var(--secondary-color); 
    font-size: 3.2em; 
    text-align: center; 
    margin-bottom: 30px; 
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), #e67e22);
    border-radius: 2px;
}

h2 { 
    color: var(--secondary-color); 
    font-size: 2.2em; 
    margin: 40px 0 20px; 
    position: relative;
    padding-right: 30px;
    display: flex;
    align-items: center;
}
h2::before {
    content: '🍃';
    margin-left: 15px;
    font-size: 1.2em;
}

h3 { 
    color: var(--primary-color); 
    font-size: 1.6em; 
    margin: 25px 0 15px; 
    display: flex;
    align-items: center;
}
h3::before {
    content: '▶️';
    margin-left: 10px;
    font-size: 0.8em;
}

.keywords { display: none; } /* كلمات مفتاحية مخفية تحت العناوين */

/* AdSense - 3 مساحات */
.adsense { 
    background: linear-gradient(135deg, #f8fff8, #e8f5e8); 
    border: 3px dashed var(--primary-color); 
    text-align: center; 
    padding: 50px 20px; 
    margin: 40px 0; 
    border-radius: 15px; 
    font-size: 1.2em; 
    color: #7f8c8d;
    position: relative;
}
.adsense::before {
    content: 'إعلان جوجل أدسينس';
    position: absolute;
    top: 10px;
    right: 15px;    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
}

/* Tables */
.price-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 30px 0; 
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(39, 156, 18, 0.1);
}
.price-table th { 
    background: linear-gradient(135deg, var(--primary-color), #2ecc71); 
    color: white; 
    padding: 18px; 
    font-weight: 600;
    text-align: center;
}
.price-table td { 
    padding: 15px; 
    border-bottom: 1px solid #ecf0f1; 
    text-align: center;
    transition: background 0.3s ease;
}
.price-table tr:hover td { background: #f8fff8; }
.price-table tr:last-child td { border-bottom: none; }

/* Lists */
ul { padding-right: 25px; margin: 15px 0; }
ul li { 
    margin: 8px 0; 
    position: relative; 
    padding-right: 25px;
    list-style: none;
}
ul li::before { 
    content: ' /* تم تصحيح هذا الرمز */
    position: absolute; 
    right: -20px; 
    font-size: 1.1em;
}

/* Warning Box - برتقالي */
.warning-box {
    background: linear-gradient(135deg, #fff8f0, #fef2e8);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}
.warning-box::before {
    content: '⚠️';
    font-size: 1.5em;
    margin-left: 10px;
}

/* Info Box - أخضر */
.info-box {
    background: linear-gradient(135deg, #e8f5e8, #d5f4e6);    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}
.info-box::before {
    content: '📌';
    font-size: 1.5em;
    margin-left: 10px;
}

/* FAQ */
.faq-item { 
    background: #f8fff8; 
    padding: 20px; 
    margin: 15px 0; 
    border-radius: 12px; 
    border-right: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}
.faq-item:hover { 
    background: #ffffff; 
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(39, 156, 18, 0.1);
}
.faq-question { 
    color: var(--secondary-color); 
    font-weight: 700; 
    font-size: 1.1em;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer { 
    color: #34495e; 
    line-height: 1.6;
    display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Related Posts */
.related { 
    background: linear-gradient(135deg, #d5f4e6, #c8f7d4); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.related h3 { 
    color: var(--secondary-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.related ul { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    list-style: none; 
}
.related li a { 
    display: block; 
    padding: 15px;     background: white; 
    border-radius: 10px; 
    text-decoration: none; 
    color: var(--primary-color); 
    font-weight: 600; 
    text-align: center;
    box-shadow: 0 3px 10px rgba(39, 156, 18, 0.1); 
    transition: all 0.3s ease;
}
.related li a:hover { 
    transform: translateY(-3px); 
    color: #2ecc71; 
    box-shadow: 0 5px 15px rgba(39, 156, 18, 0.15);
}

/* Sections */
.sections { 
    background: linear-gradient(135deg, #f0fff0, #e8f5e8); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.sections h3 { 
    color: var(--primary-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.sections ul { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    list-style: none; 
}
.sections li a { 
    padding: 12px 20px; 
    background: var(--primary-color); 
    color: white; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease;
}
.sections li a:hover { 
    background: #2ecc71; 
    transform: scale(1.05);
}

/* Keywords Box */
.keywords-box {
    background: linear-gradient(135deg, #f8fff8, #f0fff0);
    border: 2px dashed var(--primary-color);
    border-radius: 15px;
    padding: 20px;    margin: 30px 0;
    text-align: center;
}
.keywords-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.keyword-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}
.keyword-tag:hover {
    background: #2ecc71;
    transform: scale(1.05);
}

/* Responsive Images */
img {    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(39, 156, 18, 0.1);
}

/* Expert Quote */
.expert-quote {
    background-color: #f8fff8;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    box-shadow: 0 3px 10px rgba(39, 156, 18, 0.05);
}
.expert-quote p { margin-bottom: 5px; }
.expert-quote .expert-name { font-weight: bold; color: var(--primary-color); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    .content-card { padding: 25px; }
    .price-table { font-size: 0.9em; }
    .related ul { grid-template-columns: 1fr; }
    .keywords-list { gap: 8px; }
    .keyword-tag { font-size: 0.8em; padding: 6px 12px; }
    .adsense { padding: 30px 10px; font-size: 1em; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), #e67e22);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}/* End custom CSS */