/**
 * Sylvia Institute — floating WhatsApp & Apply buttons
 * Matches scroll-top sizing, shadows, radius, transitions, and z-index.
 */
.sit-float-btn {
  position: fixed;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px RGBA(var(--eduact-black2-rgb, 30, 30, 30), 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  text-decoration: none;
  transform: translateY(0);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.sit-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 2px RGBA(var(--eduact-black2-rgb, 30, 30, 30), 0.3),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

.sit-float-btn i {
  font-size: 22px;
  line-height: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.sit-float-btn--whatsapp {
  left: 30px;
  bottom: 30px;
  background-color: #25d366;
  color: #ffffff;
}

.sit-float-btn--whatsapp:hover {
  color: #ffffff;
}

.sit-float-btn--apply {
  right: 30px;
  bottom: 90px;
  background-color: var(--eduact-base, #f57005);
  color: #ffffff;
}

.sit-float-btn--apply:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .sit-float-btn {
    height: 46px;
    width: 46px;
  }

  .sit-float-btn i {
    font-size: 20px;
  }

  .sit-float-btn--whatsapp {
    left: 20px;
    bottom: 20px;
  }

  .sit-float-btn--apply {
    right: 20px;
    bottom: 76px;
  }
}
