.footer {
    position: relative;
    background: linear-gradient(to top, #0a0a1a, rgba(10, 10, 26, 0.9));
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(108, 43, 217, 0.5), transparent);
}

.footer-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: #6c2bd9;
}

.footer-link {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: #8347e5;
    transform: translateX(4px);
}

.social-icon {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 43, 217, 0.1);
    color: #a0aec0;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #6c2bd9, #8347e5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 12px rgba(108, 43, 217, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-contact-info {
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    transform: translateX(4px);
}

.footer-brand-text {
    background: linear-gradient(45deg, #8347e5, #6c2bd9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
