/* ============================================
   NEXLOG LOGISTICS - MAIN STYLESHEET
   Design: Industrial Luxury - Dark Navy + Electric Orange
   ============================================ */

/* --- Variables & Reset --- */
:root {
  --navy: #0a0e1a;
  --navy2: #111827;
  --navy3: #1a2340;
  --orange: #ff5e00;
  --orange2: #ff7a2f;
  --gold: #f0b429;
  --white: #ffffff;
  --light: #f4f6fb;
  --gray: #9ca3af;
  --dark-gray: #374151;
  --text: #1f2937;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-orange: 0 8px 30px rgba(255,94,0,0.35);
  --radius: 4px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  font-family: var(--font-condensed);
  letter-spacing: 0.3px;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-bar-left { display: flex; gap: 20px; color: rgba(255,255,255,0.7); }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--orange); }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a { color: rgba(255,255,255,0.7); transition: var(--transition); font-size: 13px; }
.top-bar-right a:not(.top-track-btn):hover { color: var(--orange); }
.top-track-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.top-track-btn:hover { background: var(--orange2) !important; transform: translateY(-1px); }

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--orange);
  transition: var(--transition);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 20px;
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 30px; height: 30px;
  background: var(--orange);
  opacity: 0.2;
  border-radius: 50%;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; color: var(--navy); line-height: 1; }
.logo-tagline { font-size: 10px; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; line-height: 1; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link.active { position: relative; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--orange);
  border-radius: 1px;
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-2px); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--orange);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown-menu a i { color: var(--orange); width: 18px; text-align: center; }
.dropdown-menu a:hover { background: var(--light); color: var(--orange); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }

