/* ISB Contact Buttons – all classes prefixed with .isb- */

.isb-wrap {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

/* ── Main Button – white bg, black border, black icon ── */
.isb-wrap .isb-btn,
.isb-wrap .isb-btn:hover,
.isb-wrap .isb-btn:focus,
.isb-wrap .isb-btn:active {
  border: 2.5px solid #000000 !important;
  border-radius: 50% !important;
  outline: none !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.isb-btn {
  width: 58px;
  height: 58px;
  background-color: #ffffff !important;
  color: #000000;
  cursor: pointer;
  position: relative;
  box-shadow: none;
  transition: transform .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.isb-btn:hover {
  transform: scale(1.06);
background-color: #ffffff !important;
}
.isb-btn:active {
  transform: scale(1.06);
background-color: #ffffff !important;
}

/* ── Rotating icons – black ── */
.isb-icons {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: opacity .25s, transform .25s;
}

.isb-icons svg {
  position: absolute;
  opacity: 0;
  transition: opacity .4s ease;
}

.isb-icons svg.isb-active {
  opacity: 1;
}

/* ── Close icon – black ── */
.isb-close-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}

/* open state */
.isb-btn[aria-expanded="true"] .isb-icons {
  opacity: 0;
  transform: scale(.7) rotate(90deg);
  pointer-events: none;
}

.isb-btn[aria-expanded="true"] .isb-close-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  pointer-events: auto;
}

/* ── Menu ── */
.isb-menu {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transform: scale(.85) translateY(12px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.isb-menu.isb-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
	background-color: #ffffff !important;
	
}

/* ── Menu items – override Elementor ── */
.isb-wrap a.isb-menu-item,
.isb-wrap a.isb-menu-item:hover,
.isb-wrap a.isb-menu-item:focus,
.isb-wrap a.isb-menu-item span,
.isb-wrap a.isb-menu-item strong {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: inherit;
}

.isb-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.35;
  transition: background .15s;
}

.isb-menu-item:hover {
  background: rgba(255,255,255,.08);
}

.isb-menu-item + .isb-menu-item {
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ── Menu icons ── */
.isb-menu-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.isb-icon-wa    { background-color: #25d366; }
.isb-icon-mail  { background-color: #555;    }
.isb-icon-phone { background-color: #007aff; }

.isb-menu-label strong {
  font-weight: 600;
  display: block;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .isb-wrap {
    bottom: 16px;
    right: 14px;
  }
  .isb-menu {
    min-width: 210px;
  }
}
