/* Footer Component Styles */

.footer {
    background-color: var(--primary-800);
    border-top: 4px solid var(--primary-600);
}

.footer h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--space-6);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-default);
}

.footer .list-unstyled a:hover {
    color: var(--accent-500);
}

/* Social links */
.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-default);
}

.social-links a:hover {
    background-color: var(--accent-500);
    color: var(--text-900);
    transform: translateY(-2px);
}

/* Footer divider */
.footer hr {
    border-color: rgba(255, 255, 255, 0.15);
    margin: var(--space-8) 0;
}

.footer .row:last-child p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer .row:last-child {
        text-align: center;
    }

    .footer .row:last-child .col-md-6:last-child {
        margin-top: 1rem;
    }
}
