/* FOOTER */
.footer {
    background-color: #2f3842;
    color: #ffffff;
}

.footer-container {
    display: flex;
    gap: 40px;
    padding: 40px 40px;
    flex-wrap: wrap;
}

/* COMMON COLUMNS */
.footer-left,
.footer-middle,
.footer-right {
    flex: 1 1 300px;
}

/* LEFT */
.footer-left img {
    width: 120px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.footer-left h3 {
    margin: 10px 0;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 20px;
    display: flex;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}

.social-icons a:nth-child(1) { background: #3b5998; }
.social-icons a:nth-child(2) { background: #e1306c; }
.social-icons a:nth-child(3) { background: #0077b5; }

.social-icons i {
    font-size: 18px;
}

/* MIDDLE (MAPS) */
.footer-middle iframe {
    width: 100%;
    max-width: 100%;
    height: 230px;
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

/* RIGHT */
.footer-right h2 {
    margin-bottom: 15px;
}

.footer-right h4 {
    margin-top: 20px;
    margin-bottom: 8px;
}

.footer-right p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-right i {
    margin-right: 8px;
}

.timing {
    margin-top: 10px;
    font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
    background-color: #0d3b8e;
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .footer-container {
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-left img {
        display: block;
        margin: 0 auto 15px;
    }
}

/* GLOBAL SAFETY */
body {
    overflow-x: hidden;
}
