:root {
  --black: #0A0A0A;
  --charcoal: #1C1C1E;
  --slate: #2C2C2E;
  --grey-600: #48484A;
  --grey-400: #8E8E93;
  --white: #FFFFFF;
  --orange: #FF6B00;
  --orange-bright: #FF8534;
  --font-display: 'Archivo', Arial, Helvetica, sans-serif;
  --font-mono: 'Sometype Mono', 'Courier New', Courier, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  max-width: 400px;
  padding: 0 20px;
}

.loading-logo {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}

.loading-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: logoFloat 3s ease-in-out infinite;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border: 2px solid rgba(255, 107, 0, 0.1);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loading-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--grey-400);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.loading-progress-container {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.loading-percentage {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* VIEWS */
.view {
  display: none;
}

.view.active {
  display: block;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 60px;
}

nav.solid {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-img {
  height: 60px;  /* Increased from 40px by 50% */
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-menu a:hover {
  color: var(--orange);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  /* Reset aggressive rendering */
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-cta:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
}

.lang-switcher {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--grey-400);
  margin-right: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switcher a {
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.25s;
}

/* Header Phone Number */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-400);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 16px;
}

.nav-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-phone:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

/* Header Social Icons */
.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 16px;
}

.nav-social-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.25s;
  color: var(--grey-400);
}

.nav-social-icon:hover {
  transform: translateY(-2px);
  color: var(--orange);
}

.nav-social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile Phone Number */
.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-400);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 16px 0;
  padding: 12px 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
}

.mobile-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-phone:hover {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.15);
}

/* Mobile Menu Social Icons */
.mobile-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}

.lang-switcher a:hover {
  color: var(--orange);
}

.lang-switcher .active {
  color: var(--white);
  font-weight: 700;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0A0A0A;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-bottom: calc(env(safe-area-inset-bottom, 20px) + 60px);
  padding-top: 80px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu .mobile-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 10px;
}

/* HOME HERO MAP */
#hero {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 0;
}

.hero-map-wrap {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 600px;
  max-height: 1000px;
  background: var(--black);
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 72px;
}

.hero-map-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, transparent, var(--black) 90%);
  pointer-events: none;
  z-index: 5;
}

.hero-map-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--black) 90%);
  pointer-events: none;
  z-index: 5;
}

.static-map-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.static-map-container::-webkit-scrollbar {
  display: none;
}

.static-map-img {
  width: 100%;
  height: 100%;
  min-width: 1100px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

/* Stats overlay bottom-center */
/* Stats overlay bottom-center */
.route-stats-bar-new {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(255, 107, 0, 0.4);
  border-radius: 4px;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
  white-space: nowrap;
  min-width: 600px;
}

.stat-card-new {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card-new:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  /* Faint separator line */
}

.stat-value-new {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label-new {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 0;
}

/* Legend top-left */
.map-legend {
  position: absolute;
  bottom: 14px;  /* Changed from top to bottom */
  left: 14px;
  z-index: 501;
  background: rgba(6, 9, 16, 0.88);
  padding: 10px 14px;
  border-radius: 4px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.legend-title {
  font-family: 'Sometype Mono', monospace;
  font-size: 7px;
  color: #555;
  letter-spacing: .12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.legend-item:last-child {
  margin-bottom: 0;
}

.legend-label {
  font-family: 'Sometype Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.legend-label.titr {
  color: #FF6B00;
}

.legend-label.sea {
  color: #4A90DA;
}

.hero-content {
  background: var(--black);
  text-align: center;
  padding: 36px 60px 44px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  display: inline-block;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--grey-400);
  margin-bottom: 36px;
  font-weight: 300;
}

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

.btn-primary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* Reset aggressive rendering */
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  /* Reset aggressive rendering */
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* MAP SVG ROUTE LINES */
.route-middle {
  fill: none;
  stroke: #FF6B00;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 0;
  /* animation: drawRoute 3.5s 0.2s ease-out forwards; */
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.8));
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}

.route-sea {
  fill: none;
  stroke: #00BFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 6;
  opacity: 0.7;
  /* animation: drawRoute 4s 1.4s ease-out forwards; */
  stroke-dashoffset: 0;
}

.ship-dot {
  fill: #00BFFF;
  filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.9));
}

