/* Footer Container Setup */
.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 5% 0px;
    background: #1F231F;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px;
    gap: 48px;
    width: 100%;
    max-width: 1204px;
    margin: 0 auto;
    padding-bottom: 32px;
}

/* Footer Brand Area */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    flex: 2 1 340px;
    max-width: 464px;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.footer-logo .site-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.brand-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 320px;
}

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

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    color: #FFFFFF;
}

/* Footer Links Columns */
.footer-links-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 150px;
    min-width: 140px;
}

.footer-links-col h3,
.footer-connect h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu li a:hover {
    color: #FFFFFF;
}

/* Footer Connect / Social */
.footer-connect {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 150px;
    min-width: 140px;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon .icon {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 1204px;
    margin: 0 auto;
    padding: 32px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.hipaa-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 16px;
    gap: 8px;
    height: 32px;
    background: rgba(34, 140, 34, 0.1);
    border-radius: 10px;
}

.hipaa-badge .icon {
    width: 16px;
    height: 16px;
}

.badge-text {
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    width: 100%;
    max-width: 1204px;
    margin: 0 auto;
    padding-bottom: 32px;
    text-align: start;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 896px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .site-footer {
        padding: 64px 5% 0px;
    }
    .footer-top {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 48px 5% 0px;
    }
    .footer-brand {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-links-col, .footer-connect {
        flex: 1 1 100%;
    }
}
