.footer {
    background: linear-gradient(135deg, #1a1f2b 0%, #2c3347 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.footer-content {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-menu-container {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.menu-column {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-heading {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffd700;
    padding-left: 10px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #ffd700;
    color: #1a1f2b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffd700;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-link:hover {
        padding-left: 0;
    }
    
    .footer-menu-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .menu-column {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-menu {
        text-align: center;
    }
}