.city-dot {
  fill: #FF6B00;
  filter: drop-shadow(0 0 4px rgba(255, 107, 0, 1));
  /* animation: cityPulse 2s ease-in-out infinite; */
}

.city-dot-minor {
  fill: #cccccc;
  opacity: 0.9;
}

@keyframes cityPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.city-ring {
  fill: none;
  stroke: rgba(255, 107, 0, 0.4);
  stroke-width: 1.5;
  /* animation: ringExpand 3s ease-in-out infinite; */
  display: none;
}

@keyframes ringExpand {
  0% {
    r: 8;
    opacity: 0.5;
  }

  50% {
    r: 14;
    opacity: 0.1;
  }

  100% {
    r: 8;
    opacity: 0.5;
  }
}

.city-label {
  font-family: 'Sometype Mono', monospace;
  font-size: 10px;
  fill: #FF6B00;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.city-label-minor {
  font-family: 'Sometype Mono', monospace;
  font-size: 9px;
  fill: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.city-label-sub {
  font-family: 'Sometype Mono', monospace;
  font-size: 8px;
  fill: rgba(255, 107, 0, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.city-label-ajs {
  font-family: 'Sometype Mono', monospace;
  font-size: 8px;
  fill: #FFD700;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  paint-order: stroke fill;
  stroke: rgba(0, 0, 0, 0.95);
  stroke-width: 4px;
}

.ajs-connector {
  stroke: rgba(255, 215, 0, 0.55);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  fill: none;
}

.cargo-dot {
  fill: #FF6B00;
  filter: drop-shadow(0 0 5px rgba(255, 107, 0, 1));
}

.route-info-overlay {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 14px 32px;
  border-radius: 3px;
  display: flex;
  gap: 32px;
  z-index: 4;
  white-space: nowrap;
}

.route-stat-item {
  text-align: center;
}

.route-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.route-stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
}

#full-corridor-map {
  display: none;
}

/* HOME SERVICES */
#services {
  padding: 80px 60px;
  background: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-400);
  max-width: 600px;
  margin: 0 auto 0;
  font-weight: 300;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.service-card {
  background: var(--charcoal);
  padding: 48px 36px;
  transition: all 0.4s;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

.service-card:hover {
  background: var(--slate);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--grey-600);
  margin-bottom: 20px;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-400);
  font-weight: 300;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--grey-400);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.25s, color 0.25s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.service-link:hover {
  gap: 14px;
  color: var(--orange-bright);
}

/* HOME WHY AJS */
#why-ajs {
  padding: 80px 60px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#why-ajs::before {
  content: 'AJS';
  position: absolute;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  transition: all 0.4s;
}

.why-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.05);
  transform: translateY(-4px);
}

.why-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-400);
  font-weight: 300;
}

/* HOME CONTACT */
#contact {
  padding: 80px 60px;
  background: var(--charcoal);
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-left h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact-left h2 span {
  color: var(--orange);
}

.contact-left p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-400);
  margin-bottom: 40px;
  font-weight: 300;
}

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

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 4px;
}

.contact-item dd {
  font-size: 0.9rem;
  color: var(--white);
}

.contact-item dd a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-item dd a:hover {
  color: var(--orange-bright);
}

/* FORMS (shared) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--slate);
}

.form-group input.field-error,
.form-group textarea.field-error {
  border-color: #ff3b30;
}

.form-submit {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
  transition: all 0.25s;
}

.form-submit:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
}

/* RFQ FORM TYPE SELECTOR */
.rfq-type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.rfq-type-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  color: var(--grey-600);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.25s;
}

.rfq-type-btn:hover {
  border-color: var(--orange);
  color: var(--white);
}

.rfq-type-btn.active {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* RFQ FORM SPECIFIC STYLES */
.rfq-form {
  display: none;
  flex-direction: column;
  gap: 48px;
}

.rfq-form.active {
  display: flex;
}

.rfq-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
  border-radius: 4px;
}

