.footer-accent-bar {
    height: 6px;
    background-color: var(--color-secondary);
}

.footer-main {
    background-color: var(--color-dark-navy);
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo img {
    display: block;
}

.footer-desc {
    text-align: justify;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social-link:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.footer-contact li i {
    margin-top: 3px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text-muted-footer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.text-muted-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.text-muted-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}