/* ==========================================================================
   AEROXPRESS & PRODUCT PLATFORMS — COMPREHENSIVE ENTERPRISE DESIGN SYSTEM
   Styles for AeroXpress (Aviation AI & Autonomous Flight Control)
   File: css/aeroxpress.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. SECTION SPACING & TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
section.section {
  padding: 20px 0;
  position: relative;
}

section.section-alt {
  padding: 10px 0;
  background-color: var(--bg-surface, #f8fafc);
  position: relative;
}

html[data-theme="dark"] section.section-alt,
body.dark-theme section.section-alt {
  background-color: #0b1120 !important;
}

.section-heading {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary, #0f172a);
  line-height: 1.25;
}

html[data-theme="dark"] .section-heading,
body.dark-theme .section-heading {
  color: #ffffff !important;
}

.section-sub {
  font-size: 14.5px;
  color: var(--text-secondary, #64748b);
  line-height: 1.6;
}

html[data-theme="dark"] .section-sub,
body.dark-theme .section-sub {
  color: #94a3b8 !important;
}

.gradient-text-red {
  background: linear-gradient(135deg, #ff5e4d 0%, #df2a19 60%, #b41e12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  color: #df2a19;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

html[data-theme="dark"] .badge-tag,
body.dark-theme .badge-tag {
  background: rgba(223, 42, 25, 0.16) !important;
  border-color: rgba(223, 42, 25, 0.35) !important;
  color: #ff6b5b !important;
}

.mb-40 {
  margin-bottom: 32px !important;
}

.mt-32 {
  margin-top: 28px !important;
}

/* --------------------------------------------------------------------------
   02. FUTURISTIC SPLIT HERO SECTION
   -------------------------------------------------------------------------- */
.careers-hero-section {
  position: relative;
  padding: 24px 0 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: var(--text-primary, #0f172a);
  transition: background-color 0.4s ease, color 0.4s ease;
}

html[data-theme="dark"] .careers-hero-section,
body.dark-theme .careers-hero-section {
  background: linear-gradient(135deg, #0b1120 0%, #0f172a 40%, #1e293b 100%) !important;
  color: #ffffff !important;
}

/* Ambient Glows */
.careers-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.careers-hero-glow.glow-red {
  top: -12%;
  left: -6%;
  width: 550px;
  height: 550px;
  background: rgba(223, 42, 25, 0.18);
}

.careers-hero-glow.glow-navy {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.12);
}

html[data-theme="dark"] .careers-hero-glow.glow-navy,
body.dark-theme .careers-hero-glow.glow-navy {
  background: rgba(30, 58, 138, 0.25);
}

/* Background Grid Overlay */
.careers-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}

html[data-theme="dark"] .careers-grid-bg,
body.dark-theme .careers-grid-bg {
  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);
}

/* Hero Breadcrumb Navigation */
.careers-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 18px;
  position: relative;
  z-index: 10;
}

.careers-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.careers-breadcrumb a:hover {
  color: #df2a19;
}

.careers-breadcrumb .sep {
  color: #94a3b8;
  font-size: 11px;
}

.careers-breadcrumb .current {
  color: #df2a19;
  font-weight: 700;
}

html[data-theme="dark"] .careers-breadcrumb,
body.dark-theme .careers-breadcrumb,
html[data-theme="dark"] .careers-breadcrumb a,
body.dark-theme .careers-breadcrumb a {
  color: #94a3b8;
}

html[data-theme="dark"] .careers-breadcrumb a:hover,
body.dark-theme .careers-breadcrumb a:hover {
  color: #ff5e4d;
}

html[data-theme="dark"] .careers-breadcrumb .current,
body.dark-theme .careers-breadcrumb .current {
  color: #ff5e4d;
}

/* Hero 2-Column Split Layout */
.careers-hero-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Hero Badge */
.careers-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(223, 42, 25, 0.1);
  border: 1px solid rgba(223, 42, 25, 0.25);
  color: #df2a19;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

