/* ================= FOOTER PREMIUM ================= */
.footer-premium {
    background: linear-gradient(180deg, #0a0a0a, #050505);
    color: #ccc;
    position: relative;
    overflow: hidden;
}

/* glow background subtle */
.footer-premium::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.2), transparent);
    top: -100px;
    left: -100px;
    filter: blur(100px);
}

/* DESCRIPTION */
.footer-desc {
    margin-top: 15px;
    line-height: 1.6;
    color: #aaa;
}

/* TITLE */
.widget-title {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.widget-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #00aaff;
    display: block;
    margin-top: 8px;
}

/* LINKS */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background: #00aaff;
    left: 0;
    bottom: -2px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00aaff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* SOCIAL ICON */
.social-icons li {
    margin-right: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00aaff;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
}

/* CONTACT */
.footer-menu p,
.footer-menu a {
    color: #aaa;
}

.footer-menu a:hover {
    color: #00aaff;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
}

.footer-bottom p {
    color: #888;
}

/* COPYRIGHT LINK */
.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-premium {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
