/* ===============================================
   PROXY LOGISTICS - INDUSTRIAL TRANSPORTATION DESIGN
   Heavy-duty logistics and transportation theme
   =============================================== */

/* ===== TYPOGRAPHY & FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-industrial: 'Bebas Neue', cursive;
  
  /* Industrial Color Palette */
  --primary-orange: #FF6B35;
  --primary-dark: #CC4422;
  --highway-yellow: #FFD700;
  --warning-yellow: #FFC107;
  --industrial-blue: #1E40AF;
  --steel-gray: #374151;
  --concrete-gray: #6B7280;
  --asphalt-black: #111827;
  --cargo-green: #10B981;
  --danger-red: #DC2626;
  --surface-white: #ffffff;
  --surface-light: #F3F4F6;
  --surface-steel: #E5E7EB;
  
  /* Header Heights */
  --header-height: 90px;
  --header-height-scrolled: 70px;
  
  /* Industrial Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== CROSS-BROWSER COMPATIBILITY ===== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ===== GLOBAL OVERRIDES ===== */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--steel-gray);
  background-color: var(--surface-white);
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 200px,
      rgba(0,0,0,.02) 200px,
      rgba(0,0,0,.02) 201px
    );
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--asphalt-black);
}

/* ===== INDUSTRIAL HEADER ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-medium);
  border-bottom: 3px solid var(--primary-orange);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--highway-yellow),
    var(--highway-yellow) 20px,
    var(--asphalt-black) 20px,
    var(--asphalt-black) 40px
  );
}

.header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* Logo Styles */
.logo-wrapper {
  min-width: 220px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-medium);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  transition: all var(--transition-medium);
}

.header.scrolled .logo-img {
  height: 45px;
}

/* Navigation - Industrial Style */
.navbar {
  padding: 0;
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel-gray);
  position: relative;
  transition: all var(--transition-fast);
  border-radius: 0;
  font-size: 0.9rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-orange);
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

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

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

.nav-link.active {
  color: var(--primary-orange);
  background: rgba(255, 107, 53, 0.1);
}

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

/* Industrial Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 0;
  border-top: 3px solid var(--primary-orange);
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 280px;
  background: var(--surface-white);
  animation: dropDown 0.3s ease;
}

@keyframes dropDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--steel-gray);
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--primary-orange);
  transition: left 0.3s ease;
  z-index: -1;
}

.dropdown-item:hover {
  color: white;
  padding-left: 1.5rem;
}

.dropdown-item:hover::before {
  left: 0;
}

/* Dropdown Headers */
.dropdown-header {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: var(--primary-orange);
  padding: 0.5rem 1rem 0.25rem;
  margin-top: 0.5rem;
  border-bottom: 1px solid var(--surface-steel);
}

.dropdown-header:first-child {
  margin-top: 0;
}

/* Dropdown Icons */
.dropdown-item i {
  width: 18px;
  color: var(--concrete-gray);
  transition: color 0.2s ease;
}

.dropdown-item:hover i {
  color: white;
}

/* Horizontal Service Cards */
.service-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon-lg {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.service-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--steel-gray);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-features-inline {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.service-features-inline li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.service-features-inline li i {
  color: var(--cargo-green);
  margin-right: 0.75rem;
  font-size: 0.85rem;
}

/* Client Logos Carousel */
.client-logos-carousel {
  background: var(--surface-light);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.client-logos-carousel .carousel-inner {
  padding: 2rem 0;
}

.client-logos-carousel .carousel-item {
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  -moz-transition: -moz-transform 0.6s ease-in-out;
  -o-transition: -o-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
}

.client-logo-item {
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 auto;
  border: 2px solid transparent;
  overflow: hidden;
}

.client-logo-item:hover {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  border-color: var(--primary-orange);
}

.logo-image-wrapper {
  width: 125px !important;
  height: 125px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.client-logos-carousel .client-logo-item img {
  max-width: 125px !important;
  max-height: 125px !important;
  width: auto !important;
  height: auto !important;
  -o-object-fit: contain !important;
  object-fit: contain !important;
  -webkit-filter: grayscale(1) opacity(0.7);
  filter: grayscale(1) opacity(0.7);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  display: block !important;
}

.client-logo-item:hover img {
  -webkit-filter: grayscale(0) opacity(1);
  filter: grayscale(0) opacity(1);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .client-logo-item {
    width: 100px;
    height: 100px;
    padding: 0.75rem;
  }
  
  .logo-image-wrapper {
    width: 80px !important;
    height: 80px !important;
  }
  
  .client-logos-carousel .client-logo-item img {
    max-width: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
  }
  
}

/* Logistics Solution CTA Section */
.logistics-solution-cta {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--steel-gray)), to(var(--asphalt-black)));
  background: -webkit-linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  background: -moz-linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  background: -o-linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  background: linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  color: white;
}

