/* Enhanced Footer Design */

.footer {
    background: linear-gradient(180deg, #1e2139 0%, #141527 100%);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(107, 2, 255, 0.2);
    position: relative;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.footer-top {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    margin-bottom: 40px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.footer .footer-link a {
    display: block;
    padding: 10px 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer .footer-link a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer .footer-link a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.footer .footer-link a:hover::before {
    transform: translateX(5px);
}

.footer .footer-social {
    margin-top: 25px;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: rgba(107, 2, 255, 0.1);
    border: 1px solid rgba(107, 2, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer .footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(107, 2, 255, 0.3);
}

.footer .copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer .copyright p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer .copyright p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .copyright p a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}
