/* ============================================
   CORE DESIGN SYSTEM
   Color: Deep Navy / Dark Gray / White
   Style: B2B Commercial, Minimalist, Premium
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1B3461;
  --gray-dark: #2C3E50;
  --gray-mid: #546E7A;
  --gray-light: #90A4AE;
  --gray-pale: #ECEFF1;
  --white: #FFFFFF;
  --accent: #E85F00;
  --accent-hover: #CF5708;
  --accent-light: #FFF3EC;
  --text-primary: #0A1628;
  --text-secondary: #546E7A;
  --text-muted: #90A4AE;
  --border: #DDE3EA;
  --border-light: #F0F4F8;
  --success: #1A7F5A;

  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10), 0 2px 8px rgba(10,22,40,0.06);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.14), 0 4px 16px rgba(10,22,40,0.08);
  --shadow-xl: 0 24px 64px rgba(10,22,40,0.18);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --nav-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); line-height: 1.75; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,101,10,0.30);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(232,101,10,0.40);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,101,10,0.30);
}

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

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-text .brand-tag {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../hero-bg.webp') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,45,0.82) 0%, rgba(13,38,71,0.75) 40%, rgba(13,38,71,0.65) 70%, rgba(22,46,82,0.60) 100%),
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,101,10,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(27,52,97,0.55) 0%, transparent 50%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,101,10,0.15);
  border: 1px solid rgba(232,101,10,0.35);
  color: #FFA96B;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-title .accent-text {
  color: var(--accent);
}

.hero-subtitle {
  color: rgba(255,255,255,0.70);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 40px;
  max-width: 600px;
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  padding-right: 32px;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.10);
  margin-right: 32px;
}

.hero-stat .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .stat-num span {
  color: var(--accent);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   SERVICE CARDS (Home - 3 Core Products)
   ============================================ */
.services-highlight {
  background: var(--navy);
  padding: 96px 0;
}

.services-highlight .section-title,
.services-highlight .section-eyebrow {
  color: var(--white);
}

.services-highlight .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #FF8A40);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,101,10,0.30);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.30);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,101,10,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.tag-accent {
  background: rgba(232,101,10,0.15);
  border-color: rgba(232,101,10,0.30);
  color: #FFA96B;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-card-link:hover { gap: 10px; }

.service-card-link svg { width: 16px; height: 16px; transition: var(--transition); }

/* ============================================
   ADVANTAGES SECTION (4-Grid)
   ============================================ */
.advantages {
  background: var(--white);
  padding: 96px 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 48px;
}

.advantage-item {
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

.advantage-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.advantage-item:hover {
  background: #F8FAFD;
}

.advantage-item-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-item-icon svg { width: 24px; height: 24px; }

.advantage-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.advantage-item p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   TRANSIT TIME SECTION
   ============================================ */
.transit {
  background: var(--gray-pale);
  padding: 80px 0;
}

.transit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.transit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.transit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232,101,10,0.20);
}

.transit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transit-icon svg { width: 32px; height: 32px; fill: white; }

.transit-info { flex: 1; }
.transit-info .route { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.transit-info .time { font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.transit-info .time span { font-size: 1rem; font-weight: 500; color: var(--text-secondary); }
.transit-info .desc { font-size: 0.84rem; color: var(--text-muted); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0D2647 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(232,101,10,0.07) 0%, transparent 60%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.breadcrumb .sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.breadcrumb .current {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   CARGO TYPE LIST (Sensitive / Oversized pages)
   ============================================ */
.cargo-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.cargo-type-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.cargo-type-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Photo-card variant (oversized cargo page) */
.cargo-type-item.photo-card {
  padding: 0 !important;
  align-items: stretch !important;
  gap: 0 !important;
  flex-direction: column !important;
}

.cargo-type-item.photo-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border) !important;
}

.cargo-type-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cargo-type-icon svg { width: 22px; height: 22px; }

.cargo-type-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cargo-type-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  padding: 96px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(232,101,10,0.15));
  z-index: 0;
}

