/* Mohnish Seatrans Logistics — Premium Animated Styles */

:root {
  --deep-navy: #252B78;
  --royal-navy: #30398C;
  --signature-orange: #F58220;
  --deep-charcoal: #101318;
  --soft-off-white: #F5F5F2;
  --muted-gray: #7C808A;
  --header-height: 80px;
  --glow-orange: rgba(245, 130, 32, 0.5);
  --glow-navy: rgba(37, 43, 120, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(245, 130, 32, 0.25);
  color: var(--deep-navy);
}

/* ═══════════════════ PRELOADER ═══════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(245, 130, 32, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(37, 43, 120, 0.05) 0%, transparent 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s;
}

.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  height: 92px;
  opacity: 0;
  transform: scale(0.9);
  animation: preloaderPulse 1.8s ease-in-out infinite, preloaderFadeIn 0.6s ease forwards;
}

@keyframes preloaderFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 12px rgba(245, 130, 32, 0.12));
  }

  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 18px rgba(37, 43, 120, 0.18));
  }
}

.preloader-bar {
  width: 140px;
  height: 3px;
  background: #f0f0f4;
  margin: 24px auto 0;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffffff 0%, var(--signature-orange) 55%, var(--deep-navy) 100%);
  border-radius: 9999px;
  animation: preloaderFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderFill {
  to {
    width: 100%;
  }
}

/* ═══════════════════ SCROLL PROGRESS ═══════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--signature-orange), #ffb347, var(--signature-orange));
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  z-index: 100;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--glow-orange);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* ═══════════════════ CURSOR GLOW ═══════════════════ */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
}

@media (max-width: 1024px) {
  .cursor-glow {
    display: none;
  }
}

/* ═══════════════════ HEADER ═══════════════════ */
.site-header {
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.35s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(37, 43, 120, 0.08),
    0 4px 24px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .nav-link {
  color: var(--deep-charcoal);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--deep-navy);
}

.site-header.is-scrolled .logo-light {
  opacity: 0;
  pointer-events: none;
}

.site-header.is-scrolled .logo-dark {
  opacity: 1;
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--deep-charcoal);
}

.logo-dark {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}

.logo-light {
  transition: opacity 0.4s ease;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--signature-orange), #ffb347);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

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

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero-bg {
  transform: scale(1.05);
  animation: heroSettle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

/* Hero Slideshow */
.hero-slide {
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle--orange {
  background: radial-gradient(circle, rgba(245, 130, 32, 0.6) 0%, transparent 70%);
}

.particle--white {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) rotate(720deg);
  }
}

/* Slideshow progress bar */
.hero-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 20;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--signature-orange), #ffb347);
  box-shadow: 0 0 8px var(--glow-orange);
  will-change: width;
}

/* Slideshow dots */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hero-dot:hover {
  border-color: white;
  transform: scale(1.3);
}

.hero-dot.is-active {
  background: var(--signature-orange);
  border-color: var(--signature-orange);
  transform: scale(1.2);
  box-shadow: 0 0 12px var(--glow-orange);
}

/* Animated gradient text in hero */
.hero-gradient-text {
  background: linear-gradient(135deg, #fff 0%, #fff 40%, var(--signature-orange) 50%, #ffb347 60%, #fff 70%, #fff 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s ease-in-out infinite;
}

@keyframes textShimmer {

  0%,
  100% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 0% 50%;
  }
}

