.elementor-4569 .elementor-element.elementor-element-45a36a9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6d8ba9c *//* تصميم متقدم جداً: أحمر/أزرق، flip cards، 3D transforms، particles، animated background، progress rings، comparison wheel. */
:root {
    --window-color: #e74c3c; /* أحمر للشباك (تقليدي) */
    --split-color: #3498db; /* أزرق للدولابي (حديث) */
    --accent-color: #f39c12; /* ذهبي للنقاط المهمة */
    --neutral-color: #2c3e50; /* رمادي للنصوص */
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); /* gradient متدرج متقدم */
    --card-bg: rgba(255,255,255,0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Animated Background */
body { 
    font-family: 'Cairo', sans-serif; 
    line-height: 1.8; 
    color: var(--neutral-color); 
    background: var(--bg-gradient);
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Breadcrumb */
.breadcrumb { 
    background: rgba(255,255,255,0.95); 
    padding: 15px 25px; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: slideInDown 0.6s ease;
}
@keyframes slideInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.breadcrumb a { color: var(--window-color); text-decoration: none; font-weight: 600; transition: all 0.3s; }
.breadcrumb a:hover { color: var(--split-color); transform: scale(1.05); }/* Content Card */
.content-card { 
    background: var(--card-bg); 
    margin: 30px 0; 
    border-radius: 20px; 
    padding: 40px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--window-color), var(--split-color), var(--accent-color));
    animation: slideRight 2s infinite;
}
@keyframes slideRight {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }    100% { background-position: 0% 50%; }
}

/* العنوان */
h1 { 
    color: var(--neutral-color); 
    font-size: 3.5em; 
    text-align: center; 
    margin-bottom: 30px; 
    font-weight: 700;
    background: linear-gradient(45deg, var(--window-color), var(--split-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: zoomIn 0.8s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--window-color), var(--split-color));
    margin: 10px auto;
    border-radius: 2px;
    animation: slideInRight 0.8s ease 0.3s both;
}

/* العناوين الثانوية */
h2 { 
    color: var(--neutral-color); 
    font-size: 2.2em; 
    margin: 40px 0 20px; 
    position: relative;
    padding-right: 30px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}
h2:hover {
    text-shadow: 0 0 20px rgba(230, 126, 34, 0.5);
    transform: translateX(5px);
}
h2::before {
    content: '❄️';
    margin-left: 15px;
    font-size: 1.3em;
    animation: swing 2s infinite;
}
@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

h3 { 
    color: var(--window-color); 
    font-size: 1.6em; 
    margin: 25px 0 15px;
}
h3.split {
    color: var(--split-color);
}

.keywords { display: none; }

/* Flip Cards - تأثير قلب ثلاثي الأبعاد */
.flip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;    perspective: 1000px;
}
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.flip-card:hover {
    transform: rotateY(180deg);
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.flip-card-front {
    background: linear-gradient(135deg, var(--window-color), #c0392b);
    color: white;
}
.flip-card-front.split {
    background: linear-gradient(135deg, var(--split-color), #2980b9);
}
.flip-card-back {
    background: white;
    color: var(--neutral-color);
    transform: rotateY(180deg);
}
.flip-card-front i {
    font-size: 3em;
    margin-bottom: 15px;
}
.flip-card-front h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* AdSense */
.adsense { 
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1)); 
    border: 3px dashed var(--window-color); 
    text-align: center; 
    padding: 50px 20px; 
    margin: 40px 0; 
    border-radius: 15px; 
    position: relative;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(230, 126, 34, 0.5); }
    50% { box-shadow: 0 0 30px rgba(52, 152, 219, 0.5); }
}
.adsense::before {
    content: 'إعلان جوجل أدسينس';
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--window-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
}