.step-item {
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.step-item:hover .step-num {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 8px 24px rgba(232,101,10,0.30);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg { width: 26px; height: 26px; }

.step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg { width: 16px; height: 16px; transition: var(--transition); }

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(232,101,10,0.20);
}

.case-card-header {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card-header.sensitive { background: linear-gradient(135deg, #0A1628, #1B3461); }
.case-card-header.oversized { background: linear-gradient(135deg, #112240, #0D2647); }
.case-card-header.general { background: linear-gradient(135deg, #162E52, #1B3461); }

.case-card-header .case-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(232,101,10,0.9);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.case-card-header-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card-header-icon svg { width: 36px; height: 36px; stroke: rgba(255,255,255,0.7); }

.case-card-body { padding: 24px; }

.case-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.case-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.case-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.case-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.case-meta-item svg { width: 14px; height: 14px; stroke: var(--accent); }

/* ============================================
   CONTACT & FORM
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-info > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 36px;
  line-height: 1.65;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--accent); }

.contact-item-text .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}

.contact-item-text .value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-text a.value {
  transition: var(--transition);
}

.contact-item-text a.value:hover { color: var(--accent); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-top: 28px;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #20BD5A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.whatsapp-btn svg { width: 22px; height: 22px; fill: white; }

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 40px;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group.no-mb { margin-bottom: 0; }

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-group label .req { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { min-height: 100px; resize: vertical; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2390A4AE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-submit {
  margin-top: 8px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note svg { width: 14px; height: 14px; stroke: var(--success); flex-shrink: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: #E8F8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success .success-icon svg { width: 32px; height: 32px; stroke: var(--success); }
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 0.9rem; }

/* ============================================
   SERVICES GRID PAGE
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.service-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(232,101,10,0.20);
}

.product-card-top {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-top.sensitive {
  background: linear-gradient(145deg, #0A1628, #1B3461);
}

.product-card-top.oversized {
  background: linear-gradient(145deg, #0D2647, #112240);
}

.product-card-top.general {
  background: linear-gradient(145deg, #162E52, #1B3461);
}

.product-card-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-icon-wrap svg { width: 40px; height: 40px; stroke: rgba(255,255,255,0.75); }

.product-card-tags-top {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-white {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card-body { padding: 28px; }

.product-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.product-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.product-card-feature svg { width: 14px; height: 14px; stroke: var(--success); flex-shrink: 0; }

/* ============================================
   HIGHLIGHT STRIP / BANNER
   ============================================ */
.highlight-strip {
  background: var(--accent);
  padding: 20px 0;
}

.highlight-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight-strip span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.highlight-strip .sep { color: rgba(255,255,255,0.4); }

/* ============================================
   FEATURE DETAIL (2-col text+icon)
   ============================================ */
.feature-detail {
  padding: 80px 0;
  background: var(--gray-pale);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-detail-visual {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-detail-visual h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(232,101,10,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg { width: 12px; height: 12px; stroke: var(--accent); }

.feature-detail-content h2 {
  margin-bottom: 16px;
}

.feature-detail-content p {
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-list-item-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list-item-icon svg { width: 18px; height: 18px; }

.feature-list-item-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.feature-list-item-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,101,10,0.12) 0%, transparent 70%);
}

.cta-strip-content {
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.60);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060E1C;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.footer-logo-name {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand > p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,101,10,0.12);
  border: 1px solid rgba(232,101,10,0.25);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFA96B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ============================================
   UTILITIES & STATES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.bg-gray { background: var(--gray-pale); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0;
}

.divider.center { margin-left: auto; margin-right: auto; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-item:nth-child(2) { border-right: none; }
  .advantage-item:nth-child(1),
  .advantage-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .advantage-item:nth-child(3) { border-right: 1px solid var(--border); }

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

@media (max-width: 900px) {
  .service-cards { grid-template-columns: 1fr; gap: 16px; }
  .transit-grid { grid-template-columns: 1fr; }
  .grid-3, .cargo-types, .steps-grid { grid-template-columns: 1fr 1fr !important; }
  .steps-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .feature-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-height: 64px; }
  .section { padding: 64px 0; }
  .grid-3, .cargo-types, .steps-grid, .cases-grid, .services-grid { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none !important; padding-right: 0; margin-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .highlight-strip .sep { display: none; }
  .highlight-strip span { font-size: 0.82rem; }

  /* Mobile Nav Menu */
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    gap: 2px;
  }

  .nav-mobile-open .nav-link {
    padding: 12px 24px;
    border-radius: 0;
  }

  .nav-mobile-open .nav-cta {
    display: block;
    padding: 0 24px;
    margin-top: 8px;
  }

  .nav-mobile-open .btn { width: 100%; justify-content: center; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PROCESS PAGE — RESPONSIVE STEPS & INCLUDED
   ========================================================= */
@media (max-width: 768px) {
  div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  div[style*="position:sticky"] {
    position: relative !important;
    top: auto !important;
  }
}
/* Logo image fit */
.nav-logo-icon img, .footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }


/* ═══ NAV BAR COMPACT FIX (v4) — applies at all desktop sizes since nav-inner is capped at 1200px ═══ */
@media (min-width: 901px) {
  .nav-inner { gap: 8px !important; padding: 0 14px !important; }
  .nav-links { gap: 0 !important; }
  .nav-link {
    padding: 6px 7px !important;
    font-size: 0.77rem !important;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }
  .nav-cta .btn { padding: 6px 11px !important; font-size: 0.77rem !important; white-space: nowrap; }
  .nav-logo-text .brand-name { font-size: 0.92rem; }
  .nav-logo-text .brand-tag { font-size: 0.58rem; }
}
@media (min-width: 1081px) and (max-width: 1340px) {
  .nav-link { padding: 5px 6px !important; font-size: 0.74rem !important; letter-spacing: -0.01em; }
  .nav-logo-text .brand-tag { display: none; }
  .nav-logo-text .brand-name { font-size: 0.86rem; }
  .nav-inner { gap: 6px !important; padding: 0 10px !important; }
  .nav-cta .btn { padding: 6px 10px !important; font-size: 0.74rem !important; }
  .nav-links { gap: 0 !important; }
}
@media (max-width: 1080px) and (min-width: 901px) {
  /* Hide less-critical nav items on medium screens */
  .nav-links li:nth-child(7),   /* FAQ */
  .nav-links li:nth-child(8) {  /* Cases */
    display: none;
  }
  .nav-link { padding: 5px 6px !important; font-size: 0.74rem !important; }
  .nav-logo-text .brand-tag { display: none; }
  .nav-logo-text .brand-name { font-size: 0.82rem; }
  .nav-inner { gap: 6px !important; padding: 0 10px !important; }
  .nav-cta .btn { padding: 5px 8px !important; font-size: 0.72rem !important; white-space: nowrap; }
  .nav-links { gap: 0 !important; }
}
.nav-cta .btn { padding: 8px 14px !important; font-size: 0.82rem !important; white-space: nowrap; }

