/* Footer Section Styles */
.footer {
    padding: 6rem 0 3rem;
    background-color: var(--zoom-navy);
}

.footer-branding h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.footer-branding p {
    color: var(--slate-100);
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links a {
    color: var(--slate-100);
    opacity: 0.8;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    opacity: 1;
    transform: translateX(5px);
}

.footer-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
    color: var(--slate-200);
    opacity: 0.6;
}