.home-footer {
    background: linear-gradient(180deg, #f8f9fb 0%, #f0f3f7 100%);
    color: #333;
    margin-top: 80px;
    position: relative;
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, #1565C0 0%, #42A5F5 40%, #1565C0 100%);
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5vw 48px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand {
    padding-right: 32px;
}

.footer-logo img {
    height: 42px;
    margin-bottom: 22px;
}

.footer-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 340px;
}

.footer-section h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 24px;
    color: #1e293b;
    position: relative;
    padding-bottom: 14px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, #1565C0, #42A5F5);
    border-radius: 2px;
}

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

.footer-section ul li,
.footer-nav ul li {
    margin-bottom: 11px;
}

.footer-section ul li a,
.footer-nav ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-section ul li a:hover,
.footer-nav ul li a:hover {
    color: #1565C0;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.88rem;
}

.contact-list li .contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(21, 101, 192, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(21, 101, 192, 0.08);
}

.contact-list li .contact-icon i {
    color: #1565C0;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.contact-list li:hover .contact-icon {
    background: #1565C0;
    border-color: #1565C0;
}

.contact-list li:hover .contact-icon i {
    color: #fff;
}

.contact-list li a,
.contact-list li > span {
    color: #64748b;
    text-decoration: none;
    transition: color 0.25s;
    line-height: 1.65;
    padding-top: 7px;
}

.contact-list li a:hover {
    color: #1565C0;
}

/* Social links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    background: rgba(21, 101, 192, 0.06);
    color: #64748b;
    border: 1px solid rgba(21, 101, 192, 0.1);
}

.social-links a:hover {
    background: #1565C0;
    color: #fff;
    border-color: transparent;
}

.social-links a.linkedin,
.social-links a.instagram {
    background: rgba(21, 101, 192, 0.06);
    color: #64748b;
    border-color: rgba(21, 101, 192, 0.1);
}

.social-links a.linkedin:hover,
.social-links a.instagram:hover {
    background: #1565C0;
    color: #fff;
}

/* Footer bottom bar */
.footer-bottom {
    background: rgba(21, 101, 192, 0.04);
    border-top: 1px solid rgba(21, 101, 192, 0.08);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.82rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.25s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #1565C0;
}

.footer-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

/* Footer Responsive — 900px */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 4vw 38px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-desc {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Footer Responsive — 600px */
@media (max-width: 600px) {
    .home-footer {
        margin-top: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 5vw 28px;
    }

    .footer-brand {
        grid-column: unset;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 0.76rem;
        margin-bottom: 18px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav ul {
        text-align: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

    .footer-divider {
        display: none;
    }

    .social-links {
        justify-content: center;
    }
}
