@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --color-brand-dark: #070F2B;
  --color-brand-navy: #0B192C;
  --color-brand-blue: #1E3E62;
  --color-brand-orange: #FF6500;
  --color-brand-orange-hover: #E05600;
  --color-brand-amber: #F59E0B;
}

body {
  font-family: 'Prompt', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E293B;
  background-color: #0B132B;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B192C;
}
::-webkit-scrollbar-thumb {
  background: #1E3E62;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF6500;
}

/* Glassmorphism Styles */
.glass-nav {
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(255, 101, 0, 0.4);
  box-shadow: 0 12px 32px -10px rgba(255, 101, 0, 0.18);
  transform: translateY(-4px);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Glowing Elements */
.glow-orange {
  box-shadow: 0 0 35px -5px rgba(255, 101, 0, 0.4);
}

.glow-blue {
  box-shadow: 0 0 35px -5px rgba(30, 62, 98, 0.5);
}

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

.text-gradient-blue {
  background: linear-gradient(135deg, #38BDF8 0%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Background Pattern */
.hero-grid {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-radial-glow {
  background: radial-gradient(circle at 50% 25%, rgba(255, 101, 0, 0.14) 0%, rgba(11, 25, 44, 0) 70%);
}

/* Tab active indicator animation */
.tab-btn.active {
  background-color: #FF6500;
  color: #FFFFFF;
  border-color: #FF6500;
  box-shadow: 0 4px 15px rgba(255, 101, 0, 0.35);
}

/* Modal Lightbox Transition */
.lightbox-modal {
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-modal:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Image Zoom on hover */
.img-zoom-container {
  overflow: hidden;
}
.img-zoom-container img {
  transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}
.img-zoom-container:hover img {
  transform: scale(1.06);
}

/* Pulse animation for safety badges */
@keyframes safety-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.92;
  }
}
.pulse-badge {
  animation: safety-pulse 3s infinite ease-in-out;
}

/* Platform Flow Line */
.flow-step-line {
  position: relative;
}
@media (min-width: 1024px) {
  .flow-step-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #FF6500, rgba(255, 101, 0, 0.2));
  }
  .flow-step-line:last-child::after {
    display: none;
  }
}

/* Floating Quick Contact Widget */
.floating-contact {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  pointer-events: auto !important;
}

.floating-btn {
  width: 50px !important;
  height: 50px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08) !important;
}
