/* Footer styles - footer.css */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding-top: 3rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-company {
    margin-left: 15px;
}

.footer-company h3 {
    margin-bottom: 5px;
}

.footer-company p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    min-width: 160px;
}

.footer-column h4 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 0;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright a {
    color: var(--light);
    text-decoration: underline;
}

/* Responsive Styles - Footer Section Specific */
@media (max-width: 992px) {
    .footer-links {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .copyright .container {
        flex-direction: column;
    }

    .copyright p:first-child {
        margin-bottom: 10px;
    }
}