/* =========================================
   Footer inspired by the global header DA
   ========================================= */

.site-footer {
    color: rgba(232, 247, 243, 0.82);
    background: #040404;
    font-family: inherit;
}

.upper-band {
    position: relative;
    display: block;
    padding: 32px 32px 30px;
    background: linear-gradient(150deg, rgba(24, 24, 24, 0.96), rgba(10, 10, 10, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 -26px 54px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.upper-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 160% at 12% 0%, rgba(109, 242, 210, 0.12), transparent 55%),
        radial-gradient(140% 140% at 90% 100%, rgba(120, 163, 255, 0.1), transparent 58%);
    pointer-events: none;
    opacity: 0.65;
}

.upper-band__inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
}

body.customize-layout-page .upper-band__inner,
body.customize-layout-page .lower-band__inner {
    width: 100%;
    max-width: none;
}

.footer-links-container {
    flex: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
}

.footer-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: rgba(232, 247, 243, 0.78);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #ffffff;
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
    transform: scaleX(1);
}

.lower-band {
    background: linear-gradient(160deg, rgba(8, 8, 8, 0.96), rgba(3, 3, 3, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lower-band__inner {
    margin: 0 auto;
    width: min(1120px, 100%);
    padding: 20px 32px 26px;
    text-align: center;
}

.lower-band p {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(232, 247, 243, 0.64);
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 24px;
    margin-right: 70px;
}


.footer-socials a {
    --social-color: rgba(232, 247, 243, 0.78);
    --social-hover-color: var(--social-color);
    color: var(--social-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    color: var(--social-hover-color);
    transform: translateY(-2px);
}

.footer-socials a[aria-label="Facebook"] {
    color: #1877f2;
}


.footer-socials a[aria-label="TikTok"] {
    color: #ffffff;
}



.footer-socials a[aria-label="YouTube"] {
    color: #ff0000;
}



.footer-socials a[aria-label="Instagram"] {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.footer-socials i {
    font-size: 1.6rem;
}
