/* ==========================================================================
   DIGITAL GAANA DISTRIBUTION LLP - Professional Corporate SaaS Theme
   Clean Aesthetic with Signature Vibrant Orange Glows & Floating Music Motifs
   ========================================================================== */

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

:root {
  --brand-primary: #ea580c; /* Vibrant Corporate Orange */
  --brand-primary-hover: #c2410c; /* Deep Orange */
  --brand-primary-light: #fff7ed; /* Soft Orange tint */
  --brand-primary-glow: rgba(234, 88, 12, 0.15);
  --brand-navy: #0f172a;
  --brand-slate: #1e293b;
  --bg-page: #fafbfc;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --border-card: #e2e8f0;
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle Modern Music Background Texture & Dot Grid */
.bg-music-pattern {
  background-image: radial-gradient(#e2e8f0 1.2px, transparent 1.2px), radial-gradient(#f8fafc 1.2px, #fafbfc 1.2px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

/* Ambient Radial Mesh Gradient */
.gradient-mesh {
  background: 
    radial-gradient(at 0% 0%, rgba(254, 215, 170, 0.22) 0px, transparent 50%),
    radial-gradient(at 100% 20%, rgba(255, 237, 213, 0.35) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(254, 243, 199, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(254, 215, 170, 0.18) 0px, transparent 50%);
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}

/* Navbar */
.site-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.3s ease;
}

/* SaaS Cards with Modern Lift & Glow */
.saas-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-card);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.saas-card:hover {
  border-color: #fdba74;
  box-shadow: 0 20px 30px -10px rgba(234, 88, 12, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  transform: translateY(-4px);
}

.saas-card-subtle {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
}

/* Dropdown Sub-menu */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.dropdown-parent:hover .dropdown-menu,
.dropdown-parent:focus-within .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #ea580c 0%, #d9480f 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
  box-shadow: 0 6px 20px 0 rgba(234, 88, 12, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background-color: #fff7ed;
  border-color: #fed7aa;
  color: var(--brand-primary);
  transform: translateY(-1px);
}

/* Badges */
.badge-orange {
  background-color: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffedd5;
}

/* Keyframe Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(14px) rotate(-8deg); }
}

@keyframes floatDrift {
  0% { transform: translate(0px, 0px) rotate(0deg); opacity: 0.25; }
  50% { transform: translate(15px, -20px) rotate(15deg); opacity: 0.55; }
  100% { transform: translate(0px, 0px) rotate(0deg); opacity: 0.25; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

@keyframes pulseRadar {
  0% { transform: scale(0.85); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(0.85); opacity: 0.9; }
}

@keyframes scanLaser {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

@keyframes equalizerWave {
  0%, 100% { height: 12px; }
  50% { height: 42px; }
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.animate-float-reverse {
  animation: floatReverse 5s ease-in-out infinite;
}

.animate-float-drift {
  animation: floatDrift 7s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animate-pulse-radar {
  animation: pulseRadar 2.5s ease-in-out infinite;
}

.animate-scan {
  animation: scanLaser 3s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spinSlow 20s linear infinite;
}

/* Floating Music Symbol Elements */
.music-symbol {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  z-index: 1;
  opacity: 0.35;
  filter: drop-shadow(0 2px 8px rgba(234, 88, 12, 0.15));
  transition: opacity 0.3s ease;
}

/* Audio Waveform Bars */
.wave-bar {
  width: 4px;
  background: #ea580c;
  border-radius: 9999px;
  animation: equalizerWave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0.1s; height: 16px; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; height: 32px; }
.wave-bar:nth-child(3) { animation-delay: 0.5s; height: 46px; }
.wave-bar:nth-child(4) { animation-delay: 0.2s; height: 24px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 38px; }
.wave-bar:nth-child(6) { animation-delay: 0.6s; height: 20px; }
.wave-bar:nth-child(7) { animation-delay: 0.15s; height: 40px; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; height: 28px; }

/* Ambient Radial Background Glows */
.hero-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 480px;
  background: radial-gradient(circle, rgba(254, 215, 170, 0.45) 0%, rgba(255, 237, 213, 0.25) 45%, rgba(241, 245, 249, 0.1) 75%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

.hero-glow-secondary {
  position: absolute;
  top: 40%;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(254, 240, 138, 0.2) 0%, rgba(254, 215, 170, 0.15) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Partner Logo Infinite Marquee */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: 200%;
  animation: marquee 28s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

/* Subtle Reveal on Load */
.fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
