﻿/* ================= Premium Footer ================= */

.footer-pro {
    position: relative;
    background: #0f172a;
    color: #fff;
    margin-top: 20px;
    overflow: hidden;
}

/* موج گرادینتی بالا */
.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg,#ffb347,#ff8c00);
    border-bottom-left-radius: 60% 40%;
    border-bottom-right-radius: 60% 40%;
}

/* محتوای اصلی */
.footer-inner {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 100px 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
}

/* کارت‌ها */
.footer-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    transition: .4s;
}

    .footer-box:hover {
        transform: translateY(-6px);
        border-color: #ffb347;
    }

/* برند */
.brand-box h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffb347;
}

.footer-box h4 {
    margin-bottom: 14px;
    font-size: 18px;
}

/* متن */
.footer-box p {
    font-size: 14px;
    line-height: 1.9;
    opacity: .85;
}

/* لینک‌ها */
.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-box ul li {
        margin-bottom: 10px;
    }

        .footer-box ul li a {
            color: #fff;
            font-size: 14px;
            opacity: .8;
            transition: .3s;
        }

            .footer-box ul li a:hover {
                opacity: 1;
                color: #ffb347;
                padding-right: 6px;
            }

/* کپی رایت */
.footer-copy {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: .8;
}

@media(max-width:768px) {
    .footer-inner {
        text-align: center;
    }
}
