/* Skynet Global Logistics - Core Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors - Core Palette */
  --primary: hsl(220, 95%, 58%);
  --primary-hover: hsl(220, 95%, 48%);
  --primary-light: hsla(220, 95%, 58%, 0.15);
  --secondary: hsl(210, 100%, 23%);
  --accent: hsl(174, 100%, 45%);
  --accent-light: hsla(174, 100%, 45%, 0.15);
  --accent-purple: hsl(262, 89%, 65%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  --gradient-dark: linear-gradient(135deg, hsl(222, 50%, 6%) 0%, hsl(223, 40%, 12%) 100%);

  /* Theme Surfaces */
  --bg-dark: hsl(222, 50%, 6%);
  --bg-light: hsl(210, 40%, 98%);
  --surface-dark: hsl(223, 47%, 11%);
  --surface-light: #ffffff;
  --white: #ffffff;
  --dark-bg: hsl(222, 47%, 11%);
  --dark-surface: hsl(223, 47%, 16%);
  --light-bg: hsl(210, 40%, 98%);
  --text-dark: hsl(215, 25%, 27%);
  --text-light: hsl(210, 16%, 76%);
  --text-muted: hsl(215, 16%, 47%);
  --border: hsl(214, 32%, 91%);

  /* Glassmorphism Variables */
  --surface-glass: rgba(255, 255, 255, 0.03);
  --surface-glass-dark: rgba(10, 15, 30, 0.7);
  --surface-glass-light: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-light: rgba(0, 0, 0, 0.08);

  /* Typography Scale */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Layout Dimensions */
  --header-height: 80px;
  --container-max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 24px rgba(28, 100, 242, 0.25);
  --shadow-glow-accent: 0 0 24px rgba(20, 241, 149, 0.25);

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: var(--white);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Linear Gradient Text Highlight */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(240, 100%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Separator Line */
.separator {
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 20px auto 35px;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Sticky Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.logo-text-img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo-text-img {
  filter: invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header.scrolled .nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.header.scrolled .track-btn {
  color: var(--secondary);
}

.track-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header.scrolled .track-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  cursor: pointer;
  color: var(--white);
}

.header.scrolled .mobile-toggle {
  color: var(--secondary);
}

/* Mobile Nav Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  cursor: pointer;
  color: var(--secondary);
  font-size: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* Hero Section */
/* Golden Ratio System: φ = 1.618 */
/* Base unit: 1rem (16px) */
/* Scale: 0.618, 1, 1.618, 2.618, 4.236, 6.854 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  /* φ-proportioned vertical padding: top 100px (6.25rem), bottom 61.8px (3.82rem ≈ 100/φ) */
  padding-top: 100px;
  padding-bottom: 62px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Background Glowing Points for Hero */
.hero-glow {
  position: absolute;
  width: 38.618rem;
  /* ≈ 618px — φ × 38.236rem */
  height: 38.618rem;
  border-radius: 50%;
  filter: blur(5rem);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 15s ease-in-out infinite alternate;
}

.hero-glow-1 {
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, hsla(220, 95%, 58%, 0.2) 0%, transparent 70%);
}

.hero-glow-2 {
  bottom: 5%;
  left: -100px;
  background: radial-gradient(circle, hsla(174, 100%, 45%, 0.1) 0%, transparent 70%);
}

.hero-container-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  padding: 0;
  min-height: 450px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-desc {
  margin: 0 auto 1.618rem auto;
}

.hero-actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-container-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    width: 100%;
    padding-right: 0;
    min-height: auto;
    margin-bottom: 2rem;
    align-items: center;
  }
  .hero-desc {
    margin: 0 auto 1.618rem auto;
  }
  .hero-actions {
    justify-content: center;
  }
}


.hero-network-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.animated-orbit {
  animation: orbitRotate 30s linear infinite;
  transform-origin: 250px 250px;
}

.animated-orbit-2 {
  animation: orbitRotate 45s linear infinite reverse;
  transform-origin: 250px 250px;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pulsing-ring {
  animation: pulseRing 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  transform-origin: 250px 250px;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

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

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* φ-1 ≈ 0.618 / 1 ≈ base/2 */
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.2);
  padding: 0.375rem 0.625rem;
  /* 6px × φ ≈ 10px → 6px:10px = 0.618 ratio */
  border-radius: var(--radius-full);
  color: var(--accent) !important;
  font-size: 0.618rem;
  /* φ-ratio of base 1rem */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  /* 16px × φ ≈ 26px → keep simple base unit */
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: slideTaglineDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  position: relative;
  overflow: hidden;
}

