.footer { background: linear-gradient(135deg, var(--purple-dark) 0%, #2a0045 100%); color: var(--white); padding: 4rem 2rem 2rem; margin-top: 4rem; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--pink-medium); }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; line-height: 2; font-size: 0.95rem; transition: all 0.3s ease; display: block; }
.footer-col a:hover { color: var(--pink-medium); padding-right: 5px; }
.footer-col i { margin-left: 8px; color: var(--purple-light); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s ease; }
.social-links a:hover { background: var(--purple-btn); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.9rem; }

@media (max-width: 1024px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}