/* ================= FOOTER ================= */

.footer {
    background-color: #0f766e;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
}

/* ===== TOP FOOTER ===== */
.top-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
    align-items: flex-start;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    min-width: 150px;
}

.footer-logo .logo-img {
    width: 80px;
    height: 80px;
    border-radius: 60%;
    border: 2px solid #4a6fa5;
}

.footer-logo .logo-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

.footer-logo .logo-desc {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
}

/* ===== CONTACT INFO ===== */
.widget-contact {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

.widget-contact h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.widget-contact p {
    color: #ffffff;
}

/* ===== QUICK LINKS ===== */
.widget-links {
    flex: 1;
    min-width: 150px;
    font-size: 14px;
}

.widget-links h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.widget-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links ul li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 3px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.widget-links ul li a:hover {
    color: #d1f2eb;
}

/* ===== MAP ===== */
.widget-iframe {
    flex: 1;
    min-width: 200px;
}

.widget-iframe h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.map-box {
    width: 100%;
    height: 200px;
    border: 2px solid #333;
    border-radius: 6px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== BOTTOM FOOTER ===== */
.bottom-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #ffffff;
}

.bottom-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.bottom-footer a:hover {
    color: #d1f2eb;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-footer {
        flex-direction: column;
        gap: 20px;
    }
}