.footer {
    background: #1a1f2b;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #4CAF50;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-link {
    color: rgba(255,255,255,0.8) !important;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.footer-link i {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-right: 8px;
}

.footer-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.8) !important;
}

.social-link:hover {
    transform: translateY(-5px);
    background: #4CAF50;
    color: white !important;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        padding: 40px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        padding: 0 20px;
    }
    
    .contact-item {
        width: 100%;
    }
}
