/* Custom Modern Theme Styles for Ace Line Gunma */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --primary-navy: #0B192C;
  --primary-dark: #1E3E62;
  --accent-blue: #008DDA;
  --accent-cyan: #41C9E2;
  --accent-gold: #F59E0B;
  --accent-emerald: #10B981;
}

body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
  color: #1f2937;
  background-color: #f8fafc;
  scroll-behavior: smooth;
}

/* Glassmorphism effects */
.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark {
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glowing animations */
.glow-accent {
  box-shadow: 0 0 25px rgba(0, 141, 218, 0.25);
}

.glow-gold {
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

/* Hero background pattern */
.hero-bg {
  background: linear-gradient(135deg, #09121D 0%, #0E2439 50%, #15375B 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 141, 218, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(65, 201, 226, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(245, 158, 11, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

/* Grid lines background */
.grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Multi-step Form Wizard */
.wizard-step-indicator {
  transition: all 0.3s ease;
}

.wizard-step-indicator.active {
  border-color: #008DDA;
  background-color: #008DDA;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 141, 218, 0.2);
}

.wizard-step-indicator.completed {
  border-color: #10B981;
  background-color: #10B981;
  color: #ffffff;
}

/* Custom Drag & Drop File Upload Area */
.dropzone-box {
  border: 2px dashed #cbd5e1;
  border-radius: 1rem;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  background: #f8fafc;
}

.dropzone-box:hover, .dropzone-box.dragover {
  border-color: #008DDA;
  background-color: #f0f9ff;
}

/* Custom Checkbox Card */
.checkbox-card {
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid #e2e8f0;
}

.checkbox-card:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.checkbox-card.selected {
  border-color: #008DDA;
  background-color: #eff6ff;
  box-shadow: 0 4px 12px rgba(0, 141, 218, 0.12);
}

/* Custom Radio Card */
.radio-card {
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid #e2e8f0;
}

.radio-card:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.radio-card.selected {
  border-color: #008DDA;
  background-color: #eff6ff;
  box-shadow: 0 4px 12px rgba(0, 141, 218, 0.12);
}

/* Salary Simulator Slider */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #008DDA;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 141, 218, 0.4);
  margin-top: -8px;
  transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #e2e8f0;
  border-radius: 9999px;
}

/* Floating Action Button */
.floating-contact-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  box-shadow: 0 10px 25px -5px rgba(0, 141, 218, 0.4), 0 8px 10px -6px rgba(0, 141, 218, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

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

/* Pulse animation for live badge */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.pulse-active {
  animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}
