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

:root {
  --primary-navy: #003893;
  --primary-navy-dark: #002766;
  --accent-cyan: #00A3FF;
  --accent-cyan-hover: #008be0;
  --ice-bg: #F0F9FF;
  --water-light: #E0F2FE;
  --dark-slate: #0F172A;
  --text-muted: #475569;
}

* {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

/* Custom Gradients */
.bg-brand-gradient {
  background: linear-gradient(135deg, #003893 0%, #0056cc 60%, #00A3FF 100%);
}

.bg-water-gradient {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
}

.bg-hero-glow {
  background: radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.15) 0%, rgba(0, 56, 147, 0.05) 50%, transparent 70%);
}

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

/* Wave & Water Accents */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

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

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

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #003893;
}

input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00A3FF;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 163, 255, 0.4);
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
  background: #93C5FD;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00A3FF;
}

/* Subtle Floating Animation */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

/* Ripple Badge */
.pulse-badge {
  position: relative;
}
.pulse-badge::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: inherit;
  border: 2px solid #00A3FF;
  animation: pulseRipple 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  opacity: 0.7;
}

@keyframes pulseRipple {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}