html[data-theme="dark"] .careers-badge,
body.dark-theme .careers-badge {
  color: #ff6b5b;
}

.careers-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #df2a19;
  box-shadow: 0 0 10px #df2a19;
  animation: pulseBadgeDot 2s infinite ease-in-out;
}

@keyframes pulseBadgeDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

/* Hero Titles & Description */
.careers-hero-title {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  color: var(--text-primary, #0f172a);
}

html[data-theme="dark"] .careers-hero-title,
body.dark-theme .careers-hero-title {
  color: #ffffff;
}

.careers-hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px !important;
  max-width: 620px;
}

html[data-theme="dark"] .careers-hero-desc,
body.dark-theme .careers-hero-desc {
  color: #cbd5e1;
}

/* Hero CTA Buttons */
.careers-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #df2a19 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(223, 42, 25, 0.5);
  background: linear-gradient(135deg, #ff3c29 0%, #df2a19 100%);
  color: #ffffff !important;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary, #0f172a) !important;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(223, 42, 25, 0.08);
  border-color: rgba(223, 42, 25, 0.35);
  color: #df2a19 !important;
  transform: translateY(-2px);
}

html[data-theme="dark"] .btn-hero-secondary,
body.dark-theme .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .btn-hero-secondary:hover,
body.dark-theme .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ff5e4d;
  color: #ff5e4d !important;
}

/* Hero Right Interactive Illustration Graphic */
.careers-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.visual-glass-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(223, 42, 25, 0.15);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

