/* =========================================
   Ultra-Clean Light Footer (No Textures)
   ========================================= */
.footer-clean {
    background-color: #f8fafc;
    /* Solid, crisp light-gray */
    position: relative;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Vibrant Brand Top Line (Creates instant separation) */
.footer-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gb-accent) 0%, #38bdf8 50%, #2ecc71 100%);
}


.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    /* margin-bottom: 1rem; */
    display: inline-block;
    text-decoration: none;
}

.footer-brand span {
    color: var(--gb-accent);
}

.footer-clean h5 {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* Subtle Hover Arrow */
.footer-link::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--gb-accent);
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-link:hover {
    color: var(--gb-accent);
    transform: translateX(4px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Clean Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: var(--gb-accent);
    border-color: var(--gb-accent);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(30, 136, 229, 0.2);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .footer-bottom-links {
        justify-content: flex-end;
        margin-top: 0;
    }
}
