/* Global Footer Styling */
footer {
    padding: 80px 0 40px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #475569;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: #2563eb;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
    font-size: 1.1rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.2;
}

.footer-links a:hover {
    color: #2563eb;
    padding-left: 8px;
    font-weight: 500;
}

.footer-contact i {
    color: #2563eb;
    margin-right: 10px;
    width: 20px;
}

.social-links a {
    font-size: 1.25rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #2563eb;
    transform: translateY(-3px);
}

.copyright-section {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 30px;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-links a:hover {
        transform: none;
    }
    .footer-links a {
        justify-content: center;
        padding-left: 0;
    }
    .social-links {
        justify-content: center;
        gap: 2rem !important;
    }
}

.dev-credit-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dev-credit-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Sticky Footer Utility */
.fixed-footer-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 0 !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: block !important;
}

.fixed-footer-bottom .footer-brand, 
.fixed-footer-bottom .footer-links, 
.fixed-footer-bottom hr {
    display: none !important;
}

.fixed-footer-bottom .copyright-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border: none !important;
}
