/* 
   FOOTER DESIGN (DARK PREMIUM STYLE)
   GHealth v3.3
*/

.site-footer {
    background-color: #0f2f44;
    padding: 40px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left .footer-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.footer-left .footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-right .btn-contact {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.footer-right .btn-contact:hover {
    background-color: #ffffff;
    color: #0f2f44;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
