/* ---------- FOOTER (Standalone CSS File) ---------- */

.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 8%;
    font-size: 14px;
    margin-top: 50px;
    text-align: center;
}

/* MAIN FLEX WRAPPER */
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* FOOTER 3 SECTIONS */
.footer-left,
.footer-contact,
.footer-map {
    flex: 1 1 280px;
    min-width: 280px;
    text-align: center;
    margin: 0 1px;
}

/* LOGO */
.footer-logo{
    width:120px;
    height:auto;
    border-radius:14px;      /* 🔥 map sarkha smooth curve */
    object-fit:contain;
    display:block;
    margin:0 auto;
    background:#fff;         /* logo transparent असेल तर */
    padding:6px;             /* map-frame feel */
}

/* ADDRESS */
.footer-address {
    margin-top: 15px;
}

/* CONTACT SECTION */
.footer-contact h4 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 4px 0;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #3ba88f;
}

/* MAP SECTION */
.footer-map {
    text-align: center;
}

.footer-map h4 {
    text-align: center !important;
    margin: 0 0 15px 0;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
}

/* SOCIAL ICONS */
.socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 5%;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-left,
    .footer-contact,
    .footer-map {
        min-width: 100%;
        margin: 0;
    }
}
.footer-inner {
    justify-content: center;
    text-align: center; 
}
