.elementor-4573 .elementor-element.elementor-element-73fbdaa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2e68fab *//* تصميم متقدم جداً: أخضر/ذهبي, price cards تفاعلية, animated counters, comparison sliders, tooltips */
:root {
    --primary: #27ae60; /* أخضر (أسعار جيدة) */
    --secondary: #f39c12; /* ذهبي (تنبيهات) */
    --accent: #3498db; /* أزرق (معلومات) */
    --dark: #2c3e50;
    --light: #ecf0f1;
    --danger: #e74c3c;
    --success: #27ae60;
    --bg: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: var(--bg);
}

.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Breadcrumb */
.breadcrumb {
    background: white;    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    animation: slideInDown 0.6s ease;
}
@keyframes slideInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 600; transition: all 0.3s; }
.breadcrumb a:hover { color: var(--secondary); transform: scale(1.05); }

/* Content Card */.content-card {
    background: white;
    margin: 30px 0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.15);
    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(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%; /* لتمكين تأثير الشيمر */
    animation: shimmer 2s infinite linear;
}
@keyframes shimmer {
    0% { background-position: -200% 0; } /* يبدأ من خارج اليسار */
    100% { background-position: 200% 0; } /* ينتهي خارج اليمين */
}

/* Header */
h1 {
    color: var(--dark);
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -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; }
}

h2 {
    color: var(--dark);
    font-size: 2.2em;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
h2::before { content: '💰'; font-size: 1.3em; animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h3 { color: var(--primary); font-size: 1.6em; margin: 25px 0 15px; }

/* Intro */
.intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}
img:hover { transform: scale(1.05) rotate(2deg); box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3); }

/* Price Cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.price-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-radius: 15px;
    padding: 25px;    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
    border-left: 5px solid var(--primary);    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.1), transparent);
    animation: float 6s infinite;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.25);
}
.price-card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-card-title i {
    font-size: 1.5em;
    color: var(--primary);
}
.price-value {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
    animation: countUp 1s ease-out;
}
@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.price-card p { color: #666; margin: 5px 0; font-size: 0.95em; }
.price-card .badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    margin-top: 10px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Tables */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
}
.price-table th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));    color: white;
    padding: 18px;
    font-weight: 600;
    text-align: center;
}
.price-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light);
    text-align: center;
    transition: all 0.3s ease;
}
.price-table tr:hover td {
    background: #f0fdf4;
    transform: scale(1.02);
}
.price-table td:first-child { text-align: right; font-weight: 600; }
.price-high { color: var(--danger); font-weight: 700; }
.price-low { color: var(--success); font-weight: 700; }
.price-medium { color: var(--secondary); font-weight: 700; }

/* Info Boxes */
.info-box, .warning-box, .success-box {
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid;
    transition: all 0.3s ease;
}
.info-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: var(--accent);
}
.warning-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left-color: var(--secondary);
}
.success-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left-color: var(--success);
}
.info-box:hover, .warning-box:hover, .success-box:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.info-box::before { content: '📌'; margin-left: 10px; }
.warning-box::before { content: '⚠️'; margin-left: 10px; }
.success-box::before { content: ; margin-left: 10px; } /* تم التصحيح هنا */

/* 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(--primary); }
ul li::before { content: ; position: absolute; right: -20px; color: var(--primary); font-weight: 700; }

/* Comparison Slider */
.comparison-slider {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
}
.slider-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}
.slider-item > div {
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}
.slider-item h4 { color: var(--dark); margin-bottom: 10px; }

/* FAQ */
.faq-item {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
}
.faq-question {
    font-weight: 700;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    color: #666;
    margin-top: 15px;
    display: none;
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 400px; 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, #f0fdf4, #e8f5e9);
    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(--primary);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
}
.related li a:hover {
    transform: translateY(-5px);
    color: var(--secondary);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

/* Keywords */
.keywords-box {
    background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
    border: 2px dashed var(--primary);
    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(--primary), var(--secondary));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.keyword-tag:hover { transform: rotate(360deg) scale(1.15); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    .price-cards { grid-template-columns: 1fr; }
    .slider-item { grid-template-columns: 1fr; }
    .content-card { padding: 25px; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    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(39, 174, 96, 0.3);
}
.cta-button:hover { transform: translateY(-3px) rotate(360deg); box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4); }

/* AdSense */
.adsense {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(243, 156, 18, 0.1));
    border: 3px dashed var(--primary);
    text-align: center;
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 15px;
    animation: pulse 2s infinite;
    position: relative; /* تأكد من وجودها لتحديد موقع ::before */
}
.adsense::before {/* End custom CSS */