.elementor-219 .elementor-element.elementor-element-59352db{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ===== استایل تعمیر کولر لویزان - نسخه بهینه ===== */
/* سازگار با استایل سراسری s24 */

/* ===== کانتینر ===== */
.ac-repair-article {
    padding: 20px;
}

/* ===== عناوین سفارشی ===== */
.ac-repair-article h1 {
    color: #1a5276;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.ac-repair-article h2 {
    color: #2874a6;
}

.ac-repair-article h3 {
    color: #1a5276;
}

.ac-repair-article h4 {
    color: #2874a6;
}

/* ===== پاراگراف ===== */
.ac-repair-article p {
    text-align: justify;
}

/* ===== تصاویر - فقط مارجین ===== */
.article-image {
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== لیست مشکلات (از استایل سراسری استفاده می‌شود) ===== */

/* ===== باکس معرفی ===== */
.intro-box {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4edfc 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #3498db;
}

.highlight-text {
    color: #c0392b;
}

/* ===== جدول قیمت - فقط تفاوت‌ها ===== */
.price-table-container {
    overflow-x: auto;
}

.price-table {
    font-size: 14px;
}

.price-table thead tr {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.price-table tbody tr:hover {
    background-color: #e8f4fc;
}

.price-note {
    font-size: 13px;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* ===== برندها ===== */
.brands-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.brand-item-foreign {
    background-color: #e8f4fc;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.brand-item-domestic {
    background-color: #fef9e7;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* ===== گرید مزایا ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit-item {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item.time { background-color: #f0f9ff; }
.benefit-item.warranty { background-color: #f0fff4; }
.benefit-item.price { background-color: #fffbeb; }
.benefit-item.expert { background-color: #fef2f2; }

.benefit-icon {
    font-size: 30px;
}

.benefit-text {
    margin-top: 10px;
    font-weight: bold;
}

/* ===== باکس تماس ===== */
.contact-box {
    background: linear-gradient(135deg, #1a5276 0%, #2874a6 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.contact-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-btn {
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contact-btn.green { background-color: #27ae60; }
.contact-btn.red { background-color: #e74c3c; }
.contact-btn.purple { background-color: #9b59b6; }
.contact-btn.orange { background-color: #f39c12; }

.support-text {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.9;
}

/* ===== سوالات متداول ===== */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #f8f9fa;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e8f4fc;
}

.faq-answer {
    padding: 15px;
    background-color: white;
}

/* ===== لینک‌های سفارشی ===== */
.internal-link {
    color: #2874a6;
    border-bottom: 1px dashed #2874a6;
}

.internal-link:hover {
    color: #1a5276;
}

.external-link {
    color: #27ae60;
    border-bottom: 1px solid #27ae60;
}

.external-link:hover {
    color: #1e8449;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .ac-repair-article {
        padding: 15px;
    }
    
    .contact-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-list {
        flex-direction: column;
    }
}/* End custom CSS */