/* BeNext Gen brand overrides layered on top of the Nuvia template's own CSS.
   Template CSS/JS/images are untouched — this file only replaces the
   Nuvia wordmark logo (which had "Nuvia" baked into the PNG) with a
   BeNextGen text logo, and adds a couple of small content fixes. */

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}
.brand-logo .brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #000000 50%, #c2ff83 50%);
  display: inline-block;
  flex-shrink: 0;
}
.brand-logo .brand-text {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000000;
  white-space: nowrap;
}
.brand-logo .brand-text em {
  font-style: normal;
  color: #8fd94f;
}

.footer-con .brand-logo .brand-text { color: #ffffff; font-size: 20px; }
.footer-con .brand-logo .brand-text em { color: #c2ff83; }

/* WhatsApp floating chat button — bottom-left so it never collides with
   the template's own bottom-right back-to-top button. */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float i {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.55);
  animation: whatsapp-pulse 2.2s ease-out infinite;
  z-index: -1;
}
.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #14150f;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; display: none; }
}
@media (max-width: 600px) {
  .whatsapp-float { left: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float i { font-size: 26px; }
  .whatsapp-tooltip { display: none; }
}
