/* ══════════════════════════════════════════════════════════════
   LOGISTICS & TRANSPORTATION - INDUSTRY PAGE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Floating Transport Icons ────────────────────────────────── */
.floating-transport-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.float-transport-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  font-size: 32px;
  color: #10B981;
  animation: transportFloat 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.truck-icon {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.box-icon {
  top: 60%;
  left: 5%;
  animation-delay: 1.2s;
}

.pin-icon {
  top: 25%;
  right: 12%;
  animation-delay: 2.4s;
}

.globe-icon {
  bottom: 18%;
  right: 8%;
  animation-delay: 3.6s;
}

.clock-icon {
  top: 72%;
  right: 18%;
  animation-delay: 4.8s;
}

.map-icon {
  bottom: 10%;
  left: 15%;
  animation-delay: 1.8s;
}

@keyframes transportFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-22px) rotate(7deg) scale(1.04);
  }
  50% {
    transform: translateY(-10px) rotate(-7deg) scale(0.96);
  }
  75% {
    transform: translateY(-28px) rotate(4deg) scale(1.02);
  }
}

/* ── Animated Badge ──────────────────────────────────────────── */
.animated-badge {
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

/* ── Hero Section ─────────────────────────────────────────────── */
.logistics-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #064E3B 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 28% 38%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 72% 62%, rgba(5, 150, 105, 0.12) 0%, transparent 50%);
  opacity: 0.8;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310B981' fill-opacity='0.06'%3E%3Cpath d='M30 30h-5v-5h5v5zm5 0h-5v-5h5v5zm5 0h-5v-5h5v5zm-15 5h-5v-5h5v5zm5 0h-5v-5h5v5zm5 0h-5v-5h5v5zm5 0h-5v-5h5v5zm-15 5h-5v-5h5v5zm5 0h-5v-5h5v5zm5 0h-5v-5h5v5zm5 0h-5v-5h5v5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #34D399;
  width: fit-content;
  letter-spacing: 0.5px;
}

.industry-badge i {
  font-size: 18px;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logisticsGradientShift 3.5s ease infinite;
}

@keyframes logisticsGradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #D1FAE5;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.stat-item i {
  font-size: 20px;
  color: #34D399;
}

.stat-item span {
  font-size: 14px;
  color: #D1FAE5;
}

