﻿.footer {
    background: var(--mainColor, #4a90e2);
    color: white;
    padding: 30px 0 20px;
}

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

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-divider {
    border-top: 1px solid #00152B;
    border-bottom: 1px solid #1470E0;
    margin: 20px 0;
}


.footer-divider-vertical {
    border-left: 1px solid #00152B;
    border-right: 1px solid #1470E0;
    margin: 0 20px;
    height: 125px;
    width: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links .divider {
    color: white;
    font-size: 12px;
    opacity: 0.6;
    height: 17px;
    background: none;
}

.hotline {
    font-size: 16px;
    font-weight: bold;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.hotline span:first-child {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 2px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.company-info {
    flex: 1;
    margin-top: 0 !important;
}

.logo-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.company-details {
    flex: 1;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.qrcode-section {
    flex-shrink: 0;
}

.qrcode-container {
    text-align: center;
}

.qrcode {
    width: 120px;
    height: 120px;
}

.qrcode-text {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: white;
}


.copyright {
    text-align: center;
}

.copyright a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
}

.copyright a span {
    display: inline;
    font-size: inherit;
}