/* ==========================================================================
   RNS EXPRESS LOGISTICS - CORE DESIGN SYSTEM & STYLESHEET
   Domain: rnsexpresslogistics.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary: #0B192C;
  --primary-dark: #050E1A;
  --primary-light: #162B46;
  --secondary: #1E3E62;
  --accent: #FF6500;
  --accent-hover: #E55400;
  --accent-light: #FFF0E6;
  --accent-gradient: linear-gradient(135deg, #FF7A00 0%, #FF5400 100%);
  --amber: #FFB703;
  --success: #10B981;
  --info: #0284C7;

  /* Neutrals & Surfaces */
  --bg-main: #FFFFFF;
  --bg-alt: #F6F8FB;
  --bg-dark: #071322;
  --surface: #FFFFFF;
  --surface-border: #E2E8F0;
  --surface-border-dark: #1E324A;

  /* Typography Colors */
  --text-main: #0B192C;
  --text-muted: #53647D;
  --text-light: #8E9FB5;
  --text-white: #FFFFFF;

  /* Typography Families */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 25, 44, 0.05);
  --shadow-md: 0 4px 14px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 10px 30px rgba(11, 25, 44, 0.12);
  --shadow-xl: 0 20px 45px rgba(11, 25, 44, 0.16);
  --shadow-accent: 0 8px 25px rgba(255, 101, 0, 0.35);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 101, 0, 0.2);
}

.section-tag.dark {
  background: rgba(255, 101, 0, 0.15);
  color: #FFA559;
  border-color: rgba(255, 101, 0, 0.3);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 36px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.text-white {
  color: var(--text-white) !important;
}

.text-accent {
  color: var(--accent) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 101, 0, 0.45);
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background: #FFFFFF;
  color: var(--primary);
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: #FFFFFF;
}

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

.btn-outline-accent:hover {
  background: var(--accent);
  color: #FFFFFF;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #A0B2C6;
}

.top-info-item i, .top-info-item svg {
  color: var(--accent);
  width: 14px;
  height: 14px;
}

.top-info-item a:hover {
  color: #FFFFFF;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 101, 0, 0.18);
  color: #FFA559;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 101, 0, 0.3);
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 52px;
}

.brand-logo img {
  height: 100%;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(255, 101, 0, 0.05);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 25, 44, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #FFFFFF;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--surface-border);
}

.mobile-close-btn {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--accent);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 16, 30, 0.92) 0%, rgba(11, 25, 44, 0.85) 100%), 
              url('../assets/images/hero_truck.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 101, 0, 0.2);
  border: 1px solid rgba(255, 101, 0, 0.4);
  color: #FFA559;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 34px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #E2E8F0;
  font-weight: 600;
}

.hero-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-rating-stars {
  color: #FFB703;
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.hero-rating-text {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* HERO INTERACTIVE CARD (TRACK & ESTIMATE TABS) */
.hero-interactive-card {
  background: rgba(11, 25, 44, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  padding: 30px 26px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-tab-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  gap: 4px;
}

.card-tab-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: #CBD5E1;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-tab-btn.active {
  background: var(--accent-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-accent);
}

.card-tab-pane {
  display: none;
}

.card-tab-pane.active {
  display: block;
}

.track-input-group {
  position: relative;
  margin-bottom: 16px;
}

.track-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 600;
  outline: none;
  transition: border-color var(--transition-fast);
}

.track-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.track-input::placeholder {
  color: #8E9FB5;
  font-weight: 400;
}

.sample-awb-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #94A3B8;
}

.sample-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: #FFB703;
  transition: all var(--transition-fast);
}

.sample-tag:hover {
  background: var(--accent);
  color: #FFFFFF;
}

/* Quick Estimate Form in Card */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #CBD5E1;
}

.form-select, .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-select option {
  background: var(--primary-dark);
  color: #FFFFFF;
}

.form-select:focus, .form-control:focus {
  border-color: var(--accent);
}

/* ==========================================================================
   STATISTICS STRIP
   ========================================================================== */
.stats-strip {
  background: #FFFFFF;
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-lg);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--surface-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px 20px;
  border-right: 1px solid var(--surface-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

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

.stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section {
  padding: 90px 0;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 101, 0, 0.3);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 20px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 6px;
}

.service-features-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.service-card-footer {
  padding-top: 14px;
  border-top: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

/* ==========================================================================
   PACKERS & MOVERS 5-STEP PACKING SYSTEM
   ========================================================================== */
.packing-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.packing-step-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  border: 1px solid var(--surface-border);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.packing-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.packing-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-accent);
}