.logistics-solution-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.logistics-solution-cta .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--surface-light);
}

.solution-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  gap: 3rem;
}

.solution-benefits li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  margin: 0 2rem;
  white-space: nowrap;
}

.solution-benefits li i {
  color: var(--cargo-green);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .solution-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .solution-benefits li {
    margin: 0;
  }
  
  .logistics-solution-cta h2 {
    font-size: 2rem;
  }
}

/* Header CTA Buttons - Industrial Style */
.header-cta .btn {
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  font-size: 0.85rem;
}

.header-cta .btn-outline-primary {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  background: transparent;
}

.header-cta .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-orange);
  transition: left 0.3s ease;
  z-index: -1;
}

.header-cta .btn-outline-primary:hover {
  color: white;
  border-color: var(--primary-orange);
}

.header-cta .btn-outline-primary:hover::before {
  left: 0;
}

.header-cta .btn-primary {
  background: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  color: white;
}

.header-cta .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ===== STANDARDIZED PAGE HERO - INDUSTRIAL ===== */
.page-hero {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--asphalt-black)), to(var(--steel-gray)));
  background: -webkit-linear-gradient(135deg, var(--asphalt-black) 0%, var(--steel-gray) 100%);
  background: -moz-linear-gradient(135deg, var(--asphalt-black) 0%, var(--steel-gray) 100%);
  background: -o-linear-gradient(135deg, var(--asphalt-black) 0%, var(--steel-gray) 100%);
  background: linear-gradient(135deg, var(--asphalt-black) 0%, var(--steel-gray) 100%);
  color: white;
  padding: calc(var(--header-height) + 60px) 0 0;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

/* Industrial Pattern Overlay */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(255,255,255,.03) 35px,
      rgba(255,255,255,.03) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(255,255,255,.02) 35px,
      rgba(255,255,255,.02) 70px
    );
  opacity: 0.5;
}

/* Highway Lines Animation */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  right: -100%;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--highway-yellow),
    var(--highway-yellow) 40px,
    transparent 40px,
    transparent 80px
  );
  animation: highwayMove 20s linear infinite;
}

@keyframes highwayMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(80px); }
}

.page-hero-pattern {
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,30 50,50 T90,50" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" fill="none"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 300px 300px;
  opacity: 0.3;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 60px;
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.6s ease;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3),
              0 0 20px rgba(255,255,255,0.3);
}

.page-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease;
  font-weight: 400;
}

/* Hero to Body Transition */
.hero-transition {
  position: relative;
  height: 80px;
  margin-top: -1px;
  background: linear-gradient(135deg, var(--asphalt-black) 0%, var(--steel-gray) 100%);
  overflow: hidden;
}

.hero-transition svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Industrial accent colors */
.page-hero .text-accent,
.text-gradient {
  background: linear-gradient(135deg, var(--primary-orange), var(--highway-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

/* ===== HERO SECTION (Homepage) - TRANSPORTATION THEME ===== */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 120px;
  min-height: 85vh;
}

/* Animated Road Background */
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 300px;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(255,107,53,0.1) 50%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      var(--highway-yellow),
      var(--highway-yellow) 4px,
      transparent 4px,
      transparent 100px
    );
  transform: perspective(200px) rotateX(70deg);
  animation: roadMove 5s linear infinite;
}

@keyframes roadMove {
  0% { transform: perspective(200px) rotateX(70deg) translateX(0); }
  100% { transform: perspective(200px) rotateX(70deg) translateX(100px); }
}

