/* Footer Enhancement Styles */
.footer {
    position: relative;
    padding: 40px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced footer title styles */
.footer .footer-title h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Enhanced footer links */
.footer .footer-links li a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer .footer-links li a:hover {
    transform: translateX(5px);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Enhanced footer text */
.footer p, 
.footer address, 
.footer .footer-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

/* Footer social icons enhancement */
.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Copyright section enhancement */
.footer .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Make footer stand out with subtle background */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}
