/* CYBERTECH COMPS - Core Styling */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --cyber-blue: #00d2ff;
  --cyber-indigo: #4f46e5;
  --cyber-dark: #070d1e;
  --cyber-surface: #0f172a;
  --accent-green: #10b981;
  --accent-emerald: #059669;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-tech {
  font-family: 'Space Grotesk', monospace;
}

.bg-cyber-hero {
  background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.12) 0%, transparent 50%),
              linear-gradient(135deg, #070d1e 0%, #0c1836 60%, #070e24 100%);
}

.bg-cyber-pattern {
  background-image: radial-gradient(rgba(2, 132, 199, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.text-cyber-gradient {
  background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-emerald-gradient {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyber-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease-in-out;
}

.cyber-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 20px 30px -10px rgba(2, 132, 199, 0.15);
}

.cyber-glow {
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.35);
}

.nav-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
  animation: pulse-ring 2.2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Print utilities */
@media print {
  .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
}


/* Enhanced WhatsApp Floating Button & Large Icons */
.wa-icon-md {
  font-size: 1.35rem !important;
  line-height: 1;
}
.wa-icon-lg {
  font-size: 1.65rem !important;
  line-height: 1;
}
.wa-icon-xl {
  font-size: 2.2rem !important;
  line-height: 1;
}
.floating-whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.floating-whatsapp-widget:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.65);
}
.floating-whatsapp-widget i {
  font-size: 2.25rem !important;
}
