/* Custom styles for Avenvox Call Center */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-dark: #0B1938;
  --navy-deep: #060E24;
  --cyan-bright: #00D2F3;
  --cyan-light: #E6FAFD;
  --cyan-glow: rgba(0, 210, 243, 0.25);
  --wa-green: #25D366;
  --wa-dark: #128C7E;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #FAFCFE;
  color: #1E293B;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Glassmorphism Header */
.glass-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Gradient Text */
.text-gradient-primary {
  background: linear-gradient(135deg, #0B1938 0%, #008CA3 50%, #00D2F3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00A8C6 0%, #00D2F3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating WhatsApp Button Animation */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-float:hover {
  transform: translateY(-5px) scale(1.05);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.75;
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Soft Glow Cards */
.card-hover-glow {
  transition: all 0.3s ease;
}

.card-hover-glow:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 210, 243, 0.15), 0 10px 20px -5px rgba(11, 25, 56, 0.04);
  border-color: rgba(0, 210, 243, 0.4);
}

/* Badge Glow */
.badge-trust {
  background: rgba(0, 210, 243, 0.08);
  border: 1px solid rgba(0, 210, 243, 0.3);
  color: #00768D;
}

/* Hero Background Decorative Grid */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(226, 232, 240, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
}

/* Glowing Radial Gradient Background */
.hero-glow-bg {
  background: radial-gradient(circle at 50% 0%, rgba(0, 210, 243, 0.12) 0%, rgba(250, 252, 254, 0) 70%);
}

/* Range Slider Styling for ROI Calculator */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: #E2E8F0;
  height: 8px;
  border-radius: 4px;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00D2F3;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 210, 243, 0.4);
  transition: transform 0.15s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
