/* Footer Social List */
footer .pt-social-link ul {
    padding: 0;
    margin: 0;
}
footer .pt-social-link ul li {
    display: inline-block;
    margin: 0 6px;
    text-align: center;
}
footer .pt-social-link ul li a {
    width: 40px;
    height: 40px;
	font-size: 22px; 
    display: flex;              
    align-items: center;        
    justify-content: center;    
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s ease;
    text-align: center;
}

.contact-link:hover {
    color: #fafafa !important;
}

/* Brand Colors */
footer .fa-facebook { color: #1877F2 !important; }
footer .fa-instagram { color: #E4405F !important; }
footer .fa-youtube { color: #FF0000 !important; margin-left: 0px;}
footer .fa-twitter { color: #1DA1F2 !important; }
footer .bi-threads { color: #000000 !important; }

/* Hover */
footer .pt-social-link ul li a:hover {
    transform: scale(1.1);
}

/* Navbar Social List */
.header .topbar-right .secondary-inner ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header .topbar-right .secondary-inner ul li {
    display: inline-block;
    margin: 0 6px;
}

.header .topbar-right .secondary-inner ul li a {
    width: 35px;
    height: 35px;
	font-size: 20px;
    display: flex;              
    align-items: center;        
    justify-content: center;    
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s ease;
    color: inherit; /* default color, override brand colors below */
}

/* Brand Colors */
.header .fa-facebook { color: #1877F2 !important; }
.header .fa-instagram { color: #E4405F !important; }
.header .fa-youtube { color: #FF0000 !important; }
.header .fa-twitter { color: #1DA1F2 !important; }
.header .bi-threads { color: #000000 !important; }

/* Hover Effect */
.header .topbar-right .secondary-inner ul li a:hover {
    transform: scale(1.1);
}

.whatsapp-icon img {
    height: 22px;
}

/* ================= MOBILE FOOTER FIX ================= */
@media (max-width: 767px) {

    /* Top logo + social section column layout */
    footer .pt-exebar .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    /* Logo center */
    footer .pt-logo {
        margin: 0 auto 20px auto !important;
        text-align: center;
    }

    footer .pt-logo img {
        max-width: 220px !important;
        width: 100%;
        height: auto;
    }

    /* Social icons center */
    footer .pt-social-link {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    footer .pt-social-link ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    /* OPTION 2 – 3 icons per row */
    footer .pt-social-link ul li {
        width: 30%;
        margin: 5px 0;
    }

    footer .pt-social-link ul li a {
        margin: 0 auto;
    }

    /* Footer columns stacking order */
    footer .row {
        flex-direction: column;
    }

    footer .footer-col-4,
    footer .col-lg-4,
    footer .col-md-7,
    footer .col-md-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Section spacing */
    footer .widget {
        margin-bottom: 25px;
        text-align: center;
    }

    footer .footer-title {
        text-align: left;
    }

    footer .widget ul {
        padding-left: 0;
        list-style: none;
    }

    footer .widget ul li {
        text-align: left;
        margin-bottom: 8px;
    }

}