/* 右侧悬浮联系方式样式 */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s ease-out;
  text-decoration: none;
}

.floating-btn.whatsapp {
  background: #25D366;
}

.floating-btn.wechat {
  background: #07C160;
}

.floating-btn.phone {
  background: var(--primary-blue);
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* 移动端适配 */
@media (max-width: 767px) {
  .floating-contact {
    right: 16px;
    bottom: 80px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}
