﻿


/* پس‌زمینه نئونی */
.new-footer {
    background: radial-gradient(circle at top, #111727 0%, #0a0c18 60%, #000 100%);
    color: #c8e6ff;
    padding: 80px 25px 35px;
    position: relative;
    overflow: hidden;
}

/* آیکون‌های شناور پلی‌استیشن */
.float-icon {
    position: absolute;
    font-size: 90px;
    font-weight: bold;
    color: rgba(0, 255, 255, 0.25);
    animation: floatIcon 8s infinite ease-in-out;
    filter: drop-shadow(0 0 6px rgba(0,255,255,.4));
}

.icon-circle   { top: 20%; right: 10%; animation-duration: 5s; }
.icon-cross    { top: 65%; left: 20%; animation-duration: 6s; }
.icon-triangle { top: 40%; left: 60%; animation-duration: 4s; }
.icon-square   { top: 15%; right: 40%; animation-duration: 10s; }

.icon-circle2   { top: 80%; right: 20%; animation-duration: 4s; }
.icon-cross2    { top: 15%; left: 45%; animation-duration: 8s; }
.icon-triangle2 { top: 75%; left: 38%; animation-duration: 9s; }
.icon-square2   { top: 65%; right: 15%; animation-duration: 10s; }

@keyframes floatIcon {
    0%   { transform: translateY(0) rotate(0deg); opacity: .4; }
    50%  { transform: translateY(-120px) translateX(25px) rotate(90deg); opacity: .9; }
    100% { transform: translateY(0) rotate(0deg); opacity: .4; }
}

/* گرید اصلی */
.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
    z-index: 2;
    position: relative;
}

.footer-col h3 {
    color: #4de3ff;
    font-size: 22px;
    margin-bottom: 18px;
    text-shadow: 0 0 10px #00eaff80;
}

.footer-col ul li {
    list-style: none;
    margin: 10px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #d9ecff;
    padding: 5px 10px;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #4de3ff;
    padding-right: 14px;
}

/* شبکه اجتماعی */
.footer-social a {
    font-size: 26px;
    margin-left: 12px;
    color: #4de3ff;
    transition: 0.3s;
}
.footer-social a:hover {
    transform: scale(1.22);
    color: #82faff;
}

/* نماد */
.footer-enamad img {
    width: 120px;
    margin-top: 20px;
}

/* کپی رایت */
.footer-copy {
    text-align: center;
    margin-top: 45px;
    opacity: .7;
    font-size: 13px;
}

/* ریسپانسیو */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
