/* -----------------------------------------------------------
   FOOTER SECTION
------------------------------------------------------------ */
.footer-section {
    margin-top: 80px;
    padding: 90px 40px 40px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

/* Brand */
.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg,#ff00dd,#9d00ff,#00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about {
    margin-top: 12px;
    opacity: .8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Icons */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    transition: .3s;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.15);
}

/* Columns */
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #fff;
    opacity: .8;
    transition: .3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 4px;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: .75;
    font-size: 0.9rem;
}

/* -----------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media(max-width: 768px) {
    .footer-section {
        padding: 60px 20px 30px;
    }
    .footer-container {
        gap: 30px;
    }
}