.stat-item strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Tracking Dashboard Visual ────────────────────────────────── */
.hero-visual-logistics {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking-dashboard-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.tracking-dashboard {
  position: absolute;
  top: 0;
  left: 0;
  width: 550px;
  background: #1E293B;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: floatTracking 7s ease-in-out infinite;
}

@keyframes floatTracking {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

.dashboard-header {
  background: #0F172A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
}

.dashboard-header .dot:nth-child(1) { background: #f87171; }
.dashboard-header .dot:nth-child(2) { background: #fbbf24; }
.dashboard-header .dot:nth-child(3) { background: #4ade80; }

.dashboard-title {
  margin-left: auto;
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

.tracking-content {
  padding: 24px;
  background: #0F172A;
  min-height: 350px;
}

/* Map View with Route */
.map-view {
  position: relative;
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border-radius: 12px;
  padding: 30px;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.route-path {
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  height: 4px;
  background: linear-gradient(90deg, #10B981 0%, #059669 50%, #10B981 100%);
  background-size: 200% 100%;
  animation: routeFlow 3s linear infinite;
  border-radius: 2px;
  transform: translateY(-50%);
}

@keyframes routeFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.route-path::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: routeShimmer 2s linear infinite;
}

@keyframes routeShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.delivery-truck {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #10B981;
  animation: truckMove 4s ease-in-out infinite;
  z-index: 3;
}

@keyframes truckMove {
  0%, 100% {
    left: 45%;
  }
  50% {
    left: 55%;
  }
}

.location-pin {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  z-index: 2;
}

.start-pin {
  left: 60px;
  color: #3B82F6;
  animation: pinBounce 2s ease-in-out infinite;
}

.end-pin {
  right: 60px;
  color: #F59E0B;
  animation: pinBounce 2s ease-in-out infinite 1s;
}

@keyframes pinBounce {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-60%);
  }
}

/* Tracking Info */
.tracking-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
}

.tracking-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #10B981;
}

.tracking-status i {
  font-size: 20px;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.eta-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eta-label {
  font-size: 14px;
  color: #94a3b8;
}

.eta-time {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Sora', sans-serif;
}

/* Mobile Tracking App */
.mobile-tracking-app {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 220px;
  background: #1E293B;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(16, 185, 129, 0.3);
  animation: floatMobile 7s ease-in-out infinite 1.5s;
  z-index: 3;
}

@keyframes floatMobile {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-24px) rotate(-2deg);
  }
}

.mobile-app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-app-header i {
  font-size: 18px;
  color: #10B981;
}

/* Delivery Timeline */
.delivery-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
}

.step-dot {
  width: 16px;
  height: 16px;
  background: #475569;
  border: 3px solid #1E293B;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline-step.completed .step-dot {
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-step.active .step-dot {
  background: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.step-dot.pulsing {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.step-title {
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
}

.timeline-step.completed .step-title {
  color: #10B981;
}

.timeline-step.active .step-title {
  color: #F59E0B;
}

.step-time {
  font-size: 11px;
  color: #64748b;
}

.timeline-connector {
  width: 2px;
  height: 20px;
  background: #475569;
  margin-left: 7px;
}

.timeline-connector.completed {
  background: #10B981;
}

.timeline-connector.active {
  background: linear-gradient(180deg, #10B981 0%, #F59E0B 100%);
}

/* ── Logistics Features Grid ──────────────────────────────────── */
.logistics-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.logistics-feature-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.logistics-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.logistics-feature-card:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.logistics-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
  border-color: #10B981;
}

.highlighted-card {
  border: 2px solid #10B981;
  background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 14px;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.logistics-feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.logistics-feature-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.logistics-feature-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 20px;
}

.feature-visual {
  margin-top: 20px;
  padding: 20px;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Route Optimizer Visual */
.route-optimizer {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.waypoint {
  width: 20px;
  height: 20px;
  background: #10B981;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  z-index: 2;
}

.waypoint.start {
  background: #3B82F6;
}

.waypoint.end {
  background: #F59E0B;
}

.optimized-route {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, #3B82F6 0%, #10B981 50%, #F59E0B 100%);
  transform: translateY(-50%);
  animation: routeOptimize 2s ease-in-out infinite;
}

@keyframes routeOptimize {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.route-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Tracking Map Visual */
.tracking-map {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 50%;
  border: 2px solid #10B981;
}

.tracking-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #10B981;
  border-radius: 50%;
  opacity: 0.3;
  animation: trackingPulse 2s ease-out infinite;
}

@keyframes trackingPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.tracking-map i {
  font-size: 32px;
  color: #10B981;
  z-index: 2;
}

/* Fleet Grid Visual */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fleet-vehicle {
  width: 100%;
  height: 50px;
  background: #10B981;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.fleet-vehicle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: fleetShine 2s linear infinite;
}

@keyframes fleetShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.fleet-vehicle.idle {
  background: #94a3b8;
}

.fleet-vehicle:nth-child(1)::after { animation-delay: 0s; }
.fleet-vehicle:nth-child(2)::after { animation-delay: 0.5s; }
.fleet-vehicle:nth-child(3)::after { animation-delay: 1s; }
.fleet-vehicle:nth-child(4)::after { animation-delay: 1.5s; }

/* Warehouse Conveyor Visual */
.warehouse-conveyor {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.conveyor-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 6px;
  animation: conveyorMove 3s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.conveyor-box:nth-child(1) { animation-delay: 0s; }
.conveyor-box:nth-child(2) { animation-delay: 0.3s; }
.conveyor-box:nth-child(3) { animation-delay: 0.6s; }

@keyframes conveyorMove {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(10px) rotate(5deg);
  }
}

/* Notification Stack Visual */
.notification-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.notification-item {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #10B981;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #065F46;
  font-weight: 600;
  animation: notificationSlide 0.5s ease-out;
}

.notification-item:nth-child(1) { animation-delay: 0s; }
.notification-item:nth-child(2) { animation-delay: 0.2s; }

@keyframes notificationSlide {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Analytics Chart Visual */
.analytics-chart {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: flex-end;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 70%, #10B981 70%, #10B981 100%);
  clip-path: polygon(0 100%, 0 80%, 30% 60%, 60% 40%, 100% 20%, 100% 100%);
  animation: chartGrow 2s ease-out forwards;
}

@keyframes chartGrow {
  from {
    clip-path: polygon(0 100%, 0 100%, 30% 100%, 60% 100%, 100% 100%, 100% 100%);
  }
}

.chart-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #10B981;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.chart-point:nth-child(2) {
  bottom: 60%;
  left: 30%;
  animation: pointPop 0.5s ease-out 0.5s;
}

.chart-point:nth-child(3) {
  bottom: 40%;
  left: 60%;
  animation: pointPop 0.5s ease-out 0.8s;
}

.chart-point:nth-child(4) {
  bottom: 20%;
  right: 0;
  animation: pointPop 0.5s ease-out 1.1s;
}

@keyframes pointPop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* ── Delivery Journey Flow ───────────────────────────────────── */
.delivery-journey-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.journey-stage {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stage-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.stage-icon.success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.journey-stage:hover .stage-icon {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.5);
}

.journey-stage h4 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 8px;
}

.journey-stage p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.journey-arrow {
  font-size: 24px;
  color: #10B981;
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section.light {
  background: #f8fafb;
}

.section.dark {
  background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
  color: #fff;
}

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 16px;
}

.head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.section.light .head h2 {
  color: #0D1B2A;
}

.section.dark .head h2 {
  color: #fff;
}

.head p {
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.section.dark .head p {
  color: #D1FAE5;
}

/* ── Solutions Grid ──────────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #10B981;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

.solution-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 12px;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}

.solution-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}

.solution-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: #D1FAE5;
  margin: 0 0 24px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #D1FAE5;
}

.solution-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.3);
  color: #34D399;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Technology Categories ───────────────────────────────────── */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tech-category {
  background: #fff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tech-category:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #10B981;
}

.tech-category h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-category h3 i {
  color: #10B981;
  font-size: 22px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #10B981;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  transform: translateY(-2px);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  opacity: 0.6;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #D1FAE5;
  margin: 0 0 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.in {
  opacity: 1;
}

.reveal.up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal.left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.fade {
  opacity: 0;
}

.reveal.fade.in {
  opacity: 1;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal-group.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.in > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.6s; }

/* ── Responsive Design ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual-logistics {
    height: 500px;
  }

  .tracking-dashboard {
    width: 450px;
  }

  .delivery-journey-flow {
    flex-direction: column;
    gap: 30px;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .logistics-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .floating-transport-icons {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    width: 100%;
  }

  .hero-visual-logistics {
    height: 400px;
  }

  .tracking-dashboard {
    width: 350px;
  }

  .mobile-tracking-app {
    width: 180px;
    bottom: 30px;
    right: 15px;
    padding: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .logistics-features-grid,
  .solutions-grid,
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 4%;
  }

  .hero-visual-logistics {
    height: 300px;
  }

  .tracking-dashboard {
    width: 280px;
  }

  .mobile-tracking-app {
    display: none;
  }

  .logistics-feature-card,
  .solution-card,
  .tech-category {
    padding: 30px 24px;
  }

  .map-view {
    height: 150px;
    padding: 20px;
  }

  .journey-stage {
    min-width: 100%;
  }

  .stage-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
