.header-quick-actions {
  display: inline-block;
  vertical-align: top;
  margin-left: 22px;
}

.header-quick-actions a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  margin-left: 14px;
  transition: color 0.25s ease;
}

.header-quick-actions a:first-child {
  margin-left: 0;
}

.header-quick-actions a:hover {
  color: #ff7603;
}

@media (max-width: 991px) {
  .header-quick-actions {
    display: none;
  }
}

#fab-container {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999997;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: bottom 0.3s ease;
}

#fab-container.fab--raised {
  bottom: 86px;
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#fab-container.fab--open .fab-option {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-option__label {
  background: #131313;
  color: #c9c9c9;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.fab-option__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.fab-option__btn:hover {
  transform: scale(1.08);
}

.fab-option__btn--whatsapp { background: #25D366; }
.fab-option__btn--meeting { background: #ff7603; }
.fab-option__btn--sms { background: #3b7dd8; }

#fab-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  color: #ff7603;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

#fab-container.fab--open #fab-toggle {
  transform: rotate(135deg);
}

#meeting-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#meeting-modal.meeting-modal--open {
  display: flex;
}

.meeting-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.meeting-modal__panel {
  position: relative;
  background: #131313;
  border-top: 2px solid #ff7603;
  width: 100%;
  max-width: 720px;
  height: 80vh;
  max-height: 640px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.meeting-modal__panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.meeting-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff7603;
  color: #131313;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
  .meeting-modal__panel {
    height: 88vh;
    max-height: none;
  }
  .meeting-modal__close {
    top: 8px;
    right: 8px;
  }
}