.rfq-section-desc {
  color: var(--grey-600);
  font-size: 0.9rem;
  margin: -12px 0 20px 0;
  line-height: 1.6;
}

.rfq-section-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rfq-subsection-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin: 28px 0 16px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.rfq-subsection-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid .form-group.full-width {
  grid-column: 1 / -1;
}

.form-input {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--orange);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B00' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

select.form-input option {
  background: var(--slate);
  color: var(--white);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-display);
  line-height: 1.6;
}

.form-msg {
  padding: 14px 20px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

/* Radio and Checkbox Groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--white);
  cursor: pointer;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: all 0.2s;
}

.radio-label:hover, .checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 0, 0.3);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--orange);
}

/* Conditional sections */
.conditional-section {
  display: none;
}

.conditional-section.visible {
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .rfq-section {
    padding: 20px;
  }

  .rfq-section-title {
    font-size: 0.7rem;
  }
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 48px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

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

.footer-logo-img {
  height: 54px;  /* Increased from 36px by 50% */
  width: auto;
  display: block;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--grey-600);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--grey-600);
}

.social-icon:hover {
  transform: translateY(-2px);
  color: var(--orange);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-back {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.footer-back:hover {
  color: var(--orange-bright);
}

/* SERVICE PAGES */
.service-hero {
  padding: 140px 60px 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  position: absolute;
  font-size: 22vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.018);
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
}

.breadcrumb a:hover {
  color: var(--orange-bright);
}

.service-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.service-hero h1 span {
  color: var(--orange);
}

.service-hero-sub {
  font-size: 1.15rem;
  color: var(--grey-400);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
}

.section {
  padding: 80px 60px;
}

.section.dark {
  background: var(--black);
}

.section.mid {
  background: var(--charcoal);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section h2 span {
  color: var(--orange);
}

.overview-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

/* Founder Section */
.founder-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 48px;
  align-items: start;
}

.founder-photo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder-photo img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 107, 0, 0.25);
}

.founder-photo .founder-contact {
  width: 280px;
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
  font-weight: 500;
}

.founder-subtitle {
  font-size: 1rem;
  color: var(--grey-400);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

.founder-description {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.8;
  margin: 0;
  margin-top: 8px;
}

.founder-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.25s;
}

.founder-contact-item:hover {
  color: var(--orange);
}

.founder-contact-item svg {
  flex-shrink: 0;
  color: var(--orange);
}

.founder-stats {
  display: flex;
  flex-direction: column;
}

.overview-text p {
  font-size: 0.95rem;
  color: var(--grey-400);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

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

.stat-cell {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.02) 100%);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 107, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.03) 100%);
}

.stat-cell:hover::before {
  opacity: 1;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 500;
  line-height: 1.4;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-card {
  background: var(--charcoal);
  padding: 40px 36px;
  position: relative;
  transition: all 0.3s;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

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

.detail-card:hover {
  background: var(--slate);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--grey-600);
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--orange);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.7;
  font-weight: 300;
}

.card-list {
  list-style: none;
  margin-top: 16px;
}

.card-list li {
  font-size: 0.84rem;
  color: var(--grey-400);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.steps-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 48px;
}

.step {
  background: var(--charcoal);
  padding: 36px 28px;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--grey-400);
  line-height: 1.7;
  font-weight: 300;
}

.svc-why-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  transition: all 0.3s;
}

.svc-why-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.05);
  transform: translateY(-4px);
}

.svc-why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.svc-why-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.svc-why-desc {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.7;
  font-weight: 300;
}

.contact-section {
  padding: 80px 60px;
  background: var(--charcoal);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-inner h2 span {
  color: var(--orange);
}

.contact-inner p {
  color: var(--grey-400);
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* SERVICE HERO NUMBERS */
#view-seafreight .service-hero::before {
  content: '01';
}

#view-multimodal .service-hero::before {
  content: '02';
}

#view-railway .service-hero::before {
  content: '03';
}

#view-warehousing .service-hero::before {
  content: '04';
}

#view-project-cargo .service-hero::before {
  content: '05';
}

#view-customs .service-hero::before {
  content: '06';
}

#view-news .service-hero::before {
  content: '07';
}

