/* ============================================
   KY Consultation — Consulting Site Styles
   Loaded on: home, services, about, contact, privacy
   Dark luxury minimal with purple accent
   ============================================ */

/* Hero gradient animation */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-3deg); }
}

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

.hero-gradient {
  background: linear-gradient(135deg, #0B0B0F 0%, #1A0B2E 25%, #0B0B0F 50%, #150A26 75%, #0B0B0F 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  filter: blur(40px);
  pointer-events: none;
}

.hero-shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.hero-shape--2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
  animation: float2 6s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-shape--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 60%;
  animation: float3 7s ease-in-out infinite;
  animation-delay: -4s;
  background: rgba(124, 58, 237, 0.05);
}

/* Purple glow effect for cards */
.card-glow {
  transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.card-glow:hover {
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.12), 0 4px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

/* Stats counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Navigation — dark theme */
.nav-consulting {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 11, 15, 0.85);
  border-bottom: 1px solid #27273A;
  transition: background-color 200ms ease;
}

.nav-consulting.scrolled {
  background: rgba(11, 11, 15, 0.95);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 11, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 91;
  width: 300px;
  max-width: 85vw;
  background: #0F0F15;
  border-left: 1px solid #27273A;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: #1A1A2E;
  border: 1px solid #27273A;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.nav-dropdown-menu a:hover {
  color: #E2E8F0;
  background: rgba(124, 58, 237, 0.1);
}

/* Career timeline (about page) */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #7C3AED 10%, #7C3AED 90%, transparent);
  transform: translateX(-50%);
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7C3AED;
  border: 3px solid #0B0B0F;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 1.5rem;
  }
  .timeline-dot {
    left: 1.5rem;
  }
}

/* Scroll-to-top — dark theme */
.scroll-top-btn--dark {
  background: #1A1A2E;
  color: #7C3AED;
  border: 1px solid #27273A;
}

.scroll-top-btn--dark:hover {
  background: #7C3AED;
  color: #FFFFFF;
}

/* Form styles — dark theme */
.form-input-dark {
  background: #1A1A2E;
  border: 1px solid #27273A;
  color: #E2E8F0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 0.9375rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form-input-dark::placeholder {
  color: #64748B;
}

.form-input-dark:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* Honeypot — hidden from humans */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}
