
<style>
/* ================= FOOTER BASE ================= */
.footer-wrap{
    background: {{ $settings->footer_color }};
    color: #ffffff;
    padding: 40px 20px 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-inner{
    max-width: 1200px;
    margin: auto;
}

/* ================= TITLE ================= */
.footer-title{
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    position: relative;
}

.footer-title::after{
    content: '';
    width: 40px;
    height: 3px;
    background: #ffb347;
    display: block;
    margin-top: 8px;
}

/* ================= SUPPORT ================= */
.support-box{
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: #fff;
    text-decoration: none;
}

.icon-box{
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img{
    width: 24px;
}

.support-box small{
    font-size: 12px;
    opacity: .9;
    display: block;
}

.support-box strong{
    font-size: 15px;
}

/* ================= LINKS ================= */
.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
}

.footer-links a{
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    opacity: .95;
}

/* ================= STAY CONNECTED ================= */
.stay-box{
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px;
    max-width: 320px;
    margin-left: auto;
}

.stay-brand{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stay-email{
    font-size: 14px;
    margin-bottom: 16px;
}

.social-row{
    display: flex;
    gap: 14px;
}

.social-btn{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn img{
    width: 22px;
}

/* ================= PC VIEW ================= */
@media (min-width:1024px){
    .footer-inner{
        display: grid;
        grid-template-columns: 1.3fr 1fr 1.3fr;
        gap: 60px;
    }
}

/* ================= MOBILE VIEW FIX ================= */
@media (max-width:768px){

    .footer-inner{
        display: block;
    }

    /* TITLE CENTER */
    .footer-title{
        text-align: center;
    }

    .footer-title::after{
        margin-left: auto;
        margin-right: auto;
    }

    /* INFORMATION LINKS CENTER */
    .footer-links{
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-links li{
        width: 100%;
    }
/* ===== MOBILE BOTTOM NAV SAFE SPACE (CORRECT WAY) ===== */
@media (max-width:768px){
  body{
    padding-bottom: 70px !important; /* bottom menu height */
  }
}
    /* STAY CONNECTED CENTER */
    .stay-box{
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }

    .social-row{
        justify-content: center;
    }

    /* SAFE SPACE FOR BOTTOM MENU (NO EXTRA GAP) */
    .footer-wrap{
        padding-bottom: 90px !important;
    }

    .pb-3{
        padding-bottom: 60px !important;
        margin-bottom: 0 !important;
        text-align: center;
    }
}
/* ===== FORCE REMOVE GAP BELOW FOOTER ===== */
@media (max-width:768px){

  .footer-wrap{
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  .pb-3{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}
.footer-title::after{
    background: #ffb347;
}
</style>