/* ═══════════════════════════════════════════
   WOW.CSS — Premium visual effects layer
   Scroll progress · Cursor · Particles · Tilt
   ═══════════════════════════════════════════ */

/* ── Scroll Progress Bar ──────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #059669, #34D399, #10B981, #34D399);
  background-size: 300% auto;
  animation: gradientShift 3s linear infinite;
  z-index: 10001;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* ── Hero Particle Canvas ─────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* Canvas sits behind all hero content — it's first in DOM so no z-index fighting needed */

/* ── 3D Tilt — smooth reset ───────────────── */
.svc-card,
.team-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease !important;
}
.svc-card.is-tilting,
.team-card.is-tilting {
  transition: transform 0.08s linear,
              box-shadow 0.08s linear !important;
}

/* ── Gradient animated eyebrow text ──────── */
.eyebrow {
  background: linear-gradient(90deg, #059669 0%, #34D399 45%, #10B981 70%, #059669 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

/* ── Glowing highlight span in hero ──────── */
.hero-heading .highlight {
  background: linear-gradient(90deg, #34D399, #10B981, #6EE7B7, #10B981);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3.5s linear infinite;
  display: inline-block;
}

/* ── Section heading accent word ─────────── */
.sec-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glassy shimmer on stat cards ────────── */
.stat-item {
  position: relative;
  overflow: hidden;
}
.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.07) 50%, transparent 60%);
  background-size: 200% auto;
  animation: shimmer 3.5s linear infinite;
  pointer-events: none;
}

/* ── Floating CTA card pulse ring ─────────── */
.float-wa-btn {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0);    }
}

/* ── Service card inner glow on hover ─────── */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }
