/* FOOTER Section Styles */
.footer-section {
    padding: 50px 0px;
    background: var(--secondary-color);
    box-shadow: 0px -12px 20px rgba(71, 71, 71, 0.23);
}

.footer {
    color: var(--black);
    padding: 0 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section-wrapper {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-list li:hover {
    transform: translateX(5px);
}

.footer-link {
    color: var(--paragraph);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    color: var(--paragraph);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.footer-contact-visit {
    display: flex;
    flex-direction: column;
}

.footer-map {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-map-img:hover {
    transform: scale(1.03);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0 0 0;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.footer-copyright,
.footer-company {
    color: var(--paragraph);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-link {
    color: var(--paragraph);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-section-wrapper {
        min-width: calc(50% - 30px);
    }

    .footer-contact-visit {
        flex-direction: row;
    }

    .footer-contact,
    .footer-visit {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-section-wrapper {
        min-width: 100%;
    }

    .footer-contact-visit {
        flex-direction: column;
    }

    .footer-bottom-links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-title {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .footer-list li {
        margin-bottom: 12px;
    }

    .footer-link,
    .footer-contact-item {
        font-size: 15px;
    }

    .footer-logo-img {
        max-width: 120px;
    }
}