/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    padding: 3rem 0 1.5rem;
}


footer h4 {
    color: rgb(66, 189, 226);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section p {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}



.footer-links li a{
    list-style: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: white;
    
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
} 

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



.scl-links {
    display: block;
}

.scl-links a {
    opacity: 1;
    transition: var(--transition);
}

.scl-links a:hover {
    opacity: 1;
    color: var(--primary-color);
} 

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.537);
    opacity: 0.8;
}
.footer img {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -4px;
    margin-left: 8px;
}

.nav-links {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links:hover {
    color: var(--primary);
}

.nav-links:hover::after {
    width: 100%;
}