/* ===== FOOTER ===== */
.footer
{
    background-color: var(--dark-blue);
    color: white;
    padding-top: var(--spacing-xxl);
}

.footer-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-xl);
}

.footer-logo a
{
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
}

.footer-logo a span
{
    color: var(--primary-light);
}

.footer-about p
{
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.social-links
{
    display: flex;
    gap: var(--spacing-md);
}

.social-links a
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all var(--transition-normal);
}

.social-links a:hover
{
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer h3
{
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer h3::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li
{
    margin-bottom: var(--spacing-sm);
}

.footer-links ul li a,
.footer-services ul li a
{
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover
{
    color: white;
    padding-left: var(--spacing-sm);
}

.footer-contact ul li
{
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact ul li i
{
    margin-right: var(--spacing-sm);
    color: var(--primary-light);
}

.footer-bottom
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links
{
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a
{
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover
{
    color: white;
}

@media (max-width: 768px)
{
    .footer-grid
    {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-bottom
    {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}
