:root {
  /* Global Color Palette */
  --c-primary: #2D3436;
  /* Carbon Anthracite */
  --c-accent-1: #00D2FF;
  /* Electric Sky */
  --c-accent-2: #FFD300;
  /* Safety Amber */
  --c-bg: #F5F5F5;
  /* Ash White (Light Mode) */
  --c-bg-alt: #EBEBEB;
  /* Slightly darker Ash */
  --c-text: #2D3436;
  --c-text-muted: #636e72;
  --c-glass-bg: rgba(255, 255, 255, 0.7);
  --c-glass-border: rgba(255, 255, 255, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode {
  --c-bg: #1A1F20;
  /* Deep Dark Anthracite */
  --c-bg-alt: #212628;
  --c-primary: #F5F5F5;
  --c-text: #F5F5F5;
  --c-text-muted: #b2bec3;
  --c-glass-bg: rgba(45, 52, 54, 0.6);
  --c-glass-border: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.padding-top-lg {
  padding-top: 8rem;
}

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

.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none !important;
}

/* Typography Enhancements */
.gradient-text {
  background: linear-gradient(135deg, var(--c-text) 0%, var(--c-accent-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(0, 210, 255, 0.1);
  color: var(--c-accent-1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bg-alt {
  background-color: var(--c-bg-alt);
}

/* Buttons (AI Premium Style) */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
  color: #ffffff !important;
  
  /* Light Mode: Dark Teal with Light Outer Frame */
  background: 
    radial-gradient(circle at bottom center, rgba(46, 150, 175, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at top, #146B82 0%, #083745 100%);
  background-size: 100% 100%;
  
  /* Shadows and Extra Frame */
  box-shadow: 
    inset 0 8px 24px -16px rgba(255,255,255,0.15),
    inset 0 -24px 32px 0 rgba(255,255,255,0.1),
    inset 0 0 12px 0 rgba(255,255,255,0.3),
    0 24px 24px -12px rgba(8, 55, 69, 0.4),
    0 8px 16px -8px rgba(8, 55, 69, 0.3),
    0 0 0 6px #C2D1D9; /* Thick light gray/blue frame */
    
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  z-index: 1;
}

/* Step 6: Noise */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}


/* Hover Animation (Light Mode) */
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    inset 0 8px 24px -16px rgba(255,255,255,0.3),
    inset 0 -24px 32px 0 rgba(255,255,255,0.2),
    inset 0 0 15px 0 rgba(255,255,255,0.5),
    0 32px 28px -12px rgba(8, 55, 69, 0.5),
    0 12px 20px -8px rgba(8, 55, 69, 0.4),
    0 0 0 8px #A9BEC9;
  
  background: 
    radial-gradient(circle at bottom center, rgba(46, 150, 175, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse at top, #1A84A1 0%, #0A4A5D 100%);
}

.btn:hover::before {
  animation: grainShift 0.2s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-1%, -1%); }
}



/* Dark Mode Cyan Buttons (Brand Color) */
.dark-mode .btn {
  background: 
    radial-gradient(circle at bottom center, rgba(180, 240, 255, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at top, #00D2FF 0%, #004c66 100%);
  box-shadow: 
    inset 0 8px 24px -16px rgba(255,255,255,0.24),
    inset 0 -24px 32px 0 rgba(255,255,255,0.22),
    inset 0 0 12px 0 rgba(255,255,255,1),
    0 36px 32px -16px rgba(0, 102, 153, 0.21),
    0 8px 16px -8px rgba(0, 136, 204, 0.12),
    0 2px 4px -8px rgba(0, 136, 204, 0.08),
    0 0 0 6px rgba(0, 136, 204, 0.08);
}


.dark-mode .btn:hover {
  box-shadow: 
    inset 0 8px 24px -16px rgba(255,255,255,0.4),
    inset 0 -24px 32px 0 rgba(255,255,255,0.4),
    inset 0 0 15px 0 rgba(255,255,255,1),
    0 40px 36px -16px rgba(0, 102, 153, 0.3),
    0 12px 20px -8px rgba(0, 136, 204, 0.2),
    0 4px 8px -8px rgba(0, 136, 204, 0.15),
    0 0 0 8px rgba(0, 136, 204, 0.12);
  
  background: 
    radial-gradient(circle at bottom center, rgba(180, 240, 255, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse at top, #33dfff 0%, #006699 100%);
}





/* Override existing primary/secondary button classes */
.btn-primary, .btn-secondary {
  border: none;
  background-color: transparent;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  background: none;
  border: none;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background var(--transition);
}

.btn-icon:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dark-mode .btn-icon:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--c-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--c-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-glass-border);
  padding: 1rem 0;
  transition: padding var(--transition);
}

/* Header & Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1400px;
}

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

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Light/Dark Mode Logo Visibility */
.logo-dark {
  display: none;
}

.logo-light {
  display: block;
}

.dark-mode .logo-light {
  display: none;
}

.dark-mode .logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--c-accent-1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cmd-hint {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.cmd-hint kbd {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-glass-border);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-family: monospace;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  opacity: 0.65;
  /* Reduced from 0.85 to make video more visible */
  z-index: 1;
  transition: background var(--transition);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-text {
  max-width: 700px;
  padding-right: 2rem;
}

.hero-visual {
  position: static;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.sub-headline {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.pain-point {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--c-accent-2);
  padding-left: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Tracking Widget */
.tracking-widget {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 100%;
  width: 450px;
  max-width: 100%;
  padding: 2rem 1.5rem 2rem;
  background: rgba(30, 36, 44, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--c-accent-1);
}

.status-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--c-accent-1);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
  }
}

.widget-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.port {
  font-weight: 700;
  font-size: 1.1rem;
}

.route-line {
  flex-grow: 1;
  height: 4px;
  background: var(--c-glass-border);
  margin: 0 1rem;
  position: relative;
  border-radius: 2px;
}

.route-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--c-accent-1);
  border-radius: 2px;
  width: 0%;
  transition: width 1s linear;
}

.widget-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-glass-border);
  padding-top: 1rem;
}

.widget-details div {
  display: flex;
  flex-direction: column;
}

.widget-details small {
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--c-accent-1);
  top: 10%;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--c-accent-2);
  bottom: 0;
  left: -50px;
  opacity: 0.2;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.bento-card:hover {
  transform: translateY(-5px);
}

.card-large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gradient-bg {
  background: linear-gradient(135deg, rgba(45, 52, 54, 0.05) 0%, rgba(0, 210, 255, 0.1) 100%);
}

.dark-mode .gradient-bg {
  background: linear-gradient(135deg, rgba(26, 31, 32, 0.5) 0%, rgba(0, 210, 255, 0.1) 100%);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--c-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: auto;
}

.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--c-accent-1);
  font-weight: bold;
}

