/* Footer Styles */
footer {
    background: #0a0e27;
    border-top: 1px solid rgba(100, 100, 150, 0.2);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo .logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo .logo-icon>img {
    width: 100%;
    height: 100%;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #909090;
    line-height: 1.6;
    margin-bottom: 1rem;
}


.footer-social-links {
	display: flex;
	gap: 15px;
	justify-content: left;
	animation: fade-in-up 0.8s ease-out 0.8s backwards;
}

.social-icon svg {
	width: 20px;
	height: 20px;
}

.footer-social-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social-icon svg {
	width: 20px;
	height: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: #909090;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a855f7;
}

.footer-divider {
    border-top: 1px solid rgba(100, 100, 150, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #707070;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.75rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-divider {
        padding-top: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem 1rem 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .footer-section ul li {
        margin-bottom: 0.6rem;
    }

    .footer-section ul li a {
        font-size: 0.8rem;
    }

    .footer-divider {
        padding-top: 1rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}