/* ================================================================
   TRUONG PHAT LOGISTICS - ENTERPRISE MODERN STYLESHEET
   Inspirations: Maersk, Kuehne+Nagel, DSV, Hapag-Lloyd
   ================================================================ */

:root {
  --primary-navy: #0A192F;
  --navy-dark: #061121;
  --navy-medium: #0F274A;
  --navy-light: #163665;
  --navy-slate: #1D397C;
  --accent-orange: #F26419;
  --orange-bright: #FF7A00;
  --orange-light: #FF9E40;
  --orange-gradient: linear-gradient(135deg, #FF7A00 0%, #F26419 100%);
  --blue-gradient: linear-gradient(135deg, #0A192F 0%, #163665 100%);
  --gold-accent: #E5A93C;
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --bg-page: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --border-light: #E2E8F0;
  --border-card: rgba(226, 232, 240, 0.8);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 25px rgba(242, 100, 25, 0.35);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-announcement {
  background: var(--navy-dark);
  color: #CBD5E1;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-pill {
  background: rgba(242, 100, 25, 0.2);
  border: 1px solid rgba(242, 100, 25, 0.6);
  color: #FFA94D;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

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

.top-hotline {
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-hotline strong {
  color: #FFB347;
}

/* Main Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 48px;
  background: #FFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #93C5FD;
  text-transform: uppercase;
}

.brand-name {
  font-size: 19px;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #FFA94D;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-cta {
  background: var(--orange-gradient);
  color: #FFF;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(242, 100, 25, 0.35);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242, 100, 25, 0.5);
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFA94D;
  color: #FFA94D;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  font-size: 24px;
  cursor: pointer;
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #173B6C 0%, #0A192F 55%, #050E1A 100%);
  color: #FFF;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../assets/port_mother_vessel_crystal.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  mix-blend-mode: luminosity;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 100, 25, 0.22);
  border: 1px solid rgba(242, 100, 25, 0.85);
  color: #FFA94D;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title span {
  color: #FF7A00;
  display: inline-block;
}

.hero-description {
  font-size: 15.5px;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 24px;
  max-width: 580px;
  border-left: 3px solid var(--accent-orange);
  padding-left: 16px;
}

.hero-commodities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.commodity-chip {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F8FAFC;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-actions-row {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

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

.stat-value {
  font-size: 24px;
  font-weight: 900;
  color: #FFB347;
  line-height: 1;
}

.stat-title {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Hero Right Featured Showcase Frame */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(242, 100, 25, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-dark);
}

.hero-visual-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 17, 33, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.hero-visual-badge {
  background: rgba(242, 100, 25, 0.9);
  color: #FFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-visual-title {
  font-size: 18px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 12px;
  line-height: 1.35;
}

.hero-visual-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-visual-item {
  font-size: 12.5px;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual-item span.check {
  color: #4ADE80;
  font-weight: 900;
}

/* ========================================================
   SECTION COMMON STYLES
   ======================================================== */
.section {
  padding: 85px 0;
}

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

.section-dark {
  background-color: var(--navy-dark);
  color: #FFF;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}

.section-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-dark .section-main-title {
  color: #FFF;
}

.section-main-title span {
  color: var(--accent-orange);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: #94A3B8;
}

/* ========================================================
   CORE ADVANTAGE: MÔ HÌNH THỦY - BỘ ĐỘC NHẤT
   ======================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.usp-content-block h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.usp-quote-box {
  background: #FFF7ED;
  border-left: 4px solid var(--accent-orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14px;
  color: #9A3412;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.55;
}

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

.usp-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.usp-icon {
  width: 36px;
  height: 36px;
  background: rgba(242, 100, 25, 0.12);
  color: var(--accent-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.usp-item-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 3px;
}

.usp-item-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Comparison Table */
.comparison-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.comp-table th {
  padding: 14px 18px;
  font-weight: 800;
  text-align: left;
}

.comp-table th.head-criteria {
  background: #F1F5F9;
  color: #334155;
  width: 34%;
}

.comp-table th.head-tp {
  background: var(--primary-navy);
  color: #FFB347;
  width: 36%;
}

.comp-table th.head-other {
  background: #E2E8F0;
  color: #64748B;
  width: 30%;
}

.comp-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.comp-table tr:nth-child(even) td {
  background: #FAFAFA;
}

.comp-table td.cell-tp {
  background: #FFF9F5;
  font-weight: 700;
  color: #C2410C;
  border-left: 2px solid var(--accent-orange);
  border-right: 1px solid #F1F5F9;
}

.comp-table td.cell-other {
  color: #64748B;
}

/* Compact Team Bar (Gọn gàng, tinh tế theo yêu cầu) */
.team-compact-bar {
  background: linear-gradient(135deg, #0A192F 0%, #132E59 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-top: 24px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.team-compact-avatar {
  width: 110px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-compact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-compact-info {
  flex: 1;
}

.team-compact-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #FFB347;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.team-compact-desc {
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.4;
  margin-bottom: 5px;
}

.team-compact-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.team-compact-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.12);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

/* ========================================================
   INTERACTIVE FLEET SHOWCASE
   ======================================================== */
.fleet-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

.tab-btn {
  background: #FFF;
  border: 1px solid var(--border-light);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.tab-btn.active {
  background: var(--navy-dark);
  color: #FFF;
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

.tab-btn.active span.pill {
  background: var(--accent-orange);
  color: #FFF;
}

.tab-btn span.pill {
  background: #F1F5F9;
  color: #64748B;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
}

.fleet-pane {
  display: none;
}

.fleet-pane.active {
  display: block;
}

.fleet-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.fleet-media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.fleet-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 25, 47, 0.92);
  color: #FFB347;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid rgba(255, 179, 71, 0.3);
}

.fleet-specs-box {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fleet-specs-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 13.5px;
}

.spec-item .k {
  color: #64748B;
  font-weight: 600;
}

.spec-item .v {
  font-weight: 800;
  color: var(--primary-navy);
}

.fleet-sub-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.sub-fleet-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.sub-fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sub-fleet-card img {
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.sub-fleet-info {
  padding: 12px;
}

.sub-fleet-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.sub-fleet-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ========================================================
   STRATEGIC ROUTE NETWORK & PORTS (MIỀN NAM & CAMBODIA)
   ======================================================== */
.routes-grid-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  margin-bottom: 30px;
}

.network-bridge-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 240px;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}

.network-bridge-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-bridge-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.92) 0%, rgba(10, 25, 47, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #FFF;
  max-width: 650px;
}

.network-bridge-overlay h4 {
  font-size: 20px;
  font-weight: 800;
  color: #FFB347;
  margin-bottom: 8px;
}

.network-bridge-overlay p {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.5;
}

.ports-showcase-panel {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.panel-sub-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ports-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.port-tag-btn {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.port-tag-btn:hover {
  background: #1D4ED8;
  color: #FFF;
}

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

.corridor-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-left: 5px solid var(--accent-orange);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.corridor-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.corridor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.corridor-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.transit-badge {
  background: rgba(242, 100, 25, 0.12);
  color: #C2410C;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.corridor-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================================
   COMMODITIES SECTION
   ======================================================== */
.commodities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.commodity-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

.commodity-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.commodity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.commodity-card:hover .commodity-img img {
  transform: scale(1.06);
}

.commodity-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.commodity-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.commodity-desc {
  font-size: 12.8px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}

.commodity-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-orange);
  background: #FFF7ED;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

/* ========================================================
   CLIENTS & TRUST (PARTNERS)
   ======================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.partner-icon {
  width: 44px;
  height: 44px;
  background: rgba(10, 25, 47, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--navy-slate);
  flex-shrink: 0;
}

.partner-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
}

.partner-sub {
  font-size: 11.5px;
  color: #64748B;
}

/* ========================================================
   MEDIA OPERATIONS GALLERY
   ======================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 210px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10, 25, 47, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 17, 33, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
  text-align: center;
  color: #FFB347;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}

.lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: #FFF;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ========================================================
   QUOTE & CONTACT SECTION
   ======================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-form-side {
  padding: 40px;
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: #FFF;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.15);
}

/* Anti-spam Honeypot (Invisible to human, traps bots) */
.hidden-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-info-side {
  background: linear-gradient(135deg, #0A192F 0%, #132E59 100%);
  color: #FFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFB347;
  margin-bottom: 18px;
}

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

.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #CBD5E1;
}

.c-info-icon {
  color: var(--accent-orange);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-info-item strong {
  color: #FFF;
}

.security-assurance-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 24px;
}

.security-assurance-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.security-assurance-desc {
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.4;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #94A3B8;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #FFA94D;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.footer-copy strong {
  color: #FFF;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0A192F;
  color: #FFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-left: 4px solid var(--accent-orange);
  z-index: 3000;
  display: none;
  font-size: 13.5px;
  font-weight: 600;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .fleet-showcase-grid {
    grid-template-columns: 1fr;
  }
  .routes-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .team-highlight-banner {
    grid-template-columns: 1fr;
  }
  .commodities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .commodities-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-card img {
    height: 300px;
  }
}