html[data-theme="dark"] .visual-glass-card,
body.dark-theme .visual-glass-card {
  background: rgba(15, 23, 42, 0.75) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

html[data-theme="dark"] .visual-header,
body.dark-theme .visual-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.visual-dots {
  display: flex;
  gap: 8px;
}

.visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.visual-title-tag {
  font-size: 11px;
  font-family: monospace;
  font-weight: 700;
  color: #df2a19;
  background: rgba(223, 42, 25, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

html[data-theme="dark"] .visual-title-tag,
body.dark-theme .visual-title-tag {
  color: #ff6b5b;
  background: rgba(223, 42, 25, 0.18);
}

.collaboration-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.engineer-nodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.node-card {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.node-card:hover {
  transform: translateY(-3px);
  border-color: #df2a19;
  box-shadow: 0 8px 20px rgba(223, 42, 25, 0.12);
}

html[data-theme="dark"] .node-card,
body.dark-theme .node-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .node-card:hover,
body.dark-theme .node-card:hover {
  border-color: #df2a19 !important;
  box-shadow: 0 8px 20px rgba(223, 42, 25, 0.2) !important;
}

.node-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffffff;
}

.node-avatar.dev {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.node-avatar.ai {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.node-avatar.cloud {
  background: linear-gradient(135deg, #059669, #047857);
}

.node-role {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin-bottom: 3px;
  line-height: 1.25;
}

html[data-theme="dark"] .node-role,
body.dark-theme .node-role {
  color: #f1f5f9;
}

.node-status {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

html[data-theme="dark"] .node-status,
body.dark-theme .node-status {
  color: #94a3b8;
}

/* AI Neural Core Hub Card */
.ai-core-hub {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.08) 0%, rgba(223, 42, 25, 0.03) 100%);
  border: 1px solid rgba(223, 42, 25, 0.22);
  border-radius: 14px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.ai-core-hub:hover {
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.1);
}

html[data-theme="dark"] .ai-core-hub,
body.dark-theme .ai-core-hub {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.15) 0%, rgba(223, 42, 25, 0.05) 100%);
  border-color: rgba(223, 42, 25, 0.3);
}

.hub-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #df2a19 0%, #b91c1c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.35);
}

.hub-text h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin: 0 0 2px;
}

html[data-theme="dark"] .hub-text h4,
body.dark-theme .hub-text h4 {
  color: #ffffff;
}

.hub-text p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

html[data-theme="dark"] .hub-text p,
body.dark-theme .hub-text p {
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   03. KEY METRICS & KPI STRIP
   -------------------------------------------------------------------------- */
.aero-stats-section {
  padding: 28px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .aero-stats-section,
body.dark-theme .aero-stats-section {
  background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%) !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.aero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.aero-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

html[data-theme="dark"] .aero-stat-card,
body.dark-theme .aero-stat-card {
  background: rgba(30, 41, 59, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

.aero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #df2a19;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aero-stat-card:hover::before {
  opacity: 1;
}

.aero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 42, 25, 0.3);
  box-shadow: 0 12px 28px rgba(223, 42, 25, 0.12);
}

.stat-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.stat-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #fee2e2;
  color: #df2a19;
  transition: all 0.3s ease;
}

html[data-theme="dark"] .stat-icon-box,
body.dark-theme .stat-icon-box {
  background: rgba(223, 42, 25, 0.16) !important;
  color: #ff6b5b !important;
}

.aero-stat-card:hover .stat-icon-box {
  background: #df2a19 !important;
  color: #ffffff !important;
}

.stat-badge-trend {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 14px;
  background: #fee2e2;
  color: #df2a19;
}

html[data-theme="dark"] .stat-badge-trend,
body.dark-theme .stat-badge-trend {
  background: rgba(223, 42, 25, 0.16) !important;
  color: #ff6b5b !important;
}

.aero-stat-num {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  color: #df2a19;
}

html[data-theme="dark"] .aero-stat-num,
body.dark-theme .aero-stat-num {
  color: #ff5e4d;
}

.aero-stat-label {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  line-height: 1.35;
}

html[data-theme="dark"] .aero-stat-label,
body.dark-theme .aero-stat-label {
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   04. KEY FEATURES & CAPABILITIES (3-COLUMN GRID)
   -------------------------------------------------------------------------- */
.aero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aero-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

html[data-theme="dark"] .aero-feature-card,
body.dark-theme .aero-feature-card {
  background: #1e293b !important;
  border-color: #332155 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.aero-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: #df2a19;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aero-feature-card:hover::before {
  opacity: 1;
}

.aero-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 42, 25, 0.3);
  box-shadow: 0 14px 36px rgba(223, 42, 25, 0.12);
}

html[data-theme="dark"] .aero-feature-card:hover,
body.dark-theme .aero-feature-card:hover {
  border-color: rgba(223, 42, 25, 0.4) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4) !important;
}

.aero-feature-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.aero-feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: #fff0f0;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

html[data-theme="dark"] .aero-feature-icon,
body.dark-theme .aero-feature-icon {
  background: rgba(223, 42, 25, 0.15) !important;
  color: #ff6b5b !important;
}

.aero-feature-card:hover .aero-feature-icon {
  background: #df2a19 !important;
  color: #ffffff !important;
  transform: none;
}

.aero-feature-card h4 {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin: 0 !important;
  text-align: left;
  line-height: 1.35;
}

html[data-theme="dark"] .aero-feature-card h4,
body.dark-theme .aero-feature-card h4 {
  color: #ffffff !important;
}

.aero-feature-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

html[data-theme="dark"] .aero-feature-card p,
body.dark-theme .aero-feature-card p {
  color: #94a3b8 !important;
}

/* --------------------------------------------------------------------------
   05. HOW AEROXPRESS TRANSFORMS OPERATIONS (2-COLUMN SPLIT)
   -------------------------------------------------------------------------- */
.aero-transform-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.desc-wrap h2 {
  margin-bottom: 16px;
}

.desc-wrap p {
  font-size: 14.5px;
  line-height: 1.68;
  color: #475569;
  margin-bottom: 16px;
}

html[data-theme="dark"] .desc-wrap p,
body.dark-theme .desc-wrap p {
  color: #cbd5e1 !important;
}

