/* ---------- FOOTER (Standalone CSS File) ---------- */
.site-footer {
    background: #22B59A;
}
.site-footer {
    background: #22B59A;
    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;
}



/* 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; 
}



.socials {
    display: flex;
    gap: 12px; /* Slightly smaller gap for smaller icons */
    justify-content: center;
    align-items: center;
}

/* Reduced size from 56px to 40px */
.social-icon {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.25s ease; /* Moved transition here for smoothness */
}

/* Logo sizing stays at 60% of the new 40px container */
.social-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

/* Brand backgrounds */
.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.facebook { background: #1877F2; }
.twitter { background: #000; } /* Usually X is black or white */
.whatsapp { background: #25D366; }

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
}