/* Moving Truck Silhouettes */
.hero-trucks {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  height: 100px;
  opacity: 0.1;
}

.truck-silhouette {
  position: absolute;
  width: 80px;
  height: 40px;
  background: var(--primary-orange);
  clip-path: polygon(10% 50%, 20% 20%, 80% 20%, 90% 40%, 100% 40%, 100% 80%, 90% 80%, 85% 100%, 75% 100%, 70% 80%, 30% 80%, 25% 100%, 15% 100%, 10% 80%, 0% 80%, 0% 50%);
  animation: truckMove 15s linear infinite;
}

.truck-silhouette:nth-child(2) {
  animation-delay: 5s;
  left: -100px;
}

.truck-silhouette:nth-child(3) {
  animation-delay: 10s;
  left: -200px;
}

@keyframes truckMove {
  0% { left: -100px; }
  100% { left: 110%; }
}

/* Industrial Grid Overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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);
  background-size: 100px 100px;
  animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.2; }
}

/* Warehouse Lights Effect */
.hero-lights {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  justify-content: space-around;
  opacity: 0.3;
}

.warehouse-light {
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--highway-yellow) 0%, transparent 100%);
  animation: lightFlicker 3s ease-in-out infinite;
}

.warehouse-light:nth-child(2) { animation-delay: 0.5s; }
.warehouse-light:nth-child(3) { animation-delay: 1s; }
.warehouse-light:nth-child(4) { animation-delay: 1.5s; }
.warehouse-light:nth-child(5) { animation-delay: 2s; }

@keyframes lightFlicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary-orange);
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-orange);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-badge::before {
  content: '●';
  color: var(--cargo-green);
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--primary-orange), var(--highway-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
}

/* Industrial Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.5);
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.stat-item:hover::before {
  left: 100%;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1;
  font-family: var(--font-industrial);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Industrial CTA Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

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

.hero-actions .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===== TRACKING WIDGET - INDUSTRIAL ===== */
.tracking-widget {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border: 3px solid var(--primary-orange);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.tracking-widget::before {
  content: 'LIVE TRACKING';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-orange);
  color: white;
  padding: 0.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.875rem;
}

.tracking-widget h3 {
  margin-top: 1.5rem;
  color: var(--asphalt-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.tracking-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tracking-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--concrete-gray);
  background: var(--surface-white);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tracking-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.tracking-btn {
  background: var(--asphalt-black);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.tracking-btn:hover {
  background: var(--primary-orange);
}

/* Tracking Progress - Industrial Style */
.tracking-progress {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  position: relative;
}

.tracking-progress::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 10%;
  right: 10%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--concrete-gray),
    var(--concrete-gray) 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
}

.progress-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.progress-step i {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-white);
  border: 3px solid var(--concrete-gray);
  color: var(--concrete-gray);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.progress-step.completed i {
  background: var(--cargo-green);
  border-color: var(--cargo-green);
  color: white;
}

.progress-step.active i {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.progress-step span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--steel-gray);
}

/* ===== INDUSTRIAL SECTIONS ===== */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--asphalt-black);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--concrete-gray);
  margin-bottom: 3rem;
  font-weight: 500;
}

/* ===== VALUE CARDS - WAREHOUSE STYLE ===== */
.value-card {
  background: var(--surface-white);
  border: 2px solid var(--surface-steel);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--highway-yellow),
    var(--highway-yellow) 10px,
    var(--asphalt-black) 10px,
    var(--asphalt-black) 20px
  );
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-orange);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: var(--asphalt-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.value-icon i {
  font-size: 1.75rem;
  color: var(--primary-orange);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== INDUSTRY CARDS - CARGO CONTAINER STYLE ===== */
.industry-card {
  background: var(--surface-white);
  border: 3px solid var(--concrete-gray);
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.02) 20px,
    rgba(0,0,0,0.02) 40px
  );
  opacity: 0.5;
}

.industry-card::after {
  content: 'SPECIALIZED';
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--danger-red);
  color: white;
  padding: 0.25rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border-color: var(--primary-orange);
}

.industry-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.industry-icon.pharmaceutical {
  background: var(--danger-red);
}