.transform-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(223, 42, 25, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  align-self: center;
}

.transform-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.transform-image-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
  border-color: rgba(223, 42, 25, 0.4);
}

.transform-image-frame:hover img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   06. VISUAL GALLERY SHOWCASE (4-COLUMN IMAGE CARDS)
   -------------------------------------------------------------------------- */
.aero-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.aero-gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(223, 42, 25, 0.12);
}

.aero-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.aero-gallery-card:hover img {
  transform: scale(1.07);
}

.aero-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(223, 42, 25, 0.35);
}

.aero-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 18, 35, 0.0) 40%,
      rgba(10, 18, 35, 0.78) 100%);
  pointer-events: none;
}

.aero-gallery-label {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  z-index: 2;
}

.aero-gallery-label span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(12, 20, 38, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.aero-gallery-label span i {
  font-size: 10px;
  opacity: 0.9;
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   07. WHY CHOOSE AEROXPRESS (4-COLUMN ADVANTAGE GRID)
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

html[data-theme="dark"] .why-item,
body.dark-theme .why-item {
  background: #1e293b !important;
  border-color: #332155 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: #df2a19;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-item:hover::before {
  opacity: 1;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 42, 25, 0.3);
  box-shadow: 0 14px 36px rgba(223, 42, 25, 0.12);
}

html[data-theme="dark"] .why-item:hover,
body.dark-theme .why-item:hover {
  border-color: rgba(223, 42, 25, 0.4) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4) !important;
}

.why-item-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: #fff0f0;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

html[data-theme="dark"] .why-item-icon,
body.dark-theme .why-item-icon {
  background: rgba(223, 42, 25, 0.15) !important;
  color: #ff6b5b !important;
}

.why-item:hover .why-item-icon {
  background: #df2a19 !important;
  color: #ffffff !important;
  transform: none;
}

.why-item h4 {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin: 0 0 10px;
  text-align: left;
  line-height: 1.35;
}

html[data-theme="dark"] .why-item h4,
body.dark-theme .why-item h4 {
  color: #ffffff !important;
}

.why-item p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

html[data-theme="dark"] .why-item p,
body.dark-theme .why-item p {
  color: #94a3b8 !important;
}

/* --------------------------------------------------------------------------
   08. CALL TO ACTION BANNER (AERO CTA)
   -------------------------------------------------------------------------- */
.aero-cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(223, 42, 25, 0.25);
  border-radius: 24px;
  padding: 15px 30px !important;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.aero-cta-box .cta-text-content {
  flex: 1;
}

html[data-theme="dark"] .aero-cta-box,
body.dark-theme .aero-cta-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%) !important;
  border-color: rgba(223, 42, 25, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

.aero-cta-box h2 {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin-bottom: 14px;
}

html[data-theme="dark"] .aero-cta-box h2,
body.dark-theme .aero-cta-box h2 {
  color: #ffffff !important;
}

.aero-cta-box p {
  font-size: 14.5px;
  color: #475569;
  max-width: 640px;
  margin: 0;
  line-height: 1.65;
}

.aero-cta-box .hero-actions {
  flex-shrink: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .aero-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px !important;
  }

  .aero-cta-box p {
    margin: 0 auto 24px;
  }
}

html[data-theme="dark"] .aero-cta-box p,
body.dark-theme .aero-cta-box p {
  color: #cbd5e1 !important;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #df2a19 0%, #b91c1c 100%) !important;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(223, 42, 25, 0.6);
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   09. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .careers-hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .careers-hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .aero-stats-grid,
  .aero-feature-grid,
  .why-grid,
  .aero-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aero-transform-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aero-gallery-card {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .careers-hero-section {
    padding: 18px 0 36px;
  }

  .careers-hero-title {
    font-size: 28px;
  }

  .aero-stats-grid,
  .aero-feature-grid,
  .why-grid,
  .aero-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aero-gallery-card {
    height: 200px;
  }

  .aero-cta-box {
    padding: 32px 20px !important;
  }

  .careers-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }

  .engineer-nodes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .node-card {
    padding: 10px 6px;
  }

  .node-avatar {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .node-role {
    font-size: 10px;
  }

  .node-status {
    font-size: 9px;
  }
}

/* ==========================================================================
   AEROXPRESS HERO IMAGE SLIDER (Right-to-Left Sliding)
   ========================================================================== */
.aero-hero-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.aero-slider-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(223, 42, 25, 0.25);
  background: #0b1329;
  aspect-ratio: 16 / 10.5;
}

