/* css/style.css - Modern Dynamic Popup Aesthetic (Blue, Purple & Golden Theme) */

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

:root {
  --primary-blue: #2563EB;
  --primary-purple: #7C3AED;
  --accent-gold: #F59E0B;
  --dark-slate: #0F172A;
  --light-blue-bg: #EFF6FF;
  --light-purple-bg: #FAF5FF;
  --light-gold-bg: #FFFBEB;
  --border-light: #BFDBFE;
}

body {
  font-family: 'Plus Jakarta Sans', 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* Custom Gradients */
.bg-gradient-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 50%, #FAF5FF 100%);
}

.bg-gradient-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
}

.text-gradient-primary {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 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(37, 99, 235, 0.15);
}

/* Glowing Primary Blue/Purple CTA Button */
.btn-primary-glow {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-glow:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #6D28D9 100%);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

.btn-primary-glow:active {
  transform: translateY(0px);
}

/* Glowing Golden CTA Button */
.btn-gold-glow {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-glow:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.6);
  transform: translateY(-2px);
}

/* Secondary CTA Button */
.btn-secondary-glow {
  background: #FFFFFF;
  color: #2563EB;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-glow:hover {
  background: #EFF6FF;
  border-color: #7C3AED;
  color: #7C3AED;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

/* Hover Elevation Cards with Glow */
.hover-card-glow {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-card-glow:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
  border-color: rgba(124, 58, 237, 0.4);
}

/* Dynamic Popup Badges */
@keyframes popupBounce {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-popup {
  animation: popupBounce 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float-1 { animation: floatSlow 4s ease-in-out infinite; }
.animate-float-2 { animation: floatSlow 5s ease-in-out infinite 1s; }
.animate-float-3 { animation: floatSlow 4.5s ease-in-out infinite 0.5s; }

/* Pulse Glow Effect */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(37, 99, 235, 0.25); }
  50% { box-shadow: 0 0 28px rgba(124, 58, 237, 0.5); }
}

.pulse-border-glow {
  animation: pulseGlow 3s infinite;
}

/* Marquee / Company Ticker */
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: 200%;
  animation: scrollMarquee 25s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Modal Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content-animate {
  animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Accordion Transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
  background: #BFDBFE;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}