.hero-line {
  width: 0;
  animation: drawLine 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes drawLine {
  to {
    width: 64px;
  }
}

.hero-headline .line {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-headline .line:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-headline .line:nth-child(2) {
  animation-delay: 0.72s;
}

.hero-support,
.hero-ctas,
.hero-scroll {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-support {
  animation-delay: 0.95s;
}

.hero-ctas {
  animation-delay: 1.15s;
}

.hero-scroll {
  animation-delay: 1.45s;
}

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

.scroll-indicator {
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.header-enter {
  opacity: 0;
  animation: headerIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes headerIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hero floating badge */
.hero-badge {
  position: absolute;
  right: 3rem;
  top: 40%;
  z-index: 15;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge-inner:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@keyframes floatBadge {

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

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1024px) {
  .hero-badge {
    display: none;
  }
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal scale — new */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-mask {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-mask.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal-line .line-part {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-line.is-visible .line-part {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line.is-visible .line-part:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-line.is-visible .line-part:nth-child(3) {
  transition-delay: 0.24s;
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.is-visible>*:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(5) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(6) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(7) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible>*:nth-child(8) {
  transition-delay: 0.7s;
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════ METRICS ═══════════════════ */
.metric-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--signature-orange), transparent);
  animation: metricDividerPulse 3s ease-in-out infinite;
}

@keyframes metricDividerPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.metric-value {
  font-variant-numeric: tabular-nums;
  transition: text-shadow 0.4s ease;
}

.metric-value.is-counting {
  text-shadow: 0 0 20px var(--glow-orange);
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about-image-wrap {
  will-change: transform;
}

/* Animated decorative corner */
.about-corner-deco {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 140px;
  height: 140px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--signature-orange), transparent 60%) 1;
  animation: cornerPulse 3s ease-in-out infinite;
}

@keyframes cornerPulse {

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

  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.about-bg-num {
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.85;
  color: rgba(37, 43, 120, 0.04);
  user-select: none;
  pointer-events: none;
  animation: bgNumFloat 8s ease-in-out infinite;
}

@keyframes bgNumFloat {

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

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

/* ═══════════════════ SERVICES ═══════════════════ */
.service-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
}

/* Background image on hover */
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

/* Gradient overlay on hover — subtle dark gradient on the left, clear view of the image on the right */
.service-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(16, 19, 24, 0.92) 0%,
      rgba(16, 19, 24, 0.7) 45%,
      rgba(16, 19, 24, 0.35) 75%,
      rgba(16, 19, 24, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Expand card on hover */
.service-row:hover {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
  min-height: 280px;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  border-color: rgba(245, 130, 32, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(245, 130, 32, 0.15);
  z-index: 10;
}

.service-row:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-row:hover::after {
  opacity: 1;
}

.service-row:hover .service-num {
  color: var(--signature-orange);
  text-shadow: 0 0 16px var(--glow-orange);
  transform: scale(1.15);
}

.service-row:hover .service-arrow {
  transform: translateX(12px) scale(1.3);
  color: var(--signature-orange);
  filter: drop-shadow(0 0 10px var(--glow-orange));
}

.service-row:hover .service-desc {
  opacity: 1;
  max-height: 120px;
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(0);
}

.service-row:hover h3 {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  transform: translateX(8px);
}

.service-num {
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}

.service-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, filter 0.35s ease;
}

.service-desc {
  opacity: 0.6;
  max-height: 60px;
  transition: opacity 0.4s ease, max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, transform 0.4s ease;
}

.service-row h3 {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.35s ease;
}

.service-row[data-bg="1"]::before {
  background-image: url('../assets/imgs/home/mohnish-seatrans-services (1).jpg');
}

.service-row[data-bg="2"]::before {
  background-image: url('../assets/imgs/home/mohnish-seatrans-services (2).jpg');
}

.service-row[data-bg="3"]::before {
  background-image: url('../assets/imgs/home/mohnish-seatrans-services (3).jpg');
}

.service-row[data-bg="4"]::before {
  background-image: url('../assets/imgs/home/mohnish-seatrans-services (4).jpg');
}

.service-row[data-bg="5"]::before {
  background-image: url('../assets/imgs/home/mohnish-seatrans-services (5).jpg');
}

.service-row[data-bg="6"]::before {
  background-image: url('../assets/imgs/home/mohnish-seatrans-services (6).jpg');
}

.services-bg-layer {
  opacity: 0.12;
  transition: opacity 0.6s ease;
}

/* ═══════════════════ CINEMATIC BREAK ═══════════════════ */
.parallax-break {
  will-change: transform;
}

/* Animated accent line on cinematic break */
.cinematic-accent {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--signature-orange), #ffb347);
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0 auto;
}

.cinematic-accent.is-visible {
  width: 80px;
}

/* ═══════════════════ WHY SECTION ═══════════════════ */
.why-item {
  border-left: 2px solid rgba(37, 43, 120, 0.1);
  padding-left: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.why-item::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--signature-orange), #ffb347);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item:hover::before {
  height: 100%;
}

.why-item:hover {
  border-color: transparent;
  transform: translateX(8px);
  padding-left: 2rem;
}

/* ═══════════════════ FLEET SHOWCASE ═══════════════════ */
.fleet-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.fleet-track::-webkit-scrollbar {
  display: none;
}

.fleet-track.is-dragging {
  cursor: grabbing !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

.fleet-card img {
  pointer-events: none;
}

.fleet-card {
  flex: 0 0 min(85vw, 520px);
  scroll-snap-align: start;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.fleet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 5;
}

.fleet-card:hover::after {
  border-color: var(--signature-orange);
}

.fleet-card:hover {
  transform: translateY(-8px);
}

.fleet-card img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.fleet-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* Fleet card label animation */
.fleet-card p {
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
}

.fleet-card:hover p {
  transform: translateY(-4px);
  letter-spacing: 0.3em;
}

/* ═══════════════════ INDUSTRIES (ICON CARDS) ═══════════════════ */
.industry-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(37, 43, 120, 0.08);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--signature-orange), #ffb347);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.3);
  box-shadow: 0 16px 36px rgba(37, 43, 120, 0.1);
}

.industry-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(245, 130, 32, 0.08);
  color: var(--signature-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-icon-wrapper {
  background: var(--signature-orange);
  color: white;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(245, 130, 32, 0.35);
}

/* ═══════════════════ WHATSAPP FLOATING BUTTON ═══════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  left: auto;
  background: #101318;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.industry-item .industry-title {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover .industry-title {
  transform: translateY(-8px);
}

.industry-item .industry-arrow {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
}

.industry-item:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--signature-orange);
}

/* ═══════════════════ JOURNEY HIGHWAY PATHWAY ═══════════════════ */
.journey-track {
  position: relative;
  padding-top: 10px;
}

/* Realistic Asphalt Highway Track */
.journey-road-container {
  position: absolute;
  top: 68px;
  left: 6%;
  right: 6%;
  height: 22px;
  background: #1c202b;
  border-radius: 11px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.7), 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1;
}

.journey-road {
  position: relative;
  width: 100%;
  height: 100%;
  background: #232938;
}

/* Highway Center Dashed Lines */
.journey-road-stripes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.5) 0,
      rgba(255, 255, 255, 0.5) 14px,
      transparent 14px,
      transparent 28px);
  z-index: 2;
}

/* Illuminated Highway Progress */
.journey-road-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d46b14, var(--signature-orange), #ffb347);
  box-shadow: 0 0 16px var(--glow-orange);
  transition: width 0.1s linear;
  z-index: 1;
}

/* Truck position driving on highway */
.journey-truck {
  position: absolute;
  top: 4px;
  left: 10%;
  transform: translateX(-50%);
  transition: left 0.1s linear;
  z-index: 20;
}

/* .journey-truck img {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 10px rgba(245, 130, 32, 0.4));
} */

.journey-step {
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.journey-step.is-active {
  opacity: 1;
}

.step-num {
  position: relative;
  z-index: 10;
  border: 2px solid rgba(37, 43, 120, 0.18);
  background: #ffffff;
  color: var(--deep-navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step.is-active .step-num {
  color: #ffffff;
  border-color: var(--signature-orange);
  background: var(--signature-orange);
  box-shadow: 0 0 24px var(--glow-orange), 0 6px 20px rgba(245, 130, 32, 0.4);
  transform: scale(1.15);
}

/* Mobile journey timeline */
@media (max-width: 1023px) {
  .journey-vertical-line {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(245, 130, 32, 0.2);
  }

  .journey-vertical-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--signature-orange), #ffb347);
    transition: height 0.1s linear;
    box-shadow: 0 0 8px var(--glow-orange);
  }
}

/* ═══════════════════ CTA ═══════════════════ */
.cta-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 43, 120, 0.95), rgba(16, 19, 24, 0.85));
  z-index: 1;
}

/* Animated CTA border ring */
.cta-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(245, 130, 32, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: ctaRingPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.cta-ring:nth-child(2) {
  width: 420px;
  height: 420px;
  animation-delay: 0.7s;
  border-color: rgba(245, 130, 32, 0.1);
}

.cta-ring:nth-child(3) {
  width: 540px;
  height: 540px;
  animation-delay: 1.4s;
  border-color: rgba(245, 130, 32, 0.06);
}

@keyframes ctaRingPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .cta-section {
    background-attachment: scroll;
  }

  .cta-ring {
    display: none;
  }
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 130, 32, 0.4);
}