.packing-step-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-md);
  margin: 14px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.packing-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.packing-step-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FLEET SPECIFICATIONS TABLE & SHOWCASE
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.fleet-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.fleet-badge {
  display: inline-block;
  background: rgba(30, 62, 98, 0.08);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fleet-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.fleet-spec-list {
  text-align: left;
  background: var(--bg-alt);
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.86rem;
}

.fleet-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed #CBD5E1;
}

.fleet-spec-row:last-child {
  border-bottom: none;
}

.fleet-spec-label {
  color: var(--text-muted);
  font-weight: 500;
}

.fleet-spec-val {
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   INTERACTIVE COST CALCULATOR (FULL PAGE / SECTION)
   ========================================================================== */
.calculator-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.calculator-form-side {
  padding: 44px;
}

.calculator-summary-side {
  background: linear-gradient(145deg, #0B192C 0%, #06101E 100%);
  color: #FFFFFF;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.calc-type-btn {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 2px solid var(--surface-border);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.calc-type-btn.active {
  background: #FFFFFF;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.calc-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.calc-total-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.calc-estimate-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 4px;
}

.calc-estimate-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFA559;
}

/* ==========================================================================
   LIVE SHIPMENT TRACKING WIDGET (TRACK RESULT DISPLAY)
   ========================================================================== */
.track-result-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--surface-border);
  padding: 36px;
  margin-top: 30px;
  display: none;
}

.track-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 30px;
}

.track-id-badge {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.track-status-pill {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.track-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0;
}

.track-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: #E2E8F0;
  z-index: 1;
}

.track-timeline-progress {
  position: absolute;
  top: 20px;
  left: 40px;
  height: 4px;
  background: var(--accent);
  z-index: 2;
  transition: width 0.8s ease;
}

.timeline-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border: 3px solid #CBD5E1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  margin-bottom: 10px;
  transition: all var(--transition-normal);
}

.timeline-step.completed .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(255, 101, 0, 0.2);
}

.timeline-step.current .timeline-dot {
  background: #FFFFFF;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 101, 0, 0.3);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 101, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 101, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 101, 0, 0); }
}

.timeline-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US / TRUST SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: #FFB703;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-quote {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-border);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.testi-name {
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--primary);
}

.testi-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 850px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   BRANCH HUBS / NETWORK LIST
   ========================================================================== */
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.network-city-card {
  background: #FFFFFF;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}

.network-city-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.city-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
}

.city-hub-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #06101E 100%);
  color: #FFFFFF;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: #94A3B8;
  font-size: 1.05rem;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   PAGE HERO BANNERS (SUBPAGES)
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, rgba(6, 16, 30, 0.94) 0%, rgba(11, 25, 44, 0.88) 100%),
              url('../assets/images/hero_truck.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 60px 0 70px;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94A3B8;
  margin-bottom: 16px;
}

.breadcrumb-nav a {
  color: #CBD5E1;
}

.breadcrumb-nav a:hover {
  color: var(--accent);
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.page-banner-subtitle {
  font-size: 1.12rem;
  color: #CBD5E1;
  max-width: 700px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 80px 0 24px;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 54px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 22px;
}

.footer-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-heading {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

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

.footer-link-item a {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-link-item a svg {
  color: var(--accent);
  width: 12px;
  height: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #94A3B8;
}

.footer-contact-item svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-bottom a {
  color: #94A3B8;
}

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

/* ==========================================================================
   FLOATING WHATSAPP & SCROLL TO TOP
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-float-btn {
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.scroll-top-btn {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--accent);
  color: #FFFFFF;
}

/* ==========================================================================
   MODAL / POPUP
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 25, 44, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--surface-border);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  padding: 36px;
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid, .why-grid, .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packing-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-menu, .nav-actions .btn-secondary {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-top: 1px solid var(--surface-border);
  }
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--surface-border);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .hero-section {
    padding: 60px 0 80px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .services-grid, .fleet-grid, .why-grid, .network-grid {
    grid-template-columns: 1fr;
  }
  .packing-steps-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--surface-border);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .calculator-form-side, .calculator-summary-side {
    padding: 24px;
  }
  .track-timeline {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .track-timeline::before, .track-timeline-progress {
    display: none;
  }
  .timeline-step {
    flex-direction: row;
    gap: 16px;
    text-align: left;
    max-width: 100%;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .top-bar-left {
    justify-content: center;
  }
}
