/* =========================================================================
   PREMIUM FOOTER
   ========================================================================= */

.zc-premium-footer {
    position: relative;
    background-color: #081526;
    color: #a0aec0;
    padding-bottom: 30px;
    font-size: 0.95rem;
}

/* Sculpted Top Line */
.footer-sculpt-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--zc-primary) 30%, var(--zc-gold) 70%, transparent 100%);
    opacity: 0.8;
}

/* Typography Enhancements */
.footer-heading {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--zc-primary);
    border-radius: 2px;
}

.footer-about-text {
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Footer Links & Hover States */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Contact Info */
.footer-contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info i {
    color: var(--zc-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact-info a,
.footer-contact-info span {
    color: #a0aec0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-socials a:hover {
    background: var(--zc-primary);
    border-color: var(--zc-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 108, 255, 0.3);
    color: white;
}

/* Bottom Row / Copyright */
.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-top: 40px !important;
    font-size: 0.85rem;
}

.footer-bottom-row .uk-subnav a {
    color: #a0aec0;
    font-weight: 500;
}

.footer-bottom-row .uk-subnav a:hover {
    color: #ffffff;
}

.footer-bottom-row .uk-subnav-divider> :nth-child(n+2):not(.uk-first-column)::before {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 959px) {
    .footer-bottom-row {
        flex-direction: column;
        gap: 16px;
    }
}