html[data-theme="dark"] .aero-slider-container,
body.dark-theme .aero-slider-container {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.aero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.aero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.aero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.aero-slide:hover .aero-slide-img {
  transform: scale(1.05);
}

.aero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 23, 42, 0.25) 40%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
}

.aero-slide-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 5;
  color: #ffffff;
}

.caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(223, 42, 25, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.4);
}

.aero-slide-caption h4 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.aero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  opacity: 0;
}

.aero-slider-container:hover .aero-slider-nav {
  opacity: 1;
}

.aero-slider-nav.prev {
  left: 14px;
}

.aero-slider-nav.next {
  right: 14px;
}

.aero-slider-nav:hover {
  background: var(--brand-red, #df2a19);
  color: #ffffff;
  border-color: var(--brand-red, #df2a19);
  transform: translateY(-50%) scale(1.1);
}

.aero-slider-dots {
  position: absolute;
  bottom: 14px;
  right: 22px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.aero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}

.aero-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--brand-red, #df2a19);
  box-shadow: 0 0 10px rgba(223, 42, 25, 0.8);
}

/* ==========================================================================
   INDUSTRY ERP PAGES COMPREHENSIVE @MEDIA RESPONSIVE SUITE
   Applies to: AeroXpress, CivilXpress, MarinXpress, WarXpress, ManXpress,
               ElectroXpress, HealthXpress, EduXpress, RetailXpress
   Breakpoints: 1200px, 1024px, 768px, 576px, 480px, 380px
   ========================================================================== */

/* 1. Laptops & Compact Desktops (1025px - 1200px) */
@media (max-width: 1200px) {
  .careers-hero-title {
    font-size: clamp(30px, 3.4vw, 40px);
  }

  .aero-hero-slider-wrap {
    max-width: 480px;
  }
}

/* 2. Tablets in Landscape (769px - 1024px) */
@media (max-width: 1024px) {
  .careers-hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .careers-hero-visual {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .aero-stats-grid,
  .aero-feature-grid,
  .why-grid,
  .aero-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .aero-transform-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* 3. Portrait Tablets & Large Phones (577px - 768px) */
@media (max-width: 768px) {
  .careers-hero-section {
    padding: 20px 0 36px;
  }

  .careers-hero-title {
    font-size: clamp(24px, 5vw, 32px) !important;
    line-height: 1.2;
  }

  .careers-hero-desc {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .careers-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .aero-stats-grid,
  .aero-feature-grid,
  .why-grid,
  .aero-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aero-cta-box {
    padding: 28px 20px !important;
  }

  .engineer-nodes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* 4. Standard Handheld Mobiles (381px - 576px) */
@media (max-width: 576px) {
  .badge-tag {
    font-size: 10px;
    padding: 5px 12px;
    letter-spacing: 0.3px;
  }

  .careers-hero-title {
    font-size: 23px !important;
  }

  .aero-slider-container {
    aspect-ratio: 16 / 11;
    border-radius: 14px;
  }

  .aero-slide-caption {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .caption-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .aero-slide-caption h4 {
    font-size: 0.95rem;
  }

  .aero-slider-nav {
    display: none; /* Swipe & auto-play primary on mobile */
  }

  .aero-slider-dots {
    bottom: 10px;
    right: 14px;
  }

  .aero-cta-title {
    font-size: 20px !important;
  }

  .aero-cta-desc {
    font-size: 13.5px;
  }
}

/* 5. Micro Screens (320px - 380px) */
@media (max-width: 380px) {
  .careers-hero-section {
    padding: 16px 0 28px;
  }

  .careers-hero-title {
    font-size: 20px !important;
  }

  .badge-tag {
    font-size: 9.5px;
    padding: 4px 10px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 13px;
    padding: 10px 14px;
  }

  .aero-stat-num {
    font-size: 26px !important;
  }

  .aero-cta-box {
    padding: 22px 14px !important;
  }
}

/* ==========================================================================
   FLYNG CHARTER OPERATIONS SUITE & INTERACTIVE AVIATION TELEMETRY
   ========================================================================== */

/* 1. LIVE FLIGHT TELEMETRY TICKER */
.aero-ticker-bar {
  background: #070d18;
  border-top: 1px solid rgba(223, 42, 25, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 20;
}

.aero-ticker-wrap {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.aero-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #df2a19 0%, #991b1b 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  margin-right: 20px;
  box-shadow: 0 0 16px rgba(223, 42, 25, 0.4);
  flex-shrink: 0;
  z-index: 2;
}

.aero-ticker-label .radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  animation: radarPing 1.6s infinite ease-in-out;
}

.aero-ticker-marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.aero-ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: tickerSlide 40s linear infinite;
}

.aero-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-family: 'Inter', monospace, sans-serif;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
}

.aero-ticker-item strong {
  color: #ffffff;
  font-weight: 700;
}

.aero-ticker-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.aero-ticker-badge.badge-enroute {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.aero-ticker-badge.badge-scheduled {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.aero-ticker-badge.badge-mro {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.aero-ticker-badge.badge-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes radarPing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

/* 2. HERO FEATURE PILLS ROW */
.aero-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.aero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(223, 42, 25, 0.18);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary, #0f172a);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.aero-pill i {
  color: #df2a19;
  font-size: 13px;
}

.aero-pill:hover {
  transform: translateY(-2px);
  border-color: #df2a19;
  box-shadow: 0 6px 16px rgba(223, 42, 25, 0.15);
}

html[data-theme="dark"] .aero-pill,
body.dark-theme .aero-pill {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

html[data-theme="dark"] .aero-pill:hover,
body.dark-theme .aero-pill:hover {
  border-color: #ff5e4d;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.25);
}

/* 3. FLYNG CHARTER OPERATIONS CONSOLE (INTERACTIVE SUITE) */
.flyng-console-section {
  padding: 48px 0;
  background: radial-gradient(circle at 50% 10%, #0c1424 0%, #060a12 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.flyng-console-section .container {
  max-width: 1260px;
  padding-right: clamp(20px, 4vw, 56px); /* Prevents overlapping with floating action buttons */
  padding-left: clamp(16px, 2.5vw, 32px);
}

.flyng-console-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 12%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.14) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.flyng-console-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.flyng-console-header h2 {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}

.flyng-console-header p {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Console Main Container Frame */
.flyng-console-frame {
  background: #080d19;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(223, 42, 25, 0.15);
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
}

/* Left Sidebar - Authentic Flyng Style */
.flyng-sidebar {
  background: #050912;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 10px;
}

.flyng-brand-header {
  padding: 2px 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flyng-logo-title h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

.flyng-logo-title span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #64748b;
  text-transform: uppercase;
}

.flyng-live-beacon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 8px;
  border-radius: 20px;
}

.flyng-live-beacon .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

/* Sidebar Search Pill */
.flyng-search-pill {
  margin: 10px 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: 11.5px;
}

.flyng-search-pill .kbd {
  font-size: 9.5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 1px 5px;
  color: #cbd5e1;
}

/* Sidebar Nav Clean Container */
.flyng-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flyng-nav-group-title {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #475569;
  padding: 6px 8px 2px;
  margin-top: 4px;
}

.flyng-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 6px;
  color: #94a3b8;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.flyng-nav-item-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.flyng-nav-item i {
  font-size: 12.5px;
  width: 15px;
  text-align: center;
}

.flyng-nav-item .nav-arrow {
  font-size: 8.5px;
  color: #475569;
  transition: transform 0.2s ease;
}

.flyng-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transform: translateX(2px);
}

.flyng-nav-item:hover .nav-arrow {
  color: #df2a19;
  transform: translateX(2px);
}

.flyng-nav-item.active {
  background: linear-gradient(90deg, rgba(223, 42, 25, 0.22) 0%, rgba(223, 42, 25, 0.04) 100%);
  color: #ffffff;
  border-left: 3px solid #df2a19;
  font-weight: 700;
  box-shadow: inset 0 0 16px rgba(223, 42, 25, 0.1);
}

.flyng-nav-item.active i {
  color: #ff5e4d;
}

.flyng-nav-item.active .nav-arrow {
  color: #ff5e4d;
}

/* User Footer in Sidebar */
.flyng-user-footer {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flyng-user-info {
  display: flex;
  align-items: center;
  gap: 9px;
}

.flyng-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13.5px;
  color: #ffffff;
}

.flyng-user-meta h5 {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.flyng-user-meta span {
  font-size: 9.5px;
  color: #64748b;
}

/* Right Interactive Preview Panel Area */
.flyng-preview-area {
  background: #080d19;
  padding: 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.flyng-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.flyng-topbar-title h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flyng-topbar-title h4 i {
  color: #df2a19;
}

.flyng-topbar-title p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.flyng-topbar-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Animated SVG Radar HUD Widget */
.radar-hud-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 8px;
  padding: 4px 10px;
}

.radar-hud-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(5, 26, 18, 0.95) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
  flex-shrink: 0;
}

.radar-hud-circle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(16, 185, 129, 0.35);
}

.radar-hud-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, rgba(16, 185, 129, 0.7) 360deg);
  animation: radarRotate 2.2s linear infinite;
}

.radar-hud-blip {
  position: absolute;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
  animation: blipFade 2.2s infinite ease-in-out;
}

.radar-hud-blip.blip-1 { top: 6px; left: 14px; animation-delay: 0.2s; }
.radar-hud-blip.blip-2 { bottom: 7px; right: 6px; animation-delay: 1.0s; }
.radar-hud-blip.blip-3 { top: 14px; left: 5px; animation-delay: 1.6s; }

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blipFade {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  25%, 40% { opacity: 1; transform: scale(1.4); }
}

.flyng-preview-panel {
  display: none;
  animation: panelFadeIn 0.3s ease forwards;
  flex: 1;
}

.flyng-preview-panel.active {
  display: block;
}

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

/* Panel Layout Cards & Tables */
.flyng-card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.flyng-mini-stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(223, 42, 25, 0.7);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.flyng-mini-stat:hover {
  transform: translateY(-2px);
  border-top-color: #df2a19;
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.18);
}

.flyng-mini-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.flyng-mini-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.flyng-mini-stat-sub {
  font-size: 10.5px;
  color: #10b981;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Schedule Board Interactive Table Mock */
.flyng-table-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow-x: auto;
}

.flyng-table-title {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
}

.flyng-ops-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
}

