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

:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --accent: #10b981;
  --accent-hover: #059669;
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --light-bg: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Glassmorphism Navigation */
.glass-nav {
  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);
}

.glass-nav-dark {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

/* Hero Section Gradients */
.hero-gradient {
  background: radial-gradient(circle at 50% -20%, rgba(79, 70, 229, 0.15) 0%, rgba(16, 185, 129, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Glow Effect */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

.card-hover-effect:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(79, 70, 229, 0.3);
}

/* Custom Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-indigo {
  background: rgba(79, 70, 229, 0.2);
}

.glow-orb-emerald {
  background: rgba(16, 185, 129, 0.15);
}

/* ROI Calculator Box */
.calculator-box {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Custom Range Inputs */
input[type="range"] {
  accent-color: #10b981;
}

/* Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

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

/* Smooth Accordions */
.accordion-item {
  border-radius: 0.75rem !important;
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  margin-bottom: 0.75rem;
}

.accordion-button:not(.collapsed) {
  background-color: #f1f5f9;
  color: #4f46e5;
  box-shadow: none;
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(79, 70, 229, 0.5);
}

/* Floating Badges */
.floating-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Custom Buttons */
.btn-primary-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.btn-primary-gradient:hover {
  background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.5);
}

.btn-emerald-gradient {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-emerald-gradient:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

/* Modal Custom styling */
.modal-content {
  border-radius: 1.25rem;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
