.modern-footer {
    background: linear-gradient(to bottom, #bbe3f700, #2e81d3);
    color: white;
    padding: 40px 20px 20px;
    font-family: 'Prompt', sans-serif;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    color: white;
}

.footer-left {
    flex: 1 1 350px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.footer-left h3 {
    font-size: 22px;
    margin: 10px 0;
}

.footer-left p {
    font-size: 14px;
    margin: 6px 0;
}

.footer-right {
    flex: 1 1 500px;
}

.footer-right h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.map-gallery img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.map-gallery iframe {
    flex: 1 1 250px;
    min-height: 150px;
    border: none;
    border-radius: 8px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50%;
    transition: background 0.3s;
    width: 51px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    margin-top: 30px;
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid #ffffff55;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-right {
        flex: 0 1 auto;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-gallery {
        flex-direction: column;
    }

    .map-gallery iframe {
        width: 100%;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-container {
        padding: 00px;
    }
}