a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

a:focus {
    outline: none;
}

button:focus {
    outline: none;
}

.footer-contact {
    color: #fff;
    line-height: 30px;
}

.footer-contact span {
    font-size: 15px;
}

.footer {
    background: var(--nav-color);
    padding: 40px 0px 20px 0px;
    font-size: 14px;
    color: #cbd5e1;
    /* Slate 300 */
    letter-spacing: 0;
}

.footer ul {
    list-style: none;
    padding-left: 0px;
}

.footer-nav li a {
    color: #cbd5e1;
    font-size: 14px;
    padding: 0 5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-nav li a.footer-home-link {
    border-left: none;
}

.footer-link-panel {
    background-color: var(--accent-color) !important;
    margin-top: 0px;
    padding: 15px 0px;
    border-radius: 8px;
}

.footer-link-panel ul {
    list-style: none;
    padding-left: 0px;
}

.footer-link-panel li {
    padding: 5px;
}

.footer-link-panel li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-link-panel h4 {
    color: #fff;
    font-weight: 700;
}

/* Social Icons - Modernized */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}