.industry-icon.automotive {
  background: var(--warning-yellow);
  color: var(--asphalt-black) !important;
}

.industry-icon.financial {
  background: var(--cargo-green);
}

.industry-icon.ecommerce {
  background: var(--industrial-blue);
}

.industry-icon i {
  font-size: 2.5rem;
  color: white;
}

.industry-card h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* ===== INDUSTRIAL BUTTONS ===== */
.btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

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

/* ===== CLIENT SHOWCASE - SHIPPING CONTAINER STYLE ===== */
.client-showcase {
  background: var(--surface-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.client-showcase::before {
  content: 'TRUSTED PARTNERS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  letter-spacing: 10px;
  white-space: nowrap;
}

.client-logo {
  background: var(--surface-white);
  border: 2px solid var(--surface-steel);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--concrete-gray);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.client-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--primary-orange);
  transition: left 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.client-logo:hover::before {
  left: 0;
}

/* ===== FOOTER - INDUSTRIAL DOCK STYLE ===== */
.footer {
  background: var(--asphalt-black);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--highway-yellow),
    var(--highway-yellow) 20px,
    transparent 20px,
    transparent 40px
  );
}

.footer h3,
.footer h5 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.social-links a {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.social-links a:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: rotate(45deg);
}

/* ===== LOADING DOCK ANIMATION ===== */
@keyframes loadingDock {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--surface-steel);
  z-index: 9999;
}

.loading-bar {
  height: 100%;
  width: 30%;
  background: var(--primary-orange);
  animation: loadingDock 2s ease-in-out infinite;
}

/* ===== MOBILE RESPONSIVE - INDUSTRIAL ===== */
@media (max-width: 991px) {
  .header {
    height: 70px;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem;
    border-top: 3px solid var(--primary-orange);
  }
  
  .navbar-nav {
    gap: 0;
  }
  
  .nav-link {
    padding: 1rem;
    border-bottom: 1px solid var(--surface-steel);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--surface-light);
    margin: 0;
    border: none;
    border-left: 3px solid var(--primary-orange);
  }
  
  .header-cta {
    display: none !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: calc(70px + 40px) 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .tracking-widget {
    margin-top: 3rem;
  }
  
  .value-card,
  .industry-card {
    margin-bottom: 2rem;
  }
  
  /* Simplify animations on mobile */
  .hero-trucks,
  .warehouse-light,
  .hero-section::before {
    display: none;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-primary-custom {
  color: var(--primary-orange) !important;
}

.bg-industrial {
  background: var(--asphalt-black);
  color: white;
}

.border-warning-stripe {
  border: 3px solid var(--asphalt-black);
  background-image: repeating-linear-gradient(
    45deg,
    var(--highway-yellow),
    var(--highway-yellow) 10px,
    var(--asphalt-black) 10px,
    var(--asphalt-black) 20px
  );
  padding: 3px;
}

/* Body padding for fixed header */
body {
  padding-top: var(--header-height);
}

body.header-scrolled {
  padding-top: var(--header-height-scrolled);
}

/* Main content area */
.main {
  min-height: 100vh;
  position: relative;
}

/* Contact page specific fix */
.contact-page .page-hero {
  padding-top: calc(var(--header-height) + 100px);
}

/* ===== TRANSPORTATION VISUAL SECTION ===== */
.transport-visual {
  background: var(--asphalt-black);
  position: relative;
  overflow: hidden;
}

.transport-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(255,107,53,0.05) 100px,
      rgba(255,107,53,0.05) 200px
    );
  opacity: 0.3;
}

.transport-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.transport-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-text p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Transport Animation */
.transport-animation {
  position: relative;
  height: 400px;
}

.highway-visual {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 100px;
  transform: translateY(-50%);
  background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-top: 3px solid var(--highway-yellow);
  border-bottom: 3px solid var(--highway-yellow);
}

.road-lines {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    white,
    white 20px,
    transparent 20px,
    transparent 40px
  );
  transform: translateY(-50%);
  animation: roadLineMove 2s linear infinite;
}

@keyframes roadLineMove {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(40px); }
}

.moving-truck {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  color: var(--primary-orange);
  animation: truckDrive 8s ease-in-out infinite;
}

