﻿.footer {
    direction: rtl;
    background: #fff;
    border-top: 1px solid #eee;
}

/* بالا */
.footer-top {
    padding: 35px 0 20px;
}

/* ساختار اصلی */
.footer-main {
    display: flex;
    flex-direction: row-reverse; /* ✅ باعث میشه نمادها برن سمت چپ */
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* ✅ نماد اعتماد */
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    min-width: 120px;
}

.trust-badge {
    width: 95px;
    height: 95px;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    transition: .3s;
}

    .trust-badge:hover {
        transform: translateY(-3px);
    }

    .trust-badge img {
        width: 80%;
    }

/* ✅ ستون‌ها */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    flex: 1;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    text-align: right;
}

/* عنوان */
.footer-title {
    color: #b08d26;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}

    .footer-title::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 35px;
        height: 2px;
        background: #d4af37;
    }

/* لینک‌ها */
.footer-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    padding-right: 16px;
    position: relative;
    transition: .25s;
}

    .footer-link::before {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 6px;
        height: 6px;
        background: #d4af37;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .footer-link:hover {
        color: #d4af37;
    }

/* اطلاعات تماس */
.footer-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

    .footer-info-item i {
        color: #d4af37;
    }

/* ✅ شبکه اجتماعی */
.social-links-wrapper {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

    .social-link:hover {
        
    }

/* ✅ پایین فوتر */
.footer-bottom {
    background: #fafafa;
    border-top: 1px solid #FFF;
    padding: 12px 0;
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        font-size: 13px;
        color: #777;
    }

    .footer-bottom span {
        color: #b08d26;
        font-weight: bold;
    }

/* ✅ موبایل */
@media (max-width:768px) {

    .footer-main {
        flex-direction: column; /* ستون بالا */
        align-items: center;
    }

    /* نمادها بالا و وسط */
    .footer-trust {
        order: -1;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 20px;
    }

    /* حذف دسته بندی */
    .footer-category {
        display: none;
    }

    /* دو ستون کنار هم */
    .footer-links-grid {
        grid-template-columns: repeat(2,1fr);
        width: 100%;
        gap: 18px;
    }
}
