
/* ============================================
FOOTER STYLES
============================================ */

.footer {
    background: #1a1a2e;
    color: #b8b8b8;
    padding-top: 60px;
    margin-top: 60px;
}

/* بخش ویژگی‌ها */
.footer-features {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.feature-card {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 102, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 30px;
    color: #f60;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: #b8b8b8;
    margin: 0;
    line-height: 1.6;
}

/* بخش اصلی فوتر */
.footer-main {
    padding-bottom: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b8b8b8;
}

/* شبکه‌های اجتماعی */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: #f60;
    transform: translateY(-3px);
    color: white;
}

/* عنوان ویجت */
.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #f60;
}

/* لینک‌ها */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links li a:hover {
    color: #f60;
    padding-right: 5px;
}

/* اطلاعات تماس */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li i {
    color: #f60;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact li a {
    color: #b8b8b8;
    text-decoration: none;
}

.footer-contact li a:hover {
    color: #f60;
}

/* بخش پایینی فوتر */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.copyright {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.payment-methods {
    text-align: left;
}

.payment-img {
    max-height: 30px;
    width: auto;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }

    .footer-features {
        padding-bottom: 20px;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .footer-bottom .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .payment-methods {
        text-align: center;
        margin-bottom: 15px;
    }

    .widget-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .widget-title {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li a:hover {
        padding-right: 0;
        padding-left: 5px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
