/* --- Footer --- */
.main-footer { background-color: #0a0a0a; padding: 80px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo img { height: auto; max-height: 60px; }
.logo-text { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: 1px; }
.logo-text span { color: var(--primary-lime); }

.footer-bio { line-height: 1.8; color: #b0b0b0; max-width: 350px; }
.footer-title { color: #fff; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; right: 0; width: 30px; height: 2px; background-color: var(--primary-lime); }

.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #b0b0b0; }

.social-icons { display: flex; gap: 15px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.8rem; font-weight: bold; transition: var(--transition); }
.social-link:hover { background: var(--primary-lime); color: #000; transform: translateY(-5px); }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); color: #666; font-size: 0.9rem; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-title::after { right: 50%; transform: translateX(50%); }
    .contact-list li { justify-content: center; }
    .social-icons { justify-content: center; }
}