/* Noto Sans SC Font */
@font-face {
    font-family: "Noto Sans SC";
    src: url("../fonts/NotoSansSC-Bold.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}

/* Footer Styles */
.footer {
    background:url(../images/home/business-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:100px 10% 50px;
    font-size: 14px;
    color: #333;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 70px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-company {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    font-family: "Noto Sans SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}

/* Info Section */
.footer-info {
    flex: 1;
    line-height: 1.8;
}

.footer-info p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #666;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 5% 30px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-links {
        text-align: center;
        flex-direction: row;
        gap: 20px;
    }

    .footer-social {
        margin-top: 30px;
        padding-top: 20px;
    }
}
