
/* FOOTER  */
.main-footer {
    background-color: var(--white-ceream-high);
    /* رنگ درخواستی شما */
    color: #fff;
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white-ceream);
    /* رنگ قهوه‌ای روشن برای عناوین */
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-logo {
    max-width: 350px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* اگر لوگو مشکی است، آن را سفید می‌کند */
}

.about-col p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.9rem;
}

.contact-col ul {
    list-style: none;
    padding: 0;
}

.contact-col ul li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-col i {
    color: var(--white-ceream);
}

/* شبکه اجتماعی */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--white-ceream);
    transform: translateY(-3px);
}

/* بخش پایانی و امضا */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #888;
}

.developer-tag a {
    color: var(--white-ceream);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.developer-tag a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .about-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* END Footer  */