/* WAREHOUSING SPECIFIC */
.facility-wrap {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.facility-info {
  background: var(--charcoal);
  padding: 48px 40px;
}

.facility-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.facility-info h3 span {
  color: var(--orange);
}

.facility-info p {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.facility-specs {
  background: var(--black);
  padding: 48px 40px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.spec-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.spec-value.orange {
  color: var(--orange);
}

/* CUSTOMS SPECIFIC */
.territory-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.territory-card {
  background: var(--charcoal);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.territory-card:hover {
  background: var(--slate);
}

.territory-flag {
  font-size: 2rem;
  margin-bottom: 10px;
}

.territory-name {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.territory-detail {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.docs-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.docs-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.docs-col h3 span {
  color: var(--orange);
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.doc-item:last-child {
  border-bottom: none;
}

.doc-icon {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.doc-text {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.5;
}

.doc-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

/* PROJECT CARGO SPECIFIC */
.cargo-types {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.cargo-type {
  background: var(--charcoal);
  padding: 32px 28px;
  transition: all 0.3s;
}

.cargo-type:hover {
  background: var(--slate);
}

.cargo-type-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 14px;
  color: var(--orange);
  transition: all 0.3s ease;
}

.cargo-type-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.cargo-type:hover .cargo-type-icon {
  transform: scale(1.1);
}

.cargo-type:hover .cargo-type-icon svg {
  stroke: #FF8534;
}

.cargo-type-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cargo-type-desc {
  font-size: 0.84rem;
  color: var(--grey-400);
  line-height: 1.6;
  font-weight: 300;
}

.alert-box {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
  padding: 28px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.alert-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-text {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.7;
}

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

/* RAILWAY SPECIFIC */
.compare-wrap {
  max-width: 1200px;
  margin: 48px auto 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  background: var(--slate);
  padding: 14px 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-table th.highlight {
  color: var(--orange);
}

.compare-table td {
  font-size: 0.88rem;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--grey-400);
  background: var(--charcoal);
}

.compare-table td.label {
  font-weight: 600;
  color: var(--white);
  background: var(--slate);
}

.compare-table td.good {
  color: #4CAF50;
}

.compare-table td.highlight-cell {
  color: var(--orange);
  font-weight: 600;
  background: rgba(255, 107, 0, 0.06);
}

/* WHO WE ARE PAGE SPECIFIC */
.inline-link {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
}

.inline-link:hover {
  color: var(--orange-bright);
  border-bottom-color: var(--orange);
}

.large-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--grey-400);
  margin: 24px 0;
}

/* MULTIMODAL SPECIFIC */
.route-viz {
  max-width: 1200px;
  margin: 48px auto 0;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
}

.route-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 32px;
}

.route-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 16px;
}

.route-flow::-webkit-scrollbar {
  height: 4px;
}

.route-flow::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.route-flow::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 0, 0.3);
  border-radius: 4px;
}

.route-node {
  text-align: center;
  padding: 16px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.route-node-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.route-node-mode {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.route-arrow {
  color: var(--orange);
  font-size: 1.4rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.route-node.highlight {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

/* POTI SECTION */
.poti-section {
  max-width: 1200px;
  margin: 0 auto;
}

.poti-content {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 48px 40px;
  margin-top: 48px;
}

.poti-content p {
  font-size: 0.95rem;
  color: var(--grey-400);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

/* ===================================
   NEWS CAROUSEL
   =================================== */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 48px 0 32px;
  padding: 0 60px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-card {
  min-width: 340px;
  flex-shrink: 0;
  background: rgba(28, 28, 30, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-card:hover {
  background: rgba(28, 28, 30, 0.85);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
}

.carousel-card-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.carousel-card-date {
  font-size: 0.75rem;
  color: #636366;
  margin-left: 10px;
}

.carousel-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 12px 0;
}

.carousel-card-desc {
  font-size: 0.9rem;
  color: #8E8E93;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(28, 28, 30, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

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

.carousel-indicator.active {
  width: 24px;
  border-radius: 4px;
  background: var(--orange);
}

.carousel-indicator:hover {
  background: rgba(255, 107, 0, 0.5);
}

/* ===================================
   ENHANCED CTA ANIMATIONS
   =================================== */
/* Pulsing button effect */
.btn-pulsing {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-pulsing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), #FF8534);
  opacity: 0;
  z-index: -1;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.6), 0 0 60px rgba(255, 107, 0, 0.3);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* Magnetic button effect */
.btn-magnetic {
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Animated icon within button */
.btn-icon {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  animation: bounce-arrow 0.6s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-pulsing,
  .btn-pulsing::before {
    animation: none;
  }

  .btn-primary:hover .btn-icon {
    animation: none;
  }

  .carousel-track {
    transition: none;
  }
}

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

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

  .route-info-overlay {
    flex-direction: column;
    gap: 20px;
  }

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

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

  .founder-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-photo img {
    width: 100%;
    height: auto;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .founder-name {
    font-size: 2rem;
  }

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

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

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

  .facility-wrap {
    grid-template-columns: 1fr;
  }

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

  .docs-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* News Carousel */
  .carousel-container {
    flex-direction: column;
  }

  .carousel-btn {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    margin: 16px auto;
  }

  .carousel-track {
    gap: 16px;
  }

  .compare-table {
    font-size: 0.78rem;
  }
}

/* Large laptop screens - tighten nav spacing */
@media (max-width: 1600px) {
  nav {
    padding: 18px 40px;
    gap: 24px;
  }

  nav.scrolled {
    padding: 12px 40px;
  }

  .nav-menu {
    gap: 28px;
  }

  .nav-menu a {
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .nav-phone {
    font-size: 0.78rem;
    margin-right: 8px;
  }

  .nav-social {
    gap: 8px;
  }
}

/* Laptop screens - fix header overflow */
@media (max-width: 1440px) {
  nav {
    padding: 18px 32px;
    gap: 16px;
  }

  nav.scrolled {
    padding: 12px 32px;
  }

  .nav-logo-img {
    height: 44px;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-menu a {
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .lang-switcher {
    margin-right: 0;
  }

  /* Hide phone on smaller laptops */
  .nav-phone {
    display: none !important;
  }

  /* Hide social icons on smaller laptops */
  .nav-social {
    display: none !important;
  }

  .nav-cta {
    padding: 7px 16px;
    font-size: 0.6rem;
    margin-left: auto;
  }
}

/* Laptops - switch to hamburger menu */
@media (max-width: 1550px) {
  .nav-menu,
  .nav-cta,
  .nav-phone,
  .nav-social,
  .lang-switcher {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 16px 24px;
  }

  nav.solid {
    padding: 20px 24px;
  }

  .nav-menu,
  .nav-cta,
  .nav-phone,
  .nav-social {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-map-wrap {
    height: 50vw;
    min-height: 260px;
  }

  .hero-content {
    padding: 28px 24px 36px;
  }

  #services,
  #contact,
  #why-ajs {
    padding: 56px 24px;
  }

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

  footer {
    padding: 40px 24px;
  }

  .route-info-overlay {
    gap: 12px;
    padding: 10px 14px;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 8px;
  }

  .route-stat-value {
    font-size: 1.1rem;
  }

  .route-stat-label {
    font-size: 0.75rem; /* Increased from 0.52rem for better readability (12px vs 8.32px) */
  }

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

  /* Fix touch targets - ensure 44px minimum height */
  .nav-cta,
  .btn-primary,
  .form-submit {
    padding: 16px 32px; /* Ensures 44px+ height */
  }

  .nav-hamburger {
    padding: 10px; /* Makes 44px × 44px touch target */
  }

  .form-input,
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 16px; /* Ensures 44px+ height */
  }

  .service-hero,
  .section,
  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .svc-why-grid {
    grid-template-columns: 1fr;
  }

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

  .cargo-types {
    grid-template-columns: 1fr;
  }

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

  .route-flow {
    gap: 8px;
  }

  /* Responsive Map Overlays */
  .hero-map-wrap {
    height: 400px;
  }

  .route-stats-bar-new {
    width: 90%;
    min-width: unset;
    flex-wrap: wrap;
    padding: 16px;
    gap: 16px 0;
    bottom: 20px;
    z-index: 1;
  }

  .stat-card-new {
    flex: 1 1 45%;
    padding: 0 10px;
    border-right: none;
  }

  .stat-card-new:nth-child(even) {
    border-right: none !important;
  }

  .stat-card-new:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .stat-value-new {
    font-size: 1.25rem;
  }

  .stat-label-new {
    font-size: 0.75rem; /* Increased from 0.52rem for better readability (12px vs 8.32px) */
  }

  .map-legend {
    bottom: auto;
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    font-size: 0.6rem;
    z-index: 2;
  }

  /* Improve minimum font sizes for mobile readability */
  .section-tag,
  .breadcrumb,
  .footer-copy {
    font-size: 0.75rem; /* 12px minimum for better readability */
  }
}

/* PREMIUM ADDITIONS from style.css */
:root {
  --nav-height: 80px;
  --glass: rgba(28, 28, 30, 0.85);
  --electric-blue: #00BFFF;
  --gold: #FFD700;
}

.nav-cta,
.btn-primary,
.form-submit {
  /* Removed aggressive outlines that were distorting text */
  text-shadow: none;
  -webkit-text-stroke: 0;
}

/* Social Contact Links */
.social-contact-links {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Sometype Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.social-link.wa {
  color: #25D366;
}

.social-link.wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.social-link.vb {
  color: #7360f2;
}

.social-link.vb:hover {
  background: rgba(115, 96, 242, 0.1);
  border-color: rgba(115, 96, 242, 0.3);
  transform: translateY(-2px);
}

.social-link svg {
  flex-shrink: 0;
}

/* ========================================
   RESPONSIVE: Large Screens (1600px+)
   ======================================== */
@media (min-width: 1600px) {
  .hero-map-wrap {
    height: 80vh;
    max-height: 1100px;
  }
}

/* ========================================
   RESPONSIVE: Extra Large Screens (1920px+)
   ======================================== */
@media (min-width: 1920px) {
  .hero-map-wrap {
    height: 85vh;
    max-height: 1200px;
  }
}

/* ========================================
   RESPONSIVE: Ultra Wide Screens (2560px+)
   ======================================== */
@media (min-width: 2560px) {
  .hero-map-wrap {
    height: 90vh;
    max-height: 1400px;
  }
}
/* ========================================
   MODERN ANIMATIONS & INTERACTIONS
   ======================================== */

/* Backdrop Blur for Navigation */
nav.solid {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Button Hover Effects */
.cta-btn, .cta-btn-outline, button[type="submit"], .btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover, button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.cta-btn:active, button[type="submit"]:active {
  transform: translateY(0);
}

/* Ripple Effect on Click */
.cta-btn::before, button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn:active::before, button[type="submit"]:active::before {
  width: 300px;
  height: 300px;
}

/* Service Card Enhancements */
.service-card, .why-card, .card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover, .why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
}

/* Card Inner Glow on Hover */
.service-card::after, .why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

/* Icon Animation on Hover */
.service-icon svg, .why-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon svg,
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Smooth Link Hover */
a {
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--orange-bright);
}

/* Form Input Focus Animation */
input:focus, textarea:focus, select:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

/* Stats Number Pulse */
.stat-num {
  display: inline-block;
  animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Gradient Text Shine Effect */
.gradient-text {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shine 3s linear infinite;
}

@keyframes gradient-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, 
    var(--charcoal) 25%, 
    var(--slate) 50%, 
    var(--charcoal) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Stagger Animation for Lists */
.cards-grid > *, .feature-grid > * {
  animation: fade-in-up 0.6s ease-out backwards;
}

.cards-grid > *:nth-child(1), .feature-grid > *:nth-child(1) { animation-delay: 0.1s; }
.cards-grid > *:nth-child(2), .feature-grid > *:nth-child(2) { animation-delay: 0.2s; }
.cards-grid > *:nth-child(3), .feature-grid > *:nth-child(3) { animation-delay: 0.3s; }
.cards-grid > *:nth-child(4), .feature-grid > *:nth-child(4) { animation-delay: 0.4s; }
.cards-grid > *:nth-child(5), .feature-grid > *:nth-child(5) { animation-delay: 0.5s; }
.cards-grid > *:nth-child(6), .feature-grid > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Reveal */
.section {
  animation: section-reveal 0.8s ease-out;
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Lift for Clickable Items */
.nav-menu a, .mobile-nav-link, .lang-switcher a {
  transition: transform 0.2s ease, color 0.3s ease;
}

.nav-menu a:hover, .mobile-nav-link:hover {
  transform: translateY(-2px);
}

/* Enhanced Focus States for Accessibility */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   LEVEL 2: PARALLAX EFFECTS
   ======================================== */

/* Hero Parallax Setup */
#hero {
  position: relative;
  overflow: hidden;
}

/* Smooth parallax transitions - only map moves */
.static-map-container {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Floating Geometric Background */
#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 25s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Ensure content stays above floating elements */
.hero-content {
  position: relative;
  z-index: 2;
}

.static-map-container {
  position: relative;
  z-index: 1;
}

/* Subtle depth effect on map container */
.static-map-container {
  transform-origin: center center;
}

/* ========================================
   LEVEL 2: ENHANCED HERO SECTION
   ======================================== */

/* Animated Particles Background */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

/* Different sizes and positions for particles */
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation: float-particle 25s infinite ease-in-out;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 20%;
  animation: float-particle 30s infinite ease-in-out 2s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 15%;
  animation: float-particle 20s infinite ease-in-out 4s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 80%;
  animation: float-particle 28s infinite ease-in-out 1s;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 70%;
  animation: float-particle 26s infinite ease-in-out 3s;
}

.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  top: 50%;
  left: 50%;
  animation: float-particle 32s infinite ease-in-out 5s;
}

.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  top: 15%;
  left: 60%;
  animation: float-particle 22s infinite ease-in-out;
}

.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 30%;
  animation: float-particle 27s infinite ease-in-out 2s;
}

.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  top: 35%;
  left: 90%;
  animation: float-particle 24s infinite ease-in-out 4s;
}

.particle:nth-child(10) {
  width: 6px;
  height: 6px;
  top: 65%;
  left: 85%;
  animation: float-particle 29s infinite ease-in-out 1s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translate(30px, -50px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, -100px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translate(40px, -150px) scale(1.1);
    opacity: 0.4;
  }
  90% {
    opacity: 0;
  }
}

/* Typing Effect */
.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 0; /* Remove border, cursor will be separate */
  animation: none; /* JavaScript will handle typing */
}

.typing-cursor {
  display: inline-block;
  color: var(--orange);
  animation: blink-cursor 0.8s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}

@keyframes blink-cursor {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* Hide cursor after typing completes */
.typing-cursor.hidden {
  display: none;
}

/* ========================================
   LEVEL 2: ADVANCED CARD INTERACTIONS
   ======================================== */

/* Enable 3D perspective for cards */
.service-card, .why-card, .card, .detail-card, .capabilities-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Smooth transform transitions for magnetic effect */
.service-card, .why-card, .card {
  will-change: transform;
}

/* Enhanced glass morphism on hover */
.service-card:hover, .why-card:hover, .card:hover {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(28, 28, 30, 0.85);
}

/* Subtle border glow on hover */
.service-card:hover, .why-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow:
    0 12px 40px rgba(255, 107, 0, 0.2),
    inset 0 0 20px rgba(255, 107, 0, 0.05);
}

/* 3D depth layers - front content */
.service-card > *, .why-card > *, .card > * {
  position: relative;
  z-index: 1;
}

/* Magnetic cursor effect - cards slightly follow cursor */
.service-card.magnetic, .why-card.magnetic, .card.magnetic {
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0))
             rotateX(var(--rotate-x, 0deg))
             rotateY(var(--rotate-y, 0deg));
}

/* ========================================
   LEVEL 2: PAGE TRANSITION EFFECTS
   ======================================== */

/* Fade out animation */
.view.view-fade-out {
  animation: fadeSlideOut 0.3s ease-out forwards;
}

/* Fade in animation */
.view.view-fade-in {
  animation: fadeSlideIn 0.5s ease-out forwards;
}

@keyframes fadeSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