.flyng-ops-table th {
  text-align: left;
  padding: 10px 12px;
  color: #64748b;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.flyng-ops-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  vertical-align: middle;
  white-space: nowrap;
}

.flyng-ops-table tr:last-child td {
  border-bottom: none;
}

.flyng-ops-table tr {
  transition: background-color 0.2s ease;
}

.flyng-ops-table tr:hover td {
  background: rgba(223, 42, 25, 0.06);
  color: #ffffff;
}

.tail-badge {
  font-family: monospace;
  font-weight: 700;
  color: #ff5e4d;
  background: rgba(223, 42, 25, 0.14);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.route-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.route-airports {
  font-weight: 700;
  color: #f1f5f9;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.route-airports i {
  font-size: 9px;
  color: #ff5e4d;
}

.route-cities {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

.time-cell {
  font-size: 11.5px;
  color: #f1f5f9;
  font-weight: 600;
  white-space: nowrap;
}

.time-cell small {
  color: #64748b;
  font-size: 9.5px;
  margin-left: 2px;
}

.pilot-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #e2e8f0;
  font-weight: 600;
}

.pilot-cell i {
  color: #df2a19;
  font-size: 11.5px;
}

.status-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.beacon-pulse {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.beacon-pulse.green {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.beacon-pulse.green::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid #10b981;
  animation: beaconPing 1.6s infinite ease-out;
}

@keyframes beaconPing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.status-pill.airborne {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pill.scheduled {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-pill.standby {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-pill.techlog {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Pilot Roster Card Component */
.flyng-roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.flyng-roster-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.flyng-roster-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.roster-pilot-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roster-pilot-name i {
  color: #df2a19;
}

.roster-pilot-role {
  font-size: 11px;
  color: #94a3b8;
}

.ftl-bar-wrap {
  margin: 10px 0;
}

.ftl-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.ftl-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.ftl-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.ftl-bar-fill.green {
  background: #10b981;
}

.ftl-bar-fill.amber {
  background: #f59e0b;
}

/* WhatsApp Automation Preview Bubble */
.flyng-whatsapp-box {
  background: #0b141f;
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 14px;
  padding: 18px;
  margin-top: 14px;
  position: relative;
}

.flyng-whatsapp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
  padding-bottom: 8px;
}

.flyng-msg-bubble {
  background: #122131;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-bottom: 8px;
}

.flyng-msg-bubble strong {
  color: #ffffff;
}

.flyng-msg-time {
  font-size: 10px;
  color: #64748b;
  text-align: right;
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.flyng-msg-time i {
  color: #38bdf8;
}

/* 4. WORKFLOW LIFECYCLE 6 STEPS */
.aero-workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.aero-step-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.aero-step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #df2a19;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(223, 42, 25, 0.4);
}

.aero-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(223, 42, 25, 0.08);
  color: #df2a19;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.aero-step-card:hover {
  transform: translateY(-4px);
  border-color: #df2a19;
  box-shadow: 0 12px 28px rgba(223, 42, 25, 0.12);
}

.aero-step-card:hover .aero-step-icon {
  background: #df2a19;
  color: #ffffff;
  transform: scale(1.1);
}

.aero-step-card h5 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-primary, #0f172a);
}

.aero-step-card p {
  font-size: 11.5px;
  color: var(--text-secondary, #64748b);
  margin: 0;
  line-height: 1.45;
}

html[data-theme="dark"] .aero-step-card,
body.dark-theme .aero-step-card {
  background: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .aero-step-card h5,
body.dark-theme .aero-step-card h5 {
  color: #ffffff !important;
}

html[data-theme="dark"] .aero-step-card p,
body.dark-theme .aero-step-card p {
  color: #94a3b8 !important;
}

/* 5. RESPONSIVE CONSOLE BREAKPOINTS */
@media (max-width: 1024px) {
  .flyng-console-frame {
    grid-template-columns: 240px 1fr;
  }

  .aero-workflow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .flyng-console-frame {
    grid-template-columns: 1fr;
  }

  .flyng-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .flyng-sidebar-nav {
    max-height: 260px;
  }

  .flyng-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .flyng-roster-grid {
    grid-template-columns: 1fr;
  }

  .aero-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .aero-workflow-grid {
    grid-template-columns: 1fr;
  }

  .aero-hero-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .flyng-console-frame {
    border-radius: 12px;
  }

  .flyng-preview-area {
    padding: 16px 12px;
  }
}