/* Start custom CSS for html, class: .elementor-element-03c4c4f */.main-footer {
    background-color: #111; /* هماهنگ با تم تاریک سایت */
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: 'Tahoma', sans-serif; /* یا فونت اصلی سایتت */
    direction: rtl;
    border-top: 2px solid #c49a6c; /* رنگ طلایی مشابه دکمه‌های سایت */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-desc {
    line-height: 1.8;
    font-size: 14px;
    color: #ccc;
    padding-left: 20px;
}

.footer-column h4 {
    color: #c49a6c;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: #c49a6c;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #c49a6c;
    padding-right: 5px;
}

.footer-bottom {
    background-color: #080808;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin: 5px 0;
}

.footer-bottom a {
    color: #c49a6c;
    text-decoration: none;
    font-weight: bold;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-desc {
        padding-left: 0;
    }
}/* End custom CSS */