/* Footer Styles - Modern and Organized */
.footer {
    background-color: #191A1F;
    padding: 4rem 0 2rem;
    font-family: 'Nunito', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

/* Logo and Description */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    font-size: 1.76rem;
    line-height: 1.6;
    color: rgb(230, 227, 227);
    max-width: 90%;
    text-align: left;
    margin-top: 0;
}

/* Links Section */
.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, #1E88E5, #4ECDC4);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #1E88E5;
    transition: width 0.3s ease;
}

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

/* Social Media Section */
.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, #1E88E5, #4ECDC4);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #1E88E5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons img {
    width: 18px;
    height: 18px;
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: brightness(0) invert(1);
}

/* Copyright Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
    margin-top: 3rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-logo img {
        margin-bottom: 1rem;
    }
    
    .footer-links h4, 
    .footer-social h4 {
        margin-bottom: 1rem;
    }
}
