.footer-glass {
    background: rgba(24, 36, 56, 0.93);
    position: relative;
    overflow: hidden;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    box-shadow: 0 -2px 24px rgba(13, 202, 240, 0.1);
    border-radius: 0;
}
.footer-bg-glass {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        ellipse at 60% 0,
        #0dcaf0 0%,
        #3b82f6 30%,
        #182438 100%
    );
    opacity: 0.22;
    pointer-events: none;
    filter: blur(1.5px);
}
.footer-brand img {
    vertical-align: middle;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(13, 202, 240, 0.08);
}
.footer-brand span {
    font-size: 1.15rem;
}
.footer-social {
    gap: 1.1rem;
    display: flex;
    align-items: center;
}
.footer-social-link {
    color: #0dcaf0;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.38rem;
    background: rgba(13, 202, 240, 0.12);
}
.footer-social-link:hover,
.footer-social-link:focus {
    color: #fff;
    background: linear-gradient(90deg, #0dcaf0 0%, #3b82f6 100%);
    transform: translateY(-2px) scale(1.13);
    text-decoration: none;
}
.footer-address,
.footer-copyright {
    color: #e0e7efb2 !important;
    font-size: 0.98rem;
    line-height: 1.4;
}
@media (max-width: 991px) {
    .footer-brand {
        justify-content: center !important;
    }
    .footer-social {
        justify-content: center !important;
    }
    .footer-left,
    .footer-right {
        text-align: center !important;
    }
}
@media (max-width: 767px) {
    .footer-glass {
        font-size: 0.98rem;
        border-radius: 0 0 10px 10px;
    }
    .footer-brand {
        font-size: 1rem;
    }
    .footer-social-link {
        font-size: 1.2rem;
    }
    .footer-left,
    .footer-right {
        text-align: center !important;
    }
}