/* Social Proof Section (New Light Glassmorphism Style) */
.social-proof {
  background: radial-gradient(circle at top center, #e0f7fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  color: var(--c-text);
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.social-proof .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.social-proof .display-heading {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: var(--c-text);
}

.social-proof .subheading {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Carousel Wrappers */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-glass-border);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--c-accent-1);
  color: #1A1F20;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0.5rem; /* Padding to allow box-shadow to show */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  width: 100%;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem); /* Show 3 cards on desktop */
  scroll-snap-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 85%;
  }
  .carousel-btn {
    display: none; /* Hide arrows on mobile, users can swipe */
  }
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(0, 210, 255, 0.3), transparent);
  transition: height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.testimonial-card:hover::after {
  height: 50%;
  opacity: 1;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.testimonial-card .avatar-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.05);
}

.testimonial-card .info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-card .info strong {
  font-size: 1.15rem;
  color: var(--c-text);
  font-weight: 600;
}

.testimonial-card .info span {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

/* Social Proof (Dark Mode Overrides) */
.dark-mode .social-proof {
  background: radial-gradient(circle at top center, #003a4d 0%, #0a0e10 100%);
  color: #fff;
}

.dark-mode .social-proof::before {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.dark-mode .social-proof .display-heading {
  color: #ffffff;
}

.dark-mode .social-proof .subheading {
  color: #8b9bb4;
}

.dark-mode .testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.dark-mode .testimonial-card::after {
  background: linear-gradient(to top, rgba(0, 210, 255, 0.4), transparent);
}

.dark-mode .testimonial-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dark-mode .testimonial-card .avatar-img {
  border-color: rgba(255,255,255,0.1);
}

.dark-mode .testimonial-card .info strong {
  color: #fff;
}

.dark-mode .testimonial-card .info span {
  color: #8b9bb4;
}

.dark-mode .testimonial-card .quote {
  color: #a1b0cb;
}

/* Partnerships & Accreditations */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.p-logo {
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badges .badge-tag {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-glass-border);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Markets Grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.market-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.market-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.market-item:hover img {
  transform: scale(1.05);
}

.market-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.market-item h4 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
}

/* Scrollytelling Logistics */
.logistics-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
}

.map-container {
  height: 600px;
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 10;
}

.scrollytelling-sidebar {
  padding-bottom: 200px;
}

.step {
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--c-glass-border);
  opacity: 0.4;
  transition: all 0.5s ease;
}

.step.active {
  opacity: 1;
  border-left-color: var(--c-accent-1);
}

.step h4 {
  font-size: 1.5rem;
}

/* Footer Section */
footer {
  background: var(--c-primary);
  color: #F5F5F5;
  padding-top: 5rem;
}

.dark-mode footer {
  background: #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-logo .brand-m {
  color: var(--c-accent-1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.contact-item svg {
  color: var(--c-accent-1);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-form-wrapper {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent-1);
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.9rem;
}

/* Command Bar Overlay */
#cmd-bar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmd-bar {
  width: 90%;
  max-width: 600px;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid var(--c-glass-border);
}

.cmd-search-wrapper {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--c-glass-border);
  gap: 1rem;
}

#cmd-input {
  flex-grow: 1;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--c-text);
  outline: none;
}

