/* 清新科技风主题 CSS - 保洁行业 */

/* 玻璃卡片效果 - 明亮版 */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* 悬停上浮效果 */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* 科技角标 - 清新版 */
.corner-tech {
  position: relative;
}

.corner-tech::before,
.corner-tech::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.corner-tech::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.corner-tech::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.corner-tech:hover::before,
.corner-tech:hover::after {
  width: 32px;
  height: 32px;
  border-color: rgba(59, 130, 246, 0.5);
}

/* 网格背景 - 浅色调 */
.cyber-grid {
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* 水波纹背景效果 */
.wave-bg {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

/* 清洁感渐变文字 */
.text-gradient-clean {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 按钮悬浮效果 */
.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
  transform: translateY(-1px);
}

/* 图标容器 */
.icon-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

/* 选中文字样式 */
::selection {
  background: rgba(6, 182, 212, 0.2);
  color: #0e7490;
}

/* 滚动条样式 - 清新版 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}

/* 动画效果 */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .glass-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