/* Comparison Ring - حلقة مقارنة تفاعلية */
.comparison-ring {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    position: relative;
    height: 400px;
}
.ring-item {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1em;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.ring-item:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}
.window { background: linear-gradient(135deg, var(--window-color), #c0392b); }
.split { background: linear-gradient(135deg, var(--split-color), #2980b9); }
.center { 
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    width: 200px;
    height: 200px;
    z-index: 10;
    font-size: 1.3em;
}

/* Tables */
.comparison-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 30px 0; 
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    animation: slideInUp 0.8s ease;
}
@keyframes slideInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.comparison-table th { 
    background: linear-gradient(135deg, var(--window-color), var(--split-color));
    color: white; 
    padding: 18px; 
    font-weight: 600;
    text-align: center;
}.comparison-table td { 
    padding: 15px; 
    border-bottom: 1px solid #ecf0f1; 
    text-align: center;
    transition: all 0.3s ease;
}
.comparison-table tr:hover td { 
    background: #f8f9fa;
    transform: scale(1.02);
}
.window-col { background: rgba(230, 126, 34, 0.08); }
.split-col { background: rgba(52, 152, 219, 0.08); }

/* Progress Rings */
.progress-ring {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    margin: 20px auto;
}
.progress-ring-circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}
.progress-ring-circle-path {
    transition: stroke-dashoffset 2s ease;
    transform-origin: 50% 50%;
}
.progress-ring-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5em;
}

/* Lists */
ul { padding-right: 25px; margin: 15px 0; }
ul li { 
    margin: 10px 0; 
    position: relative; 
    padding-right: 25px;
    list-style: none;
    transition: all 0.3s ease;
}
ul li:hover {
    transform: translateX(10px);
    color: var(--window-color);
}
ul li::before { 
    content:  /* تم تصحيح هذا السطر */
    position: absolute; 
    right: -20px; 
    font-size: 1.1em;
}
ul.window-list li::before { content: '🪟'; position: absolute; right: -20px; }
ul.split-list li::before { content: '🏠'; position: absolute; right: -20px; }

/* Boxes */
.warning-box, .info-box {
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    transition: all 0.3s ease;
}
.warning-box {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border: 2px solid var(--window-color);
}
.warning-box:hover {
    transform: rotate(-1deg);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}
.info-box {    background: linear-gradient(135deg, #e8f4f8, #d1ecf1);
    border: 2px solid var(--split-color);
}
.info-box:hover {
    transform: rotate(1deg);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);}

/* FAQ */
.faq-item { 
    background: #f8f9fa; 
    padding: 20px; 
    margin: 15px 0; 
    border-radius: 12px; 
    border-left: 5px solid var(--window-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.faq-item.split {
    border-left-color: var(--split-color);
}
.faq-item:hover { 
    background: white;
    transform: translateX(10px);    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.faq-question { 
    color: var(--neutral-color); 
    font-weight: 700; 
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-answer { 
    color: #555; 
    line-height: 1.6;
    display: none;
    margin-top: 15px;
    animation: fadeInDown 0.4s ease;
}
@keyframes fadeInDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.faq-item.active .faq-answer { display: block; }
.faq-question i { transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Related Posts */
.related { 
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1)); 
    padding: 30px;     border-radius: 15px; 
    margin: 40px 0; 
}
.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(--window-color); 
    font-weight: 600; 
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: all 0.3s ease;
}
.related li a:hover { 
    transform: translateY(-5px) rotate(2deg);
    color: var(--split-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sections */
.sections { 
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(52, 152, 219, 0.05)); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.sections ul { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    list-style: none; 
}
.sections li a { 
    padding: 12px 20px; 
    background: linear-gradient(135deg, var(--window-color), var(--split-color));
    color: white; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease;
}.sections li a:hover { 
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Keywords */
.keywords-box {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1));
    border: 2px dashed var(--window-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: linear-gradient(135deg, var(--window-color), var(--split-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.keyword-tag:hover {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Images */img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Expert Quote */
.expert-quote {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1));
    border-left: 5px solid var(--window-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.expert-quote:hover {
    transform: rotate(-1deg);
    border-left-color: var(--split-color);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.expert-quote p { margin-bottom: 5px; }
.expert-quote .expert-name { font-weight: bold; color: var(--split-color); }

/* Responsive */
@media (max-width: 768px) {    h1 { font-size: 2.2em; }
    h2 { font-size: 1.5em; }
    .content-card { padding: 25px; }
    .flip-cards { grid-template-columns: 1fr; }
    .comparison-ring { height: 300px; }
    .comparison-table { font-size: 0.9em; }
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--window-color), var(--split-color));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.cta-button:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}/* End custom CSS */