.hero-tagline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  transform: skewX(-20deg);
  animation: shineTagline 6s infinite linear;
}

@keyframes shineTagline {
  0% {
    left: -100%;
  }

  30% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes slideTaglineDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseBadge 1.5s infinite alternate;
}

@keyframes pulseBadge {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

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

.hero-title {
  /* golden ratio scale: clamp(0.618rem, fluid, φ⁴ × 1rem) → ≈ clamp(3.2rem, 5.5vw, 5.5rem) */
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  color: var(--white);
  /* spacing by base × φ ≈ 16px × 1.618 ≈ 26px */
  margin-bottom: 1.618rem;
  font-weight: 800;
  line-height: 1.125;
  letter-spacing: -0.02em;
}

.hero-title>span {
  display: block;
}

.hero-line-1 {
  display: block;
  overflow: hidden;
  margin-bottom: 0.618rem;
  /* ≈ 10px — note: smaller child spacing */
}

.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25rem) rotate(4deg);
  filter: blur(2px);
  animation: charReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: calc(0.03s * var(--char-idx) + 0.3s);
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}

.hero-word-excellence {
  display: block;
  opacity: 0;
  animation: deliverWord 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards;
}

@keyframes deliverWord {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(0.618rem);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.618rem;
  line-height: 1.618;
  animation: fadeInUp 1s ease 1.3s forwards;
  opacity: 0;
  max-width: 29rem;
  /* ≈ 464px — golden rectangle */
}

.hero-actions {
  display: flex;
  gap: 1.618rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.5s forwards;
  opacity: 0;
}

/* Keyword Rotator Transition States & Glow Pulsing */
.rotator-word {
  display: inline-block;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.6s ease,
    text-shadow 0.6s ease;
  text-shadow: 0 0 0px transparent;
}

.rotator-word::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  margin-top: 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px var(--accent);
  animation: shineLine 3s linear infinite;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes shineLine {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: -200% 0%;
  }
}

.rotator-word.exit {
  opacity: 0 !important;
  transform: translateY(-20px) scale(0.96) !important;
  filter: blur(6px) !important;
  text-shadow: 0 0 15px var(--primary) !important;
}

.rotator-word.exit::after {
  width: 0% !important;
}

.rotator-word.enter {
  opacity: 0 !important;
  transform: translateY(20px) scale(0.96) !important;
  filter: blur(6px) !important;
  text-shadow: 0 0 15px var(--primary) !important;
}

.rotator-word.enter::after {
  width: 0% !important;
}

.rotator-word.active {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
  text-shadow: 0 0 20px rgba(28, 100, 242, 0.25) !important;
  animation: keywordPulse 2s ease-in-out infinite alternate;
}

.rotator-word.active::after {
  width: 100% !important;
}

@keyframes keywordPulse {
  0% {
    text-shadow: 0 0 10px rgba(28, 100, 242, 0.2);
  }

  100% {
    text-shadow: 0 0 25px rgba(20, 241, 149, 0.45);
  }
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  z-index: 2;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-text {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

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

.stat-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-8px);
  background-color: var(--white);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--primary-light);
}

.stat-number {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services Section */
.services {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 30px;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Contact & Quote Section */
.contact {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-header h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-header p {
  color: var(--text-muted);
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
}

.info-content p,
.info-content a {
  color: var(--text-muted);
  font-size: 1rem;
}

.info-content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Quote Estimator / Contact Form Container */
.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

/* Tabs for Quote Estimator vs Direct Message */
.form-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 30px;
}

.form-tab {
  flex: 1;
  padding: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.form-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Validation Style Helpers */
.validation-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-control.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

/* Horizontal Stepper Progress Indicator */
.step-progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 35px;
  padding: 0 10px;
}

.step-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--border);
  z-index: 1;
  transform: translateY(-50%);
}

.step-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background-color: var(--primary);
  z-index: 1;
  transform: translateY(-50%);
  width: 0%;
  transition: var(--transition);
}

