.elementor-4531 .elementor-element.elementor-element-5bbb714{--display:flex;}/* Start custom CSS for html, class: .elementor-element-36b71ef *//* تصميم مميز وتفاعلي: ألوان زرقاء/فضية للسيارات (زرقاء للبرودة، فضية للحداثة) */
:root {
    --primary-color: #3498db; /* أزرق رئيسي للبرودة */
    --secondary-color: #34495e; /* أزرق رمادي */
    --accent-color: #95a5a6; /* فضي للعناصر التفاعلية */
    --bg-gradient: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 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(52, 152, 219, 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(52, 152, 219, 0.1);    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.content-card:hover {
    transform: translateY(-5px);
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #2980b9, 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), #2980b9);
    -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), #bdc3c7);
    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;
    cursor: pointer;
    transition: color 0.3s ease;
}
h2:hover {
    color: var(--primary-color);
}
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, #f0f8ff, #e3f2fd); 
    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;
    transition: border-color 0.3s ease;
}
.adsense:hover {
    border-color: #2980b9;
}
.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(52, 152, 219, 0.1);
}
.price-table th { 
    background: linear-gradient(135deg, var(--primary-color), #2980b9); 
    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: #f0f8ff; 
    transform: scale(1.01);
}
.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;
    transition: color 0.3s ease;
}
ul li:hover {
    color: var(--primary-color);
}
ul li::before { 
    content: ; /* تم تصحيح هذا الرمز، كان مفقوداً في الكود الأصلي */
    position: absolute; 
    right: -20px; 
    font-size: 1.1em;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fdf2e8, #fbe8d5);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    transition: box-shadow 0.3s ease;}
.warning-box:hover {
    box-shadow: 0 5px 15px rgba(149, 165, 166, 0.3);
}.warning-box::before {
    content: '⚠️';
    font-size: 1.5em;
    margin-left: 10px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #ebf3fd, #d6e8fa);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    transition: box-shadow 0.3s ease;
}.info-box:hover {
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.info-box::before {
    content: '📌';
    font-size: 1.5em;
    margin-left: 10px;
}

/* FAQ - تفاعلي مع أنيميشن */
.faq-item { 
    background: #f8fbff; 
    padding: 20px; 
    margin: 15px 0; 
    border-radius: 12px; 
    border-right: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.faq-item:hover { 
    background: #ffffff; 
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.1);
}
.faq-question { 
    color: var(--secondary-color); 
    font-weight: 700; 
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer { 
    color: #34495e; 
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 200px; }
}
.faq-item.active .faq-answer { display: block; }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }/* حاسبة تفاعلية لتكلفة الصيانة */
.calculator-section {
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.1);
}
.calculator-section h3 { 
    color: var(--primary-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.calc-form { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 15px; 
    align-items: end; 
}
.calc-form label { font-weight: 600; margin-bottom: 5px; display: block; color: var(--secondary-color); }
.calc-form input, .calc-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.3s ease;
}
.calc-form input:focus, .calc-form select:focus {
    border-color: var(--primary-color);
    outline: none;}
.calc-form button {
    padding: 12px 20px;
    background: linear-gradient(45deg, var(--primary-color), #2980b9);    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
}
.calc-form button:hover { 
    background: linear-gradient(45deg, #2980b9, var(--primary-color)); 
    transform: scale(1.05);
}
.result-box { 
    margin-top: 20px; 
    background: #fff; 
    padding: 15px; 
    border-radius: 10px; 
    text-align: center; 
    font-size: 1.1em; 
    font-weight: bold; 
    border-left: 4px solid var(--primary-color);
    display: none;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.result-box.show { display: block; }
.result-box span { color: var(--primary-color); }

/* Related Posts */
.related { 
    background: linear-gradient(135deg, #d6eaf8, #c4e2f7); 
    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(52, 152, 219, 0.1); 
    transition: all 0.3s ease;
}
.related li a:hover { 
    transform: translateY(-3px); 
    color: #2980b9; 
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.15);
}

/* Sections */
.sections { 
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd); 
    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: #2980b9; 
    transform: scale(1.05);
}

/* Keywords Box */
.keywords-box {
    background: linear-gradient(135deg, #f8fbff, #f0f8ff);
    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;
    cursor: pointer;
}
.keyword-tag:hover {
    background: #2980b9;
    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(52, 152, 219, 0.1);
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.02);
}

/* Expert Quote */
.expert-quote {
    background-color: #f8fbff;
    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(52, 152, 219, 0.05);
    transition: box-shadow 0.3s ease;
}
.expert-quote:hover {
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}
.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; }    .calc-form { grid-template-columns: 1fr; }
}

/* CTA Button - تفاعلي */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #2980b9);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.2);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}/* End custom CSS */