/* =========================================================================
   Account-Block hotline bar + Digital Banking Inquiries box
   - Homepage top bar carries the dedicated account-block contact numbers.
   - The inquiries card lists the mobile-banking / QR support contacts and is
     shown on the homepage and the Contact Us page.
   Brand colours: #384474 / #dd974e.
   ========================================================================= */

/* --- Top account-block hotline bar (homepage only) --- */
.mpf-block-bar {
   position: relative;
   display: flex;
   align-items: center;
   background: linear-gradient(90deg, #b81f1f, #e23b3b);
   color: #fff;
   font-family: 'Roboto', sans-serif;
   border-bottom: 2px solid #8f1414;
   z-index: 1000;
}
.mpf-block-bar-marquee {
   flex: 1 1 auto;
   overflow: hidden;
   padding: 8px 0;
}
.mpf-block-bar-marquee marquee { vertical-align: middle; }
.mpf-block-bar-content {
   font-size: 15px;
   font-weight: 600;
   letter-spacing: .3px;
   white-space: nowrap;
}
.mpf-block-bar-content strong { font-weight: 800; }
.mpf-block-bar-content a {
   color: #fff;
   font-weight: 800;
   text-decoration: none;
   padding: 0 4px;
}
.mpf-block-bar-content a:hover { text-decoration: underline; }
.mpf-block-bar-close {
   flex: 0 0 auto;
   background: transparent;
   border: 0;
   color: #fff;
   font-size: 22px;
   line-height: 1;
   padding: 0 16px;
   cursor: pointer;
   opacity: .85;
}
.mpf-block-bar-close:hover { opacity: 1; }
@media (max-width: 575px) {
   .mpf-block-bar-content { font-size: 13px; }
   .mpf-block-bar-close { padding: 0 12px; font-size: 20px; }
}

/* --- Digital Banking Inquiries card --- */
.mpf-digital-inquiry-wrap {
   padding: 40px 0;
   background: #f5f6fa;
}
.mpf-digital-inquiry {
   max-width: 520px;
   margin: 0 auto;
   background: #fff;
   border: 1px solid #e3e6ef;
   border-top: 4px solid #384474;
   border-radius: 8px;
   box-shadow: 0 6px 20px rgba(56, 68, 116, .08);
   padding: 28px 30px;
   font-family: 'Roboto', sans-serif;
}
.mpf-digital-inquiry h2 {
   font-size: 22px;
   font-weight: 800;
   color: #384474;
   margin: 0 0 4px;
   text-align: center;
}
.mpf-digital-inquiry .mpf-di-sub {
   text-align: center;
   color: #dd974e;
   font-weight: 700;
   font-size: 14px;
   letter-spacing: .5px;
   margin: 0 0 18px;
   text-transform: uppercase;
}
.mpf-digital-inquiry .mpf-di-row {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 10px 6px;
   border-bottom: 1px solid #eef0f5;
}
.mpf-digital-inquiry .mpf-di-row:last-child { border-bottom: 0; }
.mpf-digital-inquiry .mpf-di-row i {
   flex: 0 0 34px;
   width: 34px;
   height: 34px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: #384474;
   color: #fff;
   border-radius: 50%;
   font-size: 15px;
}
.mpf-digital-inquiry .mpf-di-row p {
   margin: 0;
   font-size: 16px;
   color: #333;
   font-weight: 600;
   word-break: break-word;
}
.mpf-digital-inquiry .mpf-di-row a {
   color: #384474;
   text-decoration: none;
}
.mpf-digital-inquiry .mpf-di-row a:hover {
   color: #dd974e;
   text-decoration: underline;
}
