/* FastFast Deliveries - Custom Modern Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary-navy: #1E3A5A;
  --primary-navy-dark: #0F1E2E;
  --primary-navy-light: #2A4D77;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E05E00;
  --accent-orange-light: #FFF0E6;
  --accent-blue: #0284C7;
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;
  --bg-light: #F8FAFC;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: #FFFFFF;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Glassmorphism Header */
.glass-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-header-dark {
  background: rgba(15, 30, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradients */
.gradient-hero-bg {
  background: radial-gradient(120% 120% at 50% -10%, #1E3A5A 0%, #0F1E2E 100%);
}

.gradient-orange-cta {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-orange-cta:hover {
  background: linear-gradient(135deg, #E05E00 0%, #FF6B00 100%);
  box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

.gradient-card-border {
  position: relative;
  background: #FFFFFF;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.gradient-card-border:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(30, 58, 90, 0.12);
}

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

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 107, 0, 0);
  }
}

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

/* Custom Scrollbar */
::-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;
}

/* Interactive Simulator Styles */
.simulator-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 25px 50px -12px rgba(15, 30, 46, 0.25);
  border-radius: 1.25rem;
}

/* Badges & Tags */
.badge-verified {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.badge-orange {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FFEDD5;
}

.badge-navy {
  background: #F0F7FF;
  color: #1E3A5A;
  border: 1px solid #BAE6FD;
}

/* Map Dot Pulse */
.ping-dot {
  position: relative;
  display: inline-flex;
}
.ping-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: currentColor;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}

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

/* Tab Active Styles */
.tab-btn.active {
  background-color: #1E3A5A;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(30, 58, 90, 0.2);
}

/* Toast Notifications */
#toast {
  visibility: hidden;
  min-width: 280px;
  background-color: #0F1E2E;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 14px 20px;
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border-left: 4px solid #FF6B00;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

#toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
