/* ==========================================================================
   FOOTER SECTION - COMPACT MINIMAL DESIGN
   ========================================================================== */

.footer-section {
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.95) 0%, #0a0a0b 100%);
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Footer Content */
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

/* Footer Branding */
.footer-brand {
    max-width: 100%;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.footer-logo .text-blue {
    color: #3b82f6;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Footer Links */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-contact-list i {
    color: #3b82f6;
    font-size: 14px;
    width: 18px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #3b82f6;
}

/* Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.15);
}

/* Footer Bottom */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    margin-bottom: 30px;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-copyright p {
    margin: 8px 0;
}

.footer-made-with {
    font-size: 13px;
}

.footer-made-with .heart {
    color: #ef4444;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-nav a {
        display: inline;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-social {
        margin-bottom: 30px;
    }
}