/* ===== HIBO: THANH TRÊN CÙNG ===== */
#header .header-top {
  background-color: #124019 !important;
  border-bottom: 0 !important;
  color: #ffffff !important;
}

/* Chữ, liên kết và biểu tượng */
#header .header-top,
#header .header-top a,
#header .header-top button,
#header .header-top i,
#header .header-top svg {
  color: #ffffff !important;
}

#header .header-top svg {
  fill: currentColor !important;
}

/* Màu khi rê chuột */
#header .header-top a:hover,
#header .header-top button:hover {
  color: #fff2a8 !important;
}
/* ===== HIBO: CHÂN TRANG ===== */
#footer .footer__main {
  background-color: #124019 !important;
  color: #ffffff !important;
  border-top: 0 !important;
}

/* Tiêu đề, nội dung, liên kết và biểu tượng */
#footer .footer__main,
#footer .footer__main p,
#footer .footer__main span,
#footer .footer__main li,
#footer .footer__main a,
#footer .footer__main i,
#footer .footer__main svg,
#footer .footer__main .h3,
#footer .footer__main .h4,
#footer .footer__main .block-contact {
  color: #ffffff !important;
}

/* Màu liên kết khi rê chuột */
#footer .footer__main a:hover {
  color: #fff2a8 !important;
}

/* Dòng bản quyền */
#footer .hibo-footer-copyright {
  margin-top: 35px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  text-align: center;
  font-size: 14px;
}
/* ===== HẾT HIBO FOOTER ===== */
.page-content--home {
    display: grid;
    gap: .5rem;
    }
    /* ===== HIBO: NÚT GỌI ĐIỆN NỔI ===== */
.hibo-floating-call {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-width: 58px;
  height: 58px;
  padding: 0 18px;

  border: 3px solid #ffffff;
  border-radius: 999px;

  color: #ffffff !important;
  background-color: #049dd9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.hibo-floating-call:hover {
  color: #ffffff !important;
  background-color: #037fb0;
  transform: translateY(-3px);
}

.hibo-floating-call svg {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  color: #ffffff;
}

.hibo-floating-call__text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.hibo-floating-call__ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(4, 157, 217, 0.55);
  border-radius: 999px;
  animation: hibo-call-pulse 1.8s infinite;
  pointer-events: none;
}

@keyframes hibo-call-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }

  70% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (max-width: 575px) {
  .hibo-floating-call {
    right: 16px;
    bottom: 18px;

    width: 58px;
    min-width: 58px;
    padding: 0;
  }

  .hibo-floating-call__text {
    display: none;
  }
}
/* ===== HẾT NÚT GỌI ĐIỆN NỔI ===== */