/* footer.css - Simple Center Footer */

.myfooter {
    position: relative;
    width: 100%;
    padding: 15px 0;
    background-color: var(--business-primary);
    /* #1a1a2e */
    color: white;
    margin-top: 80px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-top: 5px solid var(--primary);
    /* Brand accent */
    text-align: center;
}

.myfooter .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 100px;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.hotline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.media {
    display: flex;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.media a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.media a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}