/* assets/css/footer.css */
.footer {
    background: var(--dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}