﻿/* =============================================
   SWIFTROUTE LOGISTICS  -  STYLESHEET
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1829;
  --navy2: #112240;
  --navy3: #1a3a6e;
  --red: #e02020;
  --red2: #c41a1a;
  --white: #ffffff;
  --offwhite: #f5f7fa;
  --gray: #64748b;
  --lightgray: #e2e8f0;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-1px);
}
.btn-primary.btn-lg {
  font-size: 1.05rem;
  padding: 16px 34px;
}
.btn-primary.btn-full {
  width: 100%;
  text-align: center;
  display: block;
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-white.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
}

.btn-track {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-track:hover {
  color: var(--red);
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(224, 32, 32, 0.08);
  padding: 4px 12px;
  margin-bottom: 14px;
  border-left: 3px solid var(--red);
}
.section-label.light {
  color: #ff9999;
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #ff9999;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  gap: 24px;
}
.topbar-right {
  display: flex;
  gap: 20px;
}
.topbar-right a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.topbar-right a:hover {
  color: var(--red);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-icon {
  color: var(--red);
  font-size: 1.6rem;
}
.logo-text strong {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--navy2);
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s;
}
.nav-links li a:hover {
  color: var(--red);
}
.nav-links li a:hover::after {
  width: calc(100% - 24px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #0b2040 0%,
    #1a3a6e 40%,
    #0d2b55 70%,
    #080f1e 100%
  );
  background-image:
    radial-gradient(
      ellipse at 60% 50%,
      rgba(26, 58, 110, 0.8) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #07111f 0%, #1a3a6e 60%, #0d1f3c 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 17, 31, 0.92) 40%,
    rgba(7, 17, 31, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  color: var(--white);
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-content p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hstat span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
}
.hstat small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hstat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   PARTNERS
   ============================================= */
.partners {
  padding: 28px 0;
  background: var(--offwhite);
  border-bottom: 1px solid var(--lightgray);
}
.partners-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: #aab4c4;
  transition: color 0.2s;
}
.partner-logo:hover {
  color: var(--navy2);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services .container {
  text-align: center;
}
.services .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--lightgray);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
.service-card.visible {
  opacity: 1;
  transform: none;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--red);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-card a {
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: letter-spacing 0.2s;
}
.service-card a:hover {
  letter-spacing: 0.12em;
}

/* =============================================
   TRANSPORT MODES
   ============================================= */
.transport-modes {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}
.transport-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 50px;
}
.transport-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
}
.transport-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 340px;
}
.transport-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.4s ease;
}
.transport-panel:hover {
  flex: 2;
}
.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  transition: background 0.3s;
}
.transport-panel:hover .panel-overlay {
  background: linear-gradient(
    to top,
    rgba(224, 32, 32, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
}
.panel-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 24px 18px;
}

/* =============================================
   INDUSTRIES
   ============================================= */
.industries {
  padding: 100px 0;
  background: var(--offwhite);
}
.industries-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.industries-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.industries-text p {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 32px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-item {
  background: var(--white);
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--lightgray);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  cursor: default;
}
.industry-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.ind-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.industry-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  display: block;
}

/* =============================================
   SOLUTION BANNER
   ============================================= */
.solution-banner {
  background: var(--navy2);
  padding: 90px 0;
}
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.solution-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}
.solution-list {
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
  font-size: 1rem;
}
.solution-list li::before {
  color: var(--red);
  font-weight: 700;
  margin-right: 8px;
}

.solution-card {
  background: var(--white);
  padding: 36px 32px;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.solution-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.solution-card input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--lightgray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.solution-card input:focus {
  border-color: var(--navy3);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.about-img {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(135deg, #0b2040 0%, #1a3a6e 50%, #0a1830 100%);
  background-image:
    radial-gradient(
      circle at 30% 70%,
      rgba(26, 58, 110, 0.9) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(224, 32, 32, 0.15) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #07111f 0%, #1a3a6e 100%);
}
.about-badge {
  position: absolute;
  bottom: 36px;
  right: -1px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
}
.badge-num sup {
  font-size: 1rem;
}
.badge-text {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content {
  padding: 70px 60px;
  background: var(--white);
}
.about-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.15;
}
.about-content > p {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 40px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--lightgray);
}
.astat span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--red);
}
.astat small {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.af-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy2);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--offwhite);
}
.testimonials .container {
  text-align: center;
}
.testimonials h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 50px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.tcard {
  padding: 36px 30px;
  position: relative;
}
.tcard-dark {
  background: var(--navy);
  color: var(--white);
}
.tcard-red {
  background: var(--red);
  color: var(--white);
}
.tcard-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--lightgray);
}

.tcard-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.6;
}
.tcard p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.tcard-light .tcard-avatar {
  background: var(--lightgray);
  color: var(--navy);
}
.tcard-author strong {
  display: block;
  font-size: 0.9rem;
}
.tcard-author small {
  font-size: 0.78rem;
  opacity: 0.7;
}
.tcard-rating {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fbbf24;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* =============================================
   INSIGHTS / BLOG
   ============================================= */
.insights {
  padding: 100px 0;
  background: var(--white);
}
.insights h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 24px;
}
.blog-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--lightgray);
  padding-bottom: 0;
}
.btab {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btab.active,
.btab:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--lightgray);
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-img {
  height: 180px;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img {
  transform: scale(1.03);
}
.blog-meta {
  padding: 18px 20px 6px;
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card h4 {
  padding: 0 20px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
}
.blog-link {
  display: block;
  padding: 14px 20px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--lightgray);
  transition: background 0.2s;
}
.blog-link:hover {
  background: var(--offwhite);
}

/* =============================================
   CTA SPLIT
   ============================================= */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-left {
  background: var(--offwhite);
  padding: 80px 60px;
}
.cta-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-left p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.65;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-form input,
.quote-form select {
  padding: 13px 16px;
  border: 1px solid var(--lightgray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}
.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--navy3);
}

.cta-right {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(26, 58, 110, 0.8) 0%,
    transparent 60%
  );
}
.cta-right-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  color: var(--white);
}
.cta-right-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 18px;
}
.cta-right-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 28px;
}
.cta-right-list {
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
  margin-bottom: 36px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #07111f;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}
.footer-contact {
  font-size: 0.82rem;
  line-height: 1.9;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-newsletter {
  display: flex;
  gap: 0;
}
.footer-newsletter input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter button {
  padding: 11px 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter button:hover {
  background: var(--red2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--red);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-img {
    display: none;
  }
  .about-content {
    padding: 60px 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .topbar-left {
    display: none;
  }
  .nav-links,
  .nav-cta .btn-track {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav-cta {
    gap: 10px;
  }

  .hero {
    min-height: 70vh;
  }
  .hero-content {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .transport-panels {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .transport-panel {
    min-height: 180px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-inner {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cta-split {
    grid-template-columns: 1fr;
  }
  .cta-left,
  .cta-right-content {
    padding: 50px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-stats {
    gap: 20px;
  }
  .partners-logos {
    gap: 24px;
  }
}