@keyframes truckDrive {
  0% { left: 20%; }
  50% { left: 70%; }
  100% { left: 20%; }
}

.destination-marker {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  color: var(--cargo-green);
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.2); }
}

.transport-stats {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}

.stat-box {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--primary-orange);
  padding: 1rem 2rem;
  text-align: center;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.stat-box i {
  display: block;
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-box span {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* ===== ENHANCED VALUE CARDS ===== */
.value-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.value-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
  color: var(--steel-gray);
}

.value-benefits li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: 700;
}

.value-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.value-link:hover {
  gap: 1rem;
  color: var(--primary-dark);
}

/* ===== ENHANCED CLIENT SHOWCASE ===== */
.client-showcase {
  position: relative;
}

.client-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-orange),
    var(--primary-orange) 20px,
    transparent 20px,
    transparent 40px
  );
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .transport-animation {
    height: 300px;
  }
  
  .transport-stats {
    gap: 1rem;
  }
  
  .stat-box {
    padding: 0.75rem 1rem;
  }
  
  .stat-box i {
    font-size: 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .transport-content h2 {
    font-size: 2rem;
  }
}

/* ===== INDUSTRIES WE SERVE SECTION ===== */
.industries-served {
  background: var(--surface-light);
}

.industries-served .section-title {
  font-size: 2.5rem;
  color: var(--asphalt-black);
  margin-bottom: 0.5rem;
}

.industry-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.industry-box {
  background: var(--surface-white);
  border: 2px solid var(--surface-steel);
  padding: 2rem 1rem;
  text-align: center;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--primary-orange);
  transition: left 0.3s ease;
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--primary-orange);
}

.industry-box:hover::before {
  left: 0;
}

.industry-box i {
  font-size: 2.5rem;
  color: var(--concrete-gray);
  transition: all 0.3s ease;
}

.industry-box:hover i {
  color: var(--primary-orange);
  transform: scale(1.1);
}

.industry-box span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel-gray);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.industry-box:hover span {
  color: var(--asphalt-black);
}

/* ===== TRUSTED PARTNERS SECTION ===== */
.trusted-partners {
  background: var(--surface-light);
  border-top: 3px solid var(--primary-orange);
}

.partner-logo {
  background: var(--surface-white);
  border: 1px solid var(--surface-steel);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--primary-orange);
  transition: left 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: var(--primary-orange);
}

.partner-logo:hover::before {
  left: 0;
}

.logo-text {
  font-weight: 700;
  color: var(--concrete-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.partner-logo:hover .logo-text {
  color: var(--primary-orange);
}

/* Mobile adjustments for industry boxes */
@media (max-width: 768px) {
  .industry-box {
    height: 100px;
    padding: 1rem 0.5rem;
  }
  
  .industry-box i {
    font-size: 2rem;
  }
  
  .industry-box span {
    font-size: 0.75rem;
  }
  
  .partner-logo {
    height: 60px;
  }
  
  .logo-text {
    font-size: 0.75rem;
  }
}

/* ===== CROSS-BROWSER COMPATIBILITY UTILITIES ===== */

/* Button Enhancements */
.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Form Elements */
input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* Flexbox Polyfill Utilities */
.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Transform Compatibility */
.transform-hover:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Gradient Fallbacks */
.gradient-primary {
  background: var(--primary-orange); /* Fallback */
  background: -webkit-gradient(linear, left top, right bottom, from(var(--primary-orange)), to(var(--primary-dark)));
  background: -webkit-linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
  background: -moz-linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
  background: -o-linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
}

.gradient-dark {
  background: var(--steel-gray); /* Fallback */
  background: -webkit-gradient(linear, left top, right bottom, from(var(--steel-gray)), to(var(--asphalt-black)));
  background: -webkit-linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  background: -moz-linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  background: -o-linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
  background: linear-gradient(135deg, var(--steel-gray), var(--asphalt-black));
}

/* IE11 Flexbox Fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .client-logo-item {
    -ms-flex-align: center;
    -ms-flex-pack: center;
  }
  
  .solution-benefits {
    -ms-flex-direction: row;
  }
  
  .page-hero {
    -ms-flex-align: center;
  }
}