#cmd-results {
  max-height: 300px;
  overflow-y: auto;
}

#cmd-results li a {
  display: block;
  padding: 1rem 1.5rem;
  transition: background var(--transition);
}

#cmd-results li a:hover {
  background: var(--c-bg-alt);
  color: var(--c-accent-1);
}

/* Shipment Accordion Cards */
.shipment-list-container {
  margin: 0 auto;
}

.shipment-list-header {
  display: flex;
  justify-content: space-between;
  padding: 0 1.0rem 0.75rem;
  font-size: 0.65rem;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}

.shipment-accordion-card {
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.shipment-accordion-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.card-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.route-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.route-info span.arrow {
  color: var(--c-text-muted);
  font-weight: 300;
}

.transport-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-transit {
  background: rgba(243, 156, 18, 0.15);
  color: #d35400;
}

.dark-mode .status-transit {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

.status-cleared {
  background: rgba(0, 210, 255, 0.15);
  color: #0097e6;
}

.dark-mode .status-cleared {
  color: #00D2FF;
}

.status-pending {
  background: rgba(100, 100, 100, 0.15);
  color: #718093;
}

.dark-mode .status-pending {
  color: #dcdde1;
}

.card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  opacity: 0;
  background: rgba(0, 0, 0, 0.02);
}

.dark-mode .card-details {
  background: rgba(0, 0, 0, 0.2);
}

.shipment-accordion-card.active .card-details {
  max-height: 200px;
  opacity: 1;
}

.shipment-item.active .expandable-progress {
  max-height: 10px;
  opacity: 1;
  margin-top: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px dashed var(--c-glass-border);
}

.detail-grid div {
  display: flex;
  flex-direction: column;
}

.detail-grid small {
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .sub-headline {
    max-width: 100%;
    margin: 0 auto 1.5rem;
  }

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

  .tracking-widget {
    margin: 2rem auto 0;
  }

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

  .card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .grid-2-col {
    grid-template-columns: 1fr;
  }

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

  .logistics-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 400px;
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .scrollytelling-sidebar {
    padding-bottom: 2rem;
  }

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

  .nav-links {
    display: none;
  }

  /* Hide on mobile for simplicity in prototype */
  .cmd-hint {
    display: none;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }
}

.bento-card.card-large {
  position: relative;
  overflow: hidden;
}

.support-woman-img {
  position: absolute;
  right: -2rem;
  bottom: 0;
  height: 95%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}

.bento-card.card-large:hover .support-woman-img {
  transform: scale(1.05) translateX(-10px);
}

.bento-card.card-large h3,
.bento-card.card-large p,
.bento-card.card-large .feature-list {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

@media (max-width: 992px) {
  .support-woman-img {
    height: 70%;
    right: -1rem;
    opacity: 0.15;
  }
  
  .bento-card.card-large h3,
  .bento-card.card-large p,
  .bento-card.card-large .feature-list {
    max-width: 100%;
  }
}