.step-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.step-node.active {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.step-node.completed {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

/* Interactive Calculator Steps */
.calculator-step {
  display: none;
}

.calculator-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Calculation Spinner Loader */
.calculator-loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  gap: 16px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  transition: var(--transition);
  background-color: var(--light-bg);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(28, 100, 242, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-nav-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.quote-result-card {
  background-color: var(--primary-light);
  border: 1px dashed var(--primary);
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 24px;
  animation: scaleIn 0.3s ease;
}

.quote-amount {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 800;
  margin: 10px 0;
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, hsl(223, 40%, 15%) 100%);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  transition: var(--transition);
}

.footer-logo-container:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
}

.footer-logo-text-img {
  height: 36px;
  width: auto;
}

.footer-tagline {
  color: var(--text-light);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-link:hover::before {
  width: 8px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact-text h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-contact-text p,
.footer-contact-text a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-contact-text a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Modal Popup (Shipment Tracker) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  z-index: 3001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-overlay.open+.modal-container,
.modal-container.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
}

.modal-body {
  padding: 24px;
}

/* Tracker Modal Suggestions */
.suggestion-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.suggestion-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.suggestion-badge {
  background-color: var(--light-bg);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--secondary);
}

.suggestion-badge:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Shipment Status Timeline */
.timeline {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 12px;
  width: 2px;
  height: calc(100% + 4px);
  background-color: var(--border);
}

.timeline-item.active:not(:last-child)::after {
  background-color: var(--primary);
}

/* Timeline Pulse Glow Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 100, 242, 0.4);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(28, 100, 242, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(28, 100, 242, 0);
  }
}

.timeline-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--border);
  color: var(--white);
  font-size: 0.8rem;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-item.active .timeline-badge {
  background-color: var(--primary);
  animation: pulseGlow 2s infinite;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
}

.timeline-item.active .timeline-title {
  color: var(--primary);
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.timeline-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  min-width: 90px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background-color: var(--secondary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.toast-success {
  border-left: 4px solid #10b981;
}

.toast-success svg {
  color: #10b981;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-error svg {
  color: #ef4444;
}

/* Scroll-triggered reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1.1rem;
  }

  .nav-menu,
  .nav-actions .btn,
  .nav-actions .track-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col:last-child {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .stats-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 24px;
  }
}

/* ==========================================================================
   DESIGN SYSTEM UPGRADES & NEW COMPONENT STYLES
   ========================================================================== */

/* Ambient Glowing Background Blobs */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(220, 95%, 58%, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.ambient-glow-1 {
  top: 20%;
  left: -150px;
}

.ambient-glow-2 {
  top: 60%;
  right: -150px;
  background: radial-gradient(circle, hsla(174, 100%, 45%, 0.08) 0%, transparent 70%);
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 30px) scale(1.15);
  }
}

/* Glassmorphism Card Core */
.glass-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Gradient Utility Styles */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: var(--gradient-primary);
  color: white !important;
  border: none;
  box-shadow: var(--shadow-glow);
}

.btn-gradient:hover {
  background: var(--gradient-primary);
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* 1. WHY CHOOSE US SECTION */
.why-choose {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
}

.why-choose h2 {
  color: var(--white);
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.competence-card {
  text-align: left;
}

.competence-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.competence-card:hover .competence-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.competence-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.competence-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
}

/* 2. INTERACTIVE GLOBAL MAP SECTION */
.network-map {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.network-map h2 {
  color: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.map-container {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.map-svg {
  width: 100%;
  height: auto;
  max-height: 400px;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.2));
}

.map-svg path.land-mass {
  fill: #1e293b;
  stroke: #334155;
  stroke-width: 0.8px;
  transition: var(--transition);
}

.map-svg path.land-mass.highlighted {
  fill: #2563eb;
  stroke: #60a5fa;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

/* Hub node base state (inactive by default) */
.map-svg circle.hub-node {
  fill: #334155;
  stroke: #475569;
  stroke-width: 1.5px;
  cursor: pointer;
  opacity: 0.35;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-box: fill-box;
  transform-origin: center;
}

.map-svg circle.hub-node:hover {
  opacity: 0.65;
  fill: #4a5568;
  filter: drop-shadow(0 0 5px rgba(148, 163, 184, 0.4));
  transform: scale(1.2);
}

/* Active hub node — glowing, scaled, branded */
.map-svg circle.hub-node.active {
  fill: var(--accent);
  stroke: rgba(16, 185, 129, 0.6);
  stroke-width: 2.5px;
  opacity: 1;
  transform: scale(1.5);
  filter: drop-shadow(0 0 10px var(--accent)) drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
  animation: nodeGlowPulse 2.2s ease-in-out infinite;
}

@keyframes nodeGlowPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 8px var(--accent)) drop-shadow(0 0 18px rgba(16, 185, 129, 0.45));
  }

  50% {
    filter: drop-shadow(0 0 14px var(--accent)) drop-shadow(0 0 28px rgba(16, 185, 129, 0.7));
  }
}

