/* Footer Styles */
footer {
    background-color: var(--dark-teal);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.footer-divider.animate {
    transform: scaleX(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        gap: 2rem;
    }
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

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

.footer-column a {
    color: var(--bg-footer);
    font-size: 0.8rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.footer-bottom.animate::before {
    transform: scaleX(1);
}

.footer-bottom-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-copyright {
    color: var(--bg-footer);
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Footer Responsive Styles */
@media (max-width: 968px) {
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-logo {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-social {
        margin-top: 0.5rem;
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }
}

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

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

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-bottom-content {
        font-size: 0.8rem;
    }

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

