.footer {
    background: #2d1856;
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #e83e8c;
    box-shadow: 0 -4px 32px rgba(44, 62, 80, 0.10);
    border-radius: 32px 32px 0 0;
}

/* Remove pattern overlay */
.footer::before {
    display: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-about {
    max-width: 350px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.97rem;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e83e8c;
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #e0cfff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

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

.footer-links i {
    font-size: 0.8rem;
}

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

.footer-contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-info i {
    font-size: 1.1rem;
    color: #e83e8c;
    margin-top: 0.2rem;
}

.footer-contact-info span {
    color: #e0cfff;
    font-size: 0.97rem;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #bbaadd;
    font-size: 0.93rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links a {
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 62, 140, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    text-decoration: none;
}

.social-links a:hover {
    background: #fff;
    color: #e83e8c;
    transform: translateY(-3px) scale(1.1);
}

@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
        border-radius: 24px 24px 0 0;
    }
    .footer-about {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .footer-title {
        margin-top: 1.5rem;
    }
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom p {
        margin-bottom: 1rem;
    }
} 