/* Route lines — inactive: barely visible */
.map-svg path.route-line {
  stroke: #2d3748;
  stroke-width: 0.8px;
  stroke-dasharray: 4 6;
  opacity: 0.2;
  fill: none;
  transition: all 0.5s ease;
}

/* Active route — bright flowing glow */
.map-svg path.route-line.active {
  stroke: var(--accent);
  stroke-width: 2px;
  opacity: 1;
  filter: drop-shadow(0 0 4px var(--accent));
}

/* Hub Pulse Ring — expanding ring on active node */
.map-svg circle.hub-pulse-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5px;
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
}

.map-svg circle.hub-pulse-ring.active {
  animation: hubRingExpand 2.5s ease-out infinite;
}

@keyframes hubRingExpand {
  0% {
    opacity: 0.6;
    transform: scale(1);
    stroke-width: 2px;
  }

  70% {
    opacity: 0.15;
    transform: scale(2.8);
    stroke-width: 0.5px;
  }

  100% {
    opacity: 0;
    transform: scale(3.2);
    stroke-width: 0.3px;
  }
}

.region-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.region-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  transition: var(--transition);
}

.region-btn:hover {
  background: var(--surface-glass-hover);
}

.region-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.map-info-panel {
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  transition: opacity 0.18s ease;
}

.info-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
  transition: opacity 0.18s ease;
}

.info-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-stat-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

.info-stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.info-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* 3. LOGISTICS FLEET SHOWCASE */
.fleet-showcase {
  background: var(--bg-light);
  color: var(--text-dark);
  position: relative;
}

.fleet-container {
  margin-top: 50px;
}

.fleet-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.fleet-tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.fleet-tab-btn:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}

.fleet-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.fleet-content-wrapper {
  position: relative;
}

.fleet-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.fleet-panel.active {
  display: grid;
  animation: slidePanel 0.5s ease forwards;
}

@keyframes slidePanel {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fleet-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.fleet-image-container img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle slow ken-burns drift animation */
.fleet-img-animated {
  animation: fleetKenBurns 18s ease-in-out infinite alternate;
}

@keyframes fleetKenBurns {
  0% {
    transform: scale(1.0) translate(0px, 0px);
  }

  25% {
    transform: scale(1.04) translate(-6px, -3px);
  }

  50% {
    transform: scale(1.06) translate(-3px, 2px);
  }

  75% {
    transform: scale(1.03) translate(4px, -2px);
  }

  100% {
    transform: scale(1.05) translate(2px, 3px);
  }
}

.fleet-image-container:hover img {
  animation-play-state: paused;
  transform: scale(1.08);
}

/* Gradient overlay with vignette */
.fleet-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

/* Shimmer light bar sweep across image */
.fleet-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-20deg);
  animation: fleetShimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes fleetShimmer {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 150%;
  }
}

.fleet-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--secondary);
}

.fleet-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.fleet-details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fleet-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fleet-detail-icon {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.fleet-detail-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--secondary);
}

.fleet-detail-value {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 4. ECO-FREIGHT CARBON CALCULATOR */
.eco-calc {
  background: var(--white);
  color: var(--text-dark);
}

.eco-container {
  max-width: 850px;
  margin: 50px auto 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.eco-controls {
  padding: 40px;
  background: var(--bg-light);
  border-right: 1px solid var(--border);
}

.eco-controls h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.eco-slider-group {
  margin-bottom: 30px;
}

.eco-slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.eco-slider-val {
  color: var(--primary);
  font-weight: 700;
}

.eco-range-input {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--border);
  -webkit-appearance: none;
  cursor: pointer;
}

.eco-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.eco-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-glow);
}