.btn-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-arrow svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-arrow:hover svg {
  transform: translateX(6px);
}

/* ═══════════════════ ACCENT LINE ═══════════════════ */
.accent-line {
  height: 2px;
  background: linear-gradient(90deg, var(--signature-orange), #ffb347);
}

/* ═══════════════════ BRAND / PERFORMANCE STRIP ═══════════════════ */
.performance-strip {
  position: relative;
  background: #0f1218;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(37, 43, 120, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 75% 50%, rgba(245, 130, 32, 0.14) 0%, transparent 55%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(245, 130, 32, 0.25);
  box-shadow: inset 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════ MARQUEE ═══════════════════ */
.marquee-track {
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════ FOOTER ENHANCEMENTS ═══════════════════ */
.site-footer {
  position: relative;
  background-color: #0b0d11;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(37, 43, 120, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 85% 100%, rgba(245, 130, 32, 0.08) 0%, transparent 40%);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signature-orange), var(--royal-navy), var(--signature-orange), transparent);
  background-size: 200% 100%;
  animation: gradientShift 6s linear infinite;
}

.footer-newsletter-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.footer-newsletter-card:hover {
  border-color: rgba(245, 130, 32, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link svg {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--signature-orange);
  transform: translateX(4px);
}

.footer-link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-btn:hover {
  background: var(--signature-orange);
  border-color: var(--signature-orange);
  color: white;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 130, 32, 0.4);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: statusPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes statusPulse {

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

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

.contact-card-mini {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.contact-card-mini:hover {
  border-color: rgba(245, 130, 32, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}



/* ═══════════════════ SECTION DIVIDERS ═══════════════════ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--signature-orange), transparent);
  opacity: 0.3;
}

/* ═══════════════════ REDUCED MOTION ═══════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .cursor-glow,
  .hero-particles,
  .preloader {
    display: none !important;
  }
}