/* --- Hero Section --- */
.hero {
  min-height: 94vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(255,94,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,94,0,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  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: 60px 60px;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--orange);
  border-radius: 50%;
  animation: float-particle 8s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  50% { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
}
.hero-shape {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border: 1px solid rgba(255,94,0,0.1);
  border-radius: 50%;
}
.hero-shape::before {
  content: ''; position: absolute; inset: 60px;
  border: 1px solid rgba(255,94,0,0.07);
  border-radius: 50%;
}
.hero-shape::after {
  content: ''; position: absolute; inset: 120px;
  border: 1px solid rgba(255,94,0,0.05);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,94,0,0.1);
  border: 1px solid rgba(255,94,0,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 2px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge i { animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 em { color: var(--orange); font-style: normal; display: block; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  border: 2px solid var(--orange);
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--orange); transform: translateY(-3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-dark:hover { background: transparent; color: var(--navy); }

/* Tracking Bar on Hero */
.hero-tracker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  z-index: 3;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.tracker-form {
  display: flex; gap: 0; max-width: 700px;
}
.tracker-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: var(--transition);
}
.tracker-form input::placeholder { color: rgba(255,255,255,0.4); }
.tracker-form input:focus { border-color: var(--orange); background: rgba(255,255,255,0.15); }
.tracker-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.tracker-form button:hover { background: var(--orange2); }
.tracker-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.tracker-label i { color: var(--orange); }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--orange);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.08); }
.stat-number {
  font-family: var(--font-display);
  font-size: 46px;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.stat-icon { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* --- Section Styles --- */
.section { padding: 100px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); }
.section-navy2 { background: var(--navy2); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header.left { text-align: left; }
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 12px;
}
.tag-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.section-dark .section-title,
.section-navy2 .section-title { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}
.section-header .section-subtitle { margin: 14px auto 0; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light);
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); z-index: 2; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover .service-icon { background: var(--orange); color: #fff; }
.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  transition: var(--transition);
}
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }
.service-number {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
}

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-main-img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  width: 100%; height: 520px;
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--orange); opacity: 0.3;
}
.about-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-orange);
}
.about-badge-num { font-family: var(--font-display); font-size: 44px; line-height: 1; }
.about-badge-text { font-family: var(--font-condensed); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.about-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  opacity: 0.3;
}

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.about-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-feature:hover { background: #fff; box-shadow: var(--shadow); }
.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 18px;
}
.feature-title { font-family: var(--font-condensed); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* --- Why Choose Us --- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,94,0,0.3); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 36px; color: var(--orange); margin-bottom: 20px; }
.why-card h4 { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* --- Process Section --- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  background: var(--navy);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step:hover .step-num { background: var(--orange); color: #fff; }
.step-icon { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.step-title { font-family: var(--font-condensed); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(255,94,0,0.1);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 20px;
  font-family: var(--font-display);
  overflow: hidden; min-width: 52px;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-family: var(--font-condensed); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); }
.author-role { font-size: 13px; color: var(--gray); }
.author-company { font-size: 12px; color: var(--orange); font-weight: 600; }

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--navy3), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: var(--orange);
  position: relative; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(255,94,0,0.8);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-photo-overlay a {
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  transition: var(--transition);
  transform: translateY(10px);
}
.team-card:hover .team-photo-overlay a { transform: translateY(0); }
.team-photo-overlay a:hover { background: var(--navy); color: #fff; }
.team-info { padding: 24px; text-align: center; }
.team-name { font-family: var(--font-condensed); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 4px; }
.team-pos { font-size: 13px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* --- CTA Section --- */
.cta-section {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 60%);
}
.cta-section::after {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); color: #fff; letter-spacing: 0.5px; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 17px; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; }

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,94,0,0.2) 0%, transparent 70%);
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,94,0,0.15);
  border: 1px solid rgba(255,94,0,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 18px;
}
.contact-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); font-family: var(--font-condensed); font-weight: 700; margin-bottom: 4px; }
.contact-info-value { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-condensed); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { background: #d1fae5; border: 1px solid #34d399; color: #065f46; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 16px; display: none; }
.form-error { background: #fee2e2; border: 1px solid #f87171; color: #991b1b; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 16px; display: none; }

/* --- Tracking Page --- */
.tracking-section { padding: 80px 0; }
.tracking-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tracking-box-header {
  background: var(--navy);
  padding: 32px 40px;
  text-align: center;
}
.tracking-box-header h2 { font-family: var(--font-display); font-size: 36px; color: #fff; margin-bottom: 8px; }
.tracking-box-header p { color: rgba(255,255,255,0.6); font-size: 15px; }
.tracking-box-body { padding: 40px; }
.track-input-group { display: flex; gap: 0; }
.track-input-group input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  outline: none;
  transition: var(--transition);
}
.track-input-group input:focus { border-color: var(--orange); }
.track-input-group button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.track-input-group button:hover { background: var(--navy); }

.shipment-result { margin-top: 32px; border-top: 2px solid var(--light); padding-top: 32px; }
.shipment-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.shipment-number { font-family: var(--font-display); font-size: 28px; color: var(--navy); letter-spacing: 1px; }
.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.status-pending { background: #fef3c7; color: #92400e; }
.status-in_transit { background: #dbeafe; color: #1e40af; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-exception { background: #fee2e2; color: #991b1b; }
.status-out_for_delivery { background: #ede9fe; color: #5b21b6; }
.status-at_warehouse { background: #e0f2fe; color: #075985; }
.status-picked_up { background: #fce7f3; color: #9d174d; }

.shipment-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.detail-item { background: var(--light); padding: 16px; border-radius: var(--radius); }
.detail-label { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 4px; }
.detail-value { font-size: 15px; font-weight: 600; color: var(--navy); }

.tracking-timeline { position: relative; padding-left: 32px; }
.tracking-timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--light); }
.timeline-event { position: relative; margin-bottom: 24px; }
.timeline-event::before {
  content: '';
  position: absolute;
  left: -26px; top: 4px;
  width: 12px; height: 12px;
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 50%;
}
.timeline-event.active::before { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,94,0,0.2); }
.event-date { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.event-status { font-family: var(--font-condensed); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); }
.event-location { font-size: 13px; color: var(--gray); }
.event-desc { font-size: 14px; color: var(--text); margin-top: 4px; }

/* --- Page Banner --- */
.page-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.page-banner h1 span { color: var(--orange); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-condensed); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 10px; }

/* --- Newsletter Section --- */
.newsletter-section { background: var(--navy2); padding: 60px 0; }
.newsletter-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.newsletter-text h3 { font-family: var(--font-display); font-size: 32px; color: #fff; margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.5); font-size: 15px; }
.newsletter-form { display: flex; gap: 0; min-width: 400px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange2); }

/* --- Footer --- */
.main-footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #fff; }
.footer-logo .logo-icon { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,94,0,0.3); }
.footer-logo span { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; margin-bottom: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-certs { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-certs span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-family: var(--font-condensed);
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
}
.footer-certs i { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul a i { font-size: 10px; color: var(--orange); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact .contact-item { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-contact .contact-item:last-child { border-bottom: none; }
.footer-contact i { color: var(--orange); margin-top: 2px; font-size: 14px; min-width: 16px; }
.footer-contact span, .footer-contact a { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact a { display: block; }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  opacity: 0; visibility: hidden;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* --- Page Content --- */
.page-content { padding: 80px 0; }
.content-body { max-width: 860px; margin: 0 auto; }
.content-body h2 { font-family: var(--font-display); font-size: 40px; color: var(--navy); margin: 40px 0 16px; }
.content-body h3 { font-family: var(--font-condensed); font-size: 24px; font-weight: 700; color: var(--navy); margin: 30px 0 12px; }
.content-body p { font-size: 16px; line-height: 1.9; color: var(--dark-gray); margin-bottom: 16px; }
.content-body ul, .content-body ol { margin: 16px 0 16px 24px; }
.content-body li { font-size: 16px; line-height: 1.9; color: var(--dark-gray); margin-bottom: 8px; }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(255,94,0,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 24px;
  color: #fff;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

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

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .process-grid::before { display: none; }
}
@media (max-width: 820px) {
  .hero h1 { font-size: 48px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { min-width: unset; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .hero-tracker { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--white); padding: 100px 24px 40px; overflow-y: auto; z-index: 999; gap: 8px; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 1px solid var(--light); margin-top: 4px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