.eco-results {
  padding: 40px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eco-results h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.eco-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.eco-chart-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.eco-chart-label {
  width: 90px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.eco-bar-wrapper {
  flex-grow: 1;
  height: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.eco-bar {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-bar-air {
  background: #ef4444;
}

.eco-bar-ocean {
  background: var(--primary);
}

.eco-bar-eco {
  background: var(--accent);
}

.eco-chart-value {
  width: 60px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
}

.eco-savings-badge {
  background: var(--accent-light);
  color: hsl(174, 100%, 35%);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 241, 149, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eco-savings-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.eco-savings-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: hsl(174, 100%, 30%);
}

.eco-savings-text p {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* 5. INTERACTIVE FAQ ACCORDION */
.faq {
  background: var(--bg-light);
  color: var(--text-dark);
}

.faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  text-align: left;
  border: none;
  background: none;
}

.faq-trigger svg.chevron-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item.active svg.chevron-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-content {
  border-top-color: var(--border);
}

/* 6. CLIENT TESTIMONIALS SECTION */
.testimonials {
  background: var(--white);
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 35px;
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.star-rating {
  color: var(--warning);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
}

.client-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 7. LIVE SUPPORT CHATBOT WIDGET */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  font-family: var(--font-body);
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.chat-toggle svg {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.chat-toggle.open svg {
  transform: scale(0) rotate(90deg);
}

.chat-toggle-close-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle.open .chat-toggle-close-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.chat-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  height: 480px;
  background: var(--surface-glass-dark);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl), 0 10px 40px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.chat-window.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, hsl(220, 40%, 18%) 100%);
  color: var(--white);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-bot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
}

.chat-header-info h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.chat-header-info span {
  font-size: 0.72rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-header-info span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.4;
  animation: chatMsgFade 0.3s ease forwards;
}

@keyframes chatMsgFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.chat-opt-btn {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  background-color: transparent;
}

.chat-opt-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--white);
}

.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.chat-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--white);
}

.chat-input:focus {
  border-color: var(--primary);
  outline: none;
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
}

.chat-send-btn:hover {
  background: var(--primary-hover);
}

/* RESPONSIVE UPGRADES FOR NEW SECTIONS */
@media (max-width: 1024px) {
  .eco-container {
    grid-template-columns: 1fr;
  }

  .eco-controls {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .competence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .fleet-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .competence-grid {
    grid-template-columns: 1fr;
  }

  .fleet-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .chat-window {
    width: 310px;
    height: 420px;
  }

  .clock-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .clock-status {
    justify-content: flex-start;
  }
}

/* ==========================================
   PREMIUM ANIMATIONS AND MICRO-INTERACTIONS
   ========================================== */

/* 1. Magnetic Hover Glow for Cards */
.glass-card::after,
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(29, 78, 216, 0.12), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover::after,
.service-card:hover::after {
  opacity: 1;
}

.glass-card>*,
.service-card>* {
  position: relative;
  z-index: 2;
}

/* 2. SVG Route Pulse Animation — inactive routes: slow, near-invisible */
.map-svg path.route-line {
  stroke: #2d3748;
  stroke-width: 0.8px;
  stroke-dasharray: 4 6;
  opacity: 0.2;
  fill: none;
  transition: all 0.5s ease;
  animation: none;
}

/* Active route: bright flowing dash with glow */
.map-svg path.route-line.active {
  stroke: var(--accent);
  stroke-width: 2px;
  stroke-dasharray: 10 5;
  opacity: 1;
  filter: drop-shadow(0 0 5px var(--accent)) drop-shadow(0 0 12px rgba(16, 185, 129, 0.4));
  animation: flowLanesActive 5s linear infinite !important;
}

@keyframes flowLanesActive {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -300;
  }
}

/* Hub label text styling */
.map-svg text.hub-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  fill: #94a3b8;
  opacity: 0.4;
  transition: all 0.4s ease;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.map-svg text.hub-label.active {
  fill: #ecfdf5;
  opacity: 1;
  font-weight: 700;
}

/* 3. Staggered Scroll Reveals */
.reveal-delay-1 {
  transition-delay: 0.15s !important;
}

