/* ======================================================
   Behdad - Footer Extra Styles
   (این فایل را در index.html بعد از base.css اضافه کنید
    یا محتویات آن را به انتهای base.css کپی کنید)
   ====================================================== */

/* Brand section */
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #bbb;
}

.footer-brand strong {
    color: #FF69B4;
}

.footer-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
}

.footer-contact-info i {
    color: #FF69B4;
    width: 16px;
}

.footer-contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-info a:hover {
    color: #FF69B4;
}

/* Social links */
.footer-social {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.footer-social i {
    font-size: 1.15rem;
    width: 22px;
}

/* ====================== Trust / Enamad / Payment ====================== */
.footer-trust {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px 10px;
    border-top: 1px solid #444;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.trust-item-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.enamad-placeholder {
    width: 90px;
    height: 90px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #888;
    transition: all 0.3s;
}

.enamad-placeholder:hover {
    border-color: #FF69B4;
    color: #FF69B4;
}

.enamad-placeholder i {
    font-size: 1.8rem;
}

.enamad-placeholder span {
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-item-badge small {
    font-size: 0.75rem;
    color: #777;
}

/* Payment Gateways */
.payment-gateways {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.payment-label {
    font-size: 0.9rem;
    color: #999;
}

.payment-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-logo {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: 0.85rem;
    transition: all 0.3s;
    cursor: default;
}

.payment-logo:hover {
    border-color: #FF69B4;
    color: #FF69B4;
}

.payment-logo i {
    font-size: 1.1rem;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 6px;
}

.footer-dev {
    font-size: 0.85rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .payment-gateways {
        align-items: center;
    }

    .payment-logos {
        justify-content: center;
    }
}
