/* ============================================================
   FORTIGLASS — WhatsApp Floating Button + Logo Styles
   ============================================================ */

/* ── WhatsApp floating button — unified pill design ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9990;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  text-decoration: none;
  /* Pill container */
  background: rgba(10, 18, 30, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 50px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(37,211,102,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.wa-float:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(37,211,102,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Label — slides in from right */
.wa-label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  padding: 0;
  transition:
    max-width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
}
.wa-float:hover .wa-label {
  max-width: 180px;
  padding: 0 18px 0 4px;
}

/* Icon circle — sits inside the pill */
.wa-icon {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 3px;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}
.wa-float:hover .wa-icon {
  background: #20c05a;
  transform: scale(1.05);
}
.wa-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* Subtle pulse — only on the icon, not the whole pill */
.wa-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── Logo in nav ── */
.logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
}
/* Fallback text logo */
.logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #ffffff, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none;
}