.reveal-delay-2 {
  transition-delay: 0.3s !important;
}

.reveal-delay-3 {
  transition-delay: 0.45s !important;
}

.reveal-delay-4 {
  transition-delay: 0.6s !important;
}

/* 4. Button Arrow Hover Slide & Focus Input Glow */
.btn svg,
.service-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover svg,
.service-link:hover svg {
  transform: translateX(5px);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.25) !important;
  transform: translateY(-1px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 5. Ambient Glow Blob Drift transition */
.ambient-glow {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* 6. Accordion Scale Toggle */
.faq-item {
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-item.active {
  transform: scale(1.015);
}

/* ==========================================
   GLOBAL PRESENCE, TIMEZONES & CAREERS STYLES
   ========================================== */

/* 1. Global Presense / Hubs Section */
.global-hubs {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.hubs-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .hubs-grid {
    grid-template-columns: 1fr;
  }
}

.hubs-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

/* Timezone Clocks */
.clocks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* ----- Active Operational Hub ----- */
.clock-item.hub-active {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 3px solid var(--accent);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.06), inset 0 0 30px rgba(16, 185, 129, 0.03);
}

.clock-item.hub-active:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateX(4px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.1), inset 0 0 30px rgba(16, 185, 129, 0.04);
}

.clock-item.hub-active .clock-name {
  color: var(--white);
  font-weight: 600;
}

.clock-item.hub-active .clock-time {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
  font-size: 1.18rem;
}

/* ----- Planned Expansion Hub ----- */
.clock-item.hub-planned {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0.55;
}

.clock-item.hub-planned:hover {
  opacity: 0.75;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.clock-item.hub-planned .clock-name {
  color: var(--text-muted);
  font-weight: 400;
}

.clock-item.hub-planned .clock-time {
  color: #64748b;
  text-shadow: none;
  font-size: 1rem;
}

.clock-name {
  font-size: 0.92rem;
  color: var(--text-light);
  min-width: 155px;
}

.clock-time {
  font-size: 1.15rem;
  font-family: monospace;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.clock-status {
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  min-width: 128px;
  justify-content: flex-end;
}

.clock-status.online {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.clock-status.planned {
  color: #b08d57;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Active pulsing green dot */
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseBadge 1.2s infinite alternate;
  flex-shrink: 0;
}

/* Planned expansion — hollow ring indicator */
.status-ring {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid #b08d57;
  background: transparent;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Compliance Badges Medallions */
.badge-medallions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 480px) {
  .badge-medallions {
    grid-template-columns: 1fr;
  }
}

.badge-medallion {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 20px 15px;
  text-align: center;
  transition: var(--transition);
}

.badge-medallion:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: var(--shadow-md), 0 0 15px rgba(29, 78, 216, 0.15);
  transform: translateY(-4px);
}

.badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.1);
  color: var(--primary-light);
  margin: 0 auto 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-medallion:hover .badge-icon {
  transform: rotate(360deg);
  background: rgba(29, 78, 216, 0.2);
  color: var(--accent);
}

.badge-medallion h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.badge-medallion p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 2. Careers Section */
.careers {
  background: var(--bg-dark);
  color: var(--text-light);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .careers-grid {
    grid-template-columns: 1fr;
  }
}

.careers-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
}

.career-positions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.career-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.15);
  transform: scale(1.01);
}

.career-trigger {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.career-info-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.career-info-header h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
}

.career-tag {
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(16, 185, 129, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.career-trigger svg.chevron-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-item.active svg.chevron-icon {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.career-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-details-content {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 5px;
  padding-top: 15px;
}

/* Upload zone */
.career-apply-widget {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.upload-dropzone {
  border: 1.5px dashed var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
  background: rgba(29, 78, 216, 0.05);
  border-color: var(--primary);
  color: var(--white);
}

.upload-dropzone svg {
  color: var(--text-muted);
  transition: var(--transition);
}

.upload-dropzone:hover svg {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.upload-dropzone span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.upload-dropzone.has-file span {
  color: var(--accent);
  font-weight: bold;
}

/* Partner Onboarding Forms */
.onboarding-steps-container {
  margin-top: 10px;
}

.onboarding-step-view {
  animation: fadeIn 0.4s ease forwards;
}

.onboarding-actions {
  margin-top: 20px;
}