/* ═══════════════════════════════════════════
   THUNDER LINK LOGISTICS — "THE YARD"
   Industrial Shipping Terminal Aesthetic
   ═══════════════════════════════════════════ */

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

:root {
  /* Brand — real shipping container colors */
  --navy: #0B1D33;
  --navy-mid: #132d4a;
  --navy-light: #1a3d5c;
  --orange: #E8651A;
  --orange-dark: #c45416;
  --orange-glow: rgba(232, 101, 26, 0.12);
  --yellow: #F2C744;
  --steel: #2A2D32;
  --canvas: #F0EDE6;
  --canvas-dark: #E5E0D6;
  --white: #FAFAF8;
  --black: #0a0a0a;

  /* Type */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-body: 'Noto Sans Thai', system-ui, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-body);
  color: var(--steel);
  background: var(--canvas);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Grain Texture ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--orange);
  transition: background 0.3s;
}

.nav.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark { flex-shrink: 0; }

.logo-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.logo-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--orange);
  margin-top: 4px;
}

/* ─── Nav Menu — 40px fixed-height grid ─── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255,255,255,0.6);
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

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

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  height: 40px !important;
  padding: 0 24px !important;
  margin-left: 8px;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  border-radius: 6px !important;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 101, 26, 0.3);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-photo,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.35) saturate(0.8);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 29, 51, 0.88) 0%,
    rgba(11, 29, 51, 0.55) 50%,
    rgba(11, 29, 51, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,101,26,0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(232,101,26,0); }
}

.h1-th {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.h1-accent {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-top: 4px;
  white-space: nowrap;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 24px 0 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-main:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,101,26,0.3);
}

.btn-big { padding: 18px 40px; font-size: 17px; }

.btn-icon {
  display: flex;
  align-items: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-fb:hover {
  border-color: rgba(255,255,255,0.4);
  background: var(--navy-mid);
}

/* Shipping Manifest card */
.manifest {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.manifest:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(232,101,26,0.08);
  border-color: rgba(255,255,255,0.18);
}

.manifest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(232,101,26,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.manifest-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange);
}

.manifest-id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.manifest-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  transition: background 0.3s ease;
}

.manifest-row:hover {
  background: rgba(255,255,255,0.04);
}

.manifest-row:hover .manifest-val {
  color: var(--orange);
  transition: color 0.3s ease;
}

.manifest-row:hover .manifest-key {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.manifest-key {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
}

.manifest-val {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
}

.manifest-unit {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-align: right;
}

.manifest-status {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  padding: 4px 12px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 4px;
  letter-spacing: 2px;
  animation: statusPulse 2.5s ease-in-out infinite;
  position: relative;
  justify-self: center;
}

.manifest-status::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  background: rgba(74,222,128,0.15);
  animation: statusGlow 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50% { box-shadow: 0 0 12px 2px rgba(74,222,128,0.3); }
}

@keyframes statusGlow {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.08, 1.3); opacity: 1; }
}

.manifest-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 24px;
}

/* Hazard stripe */
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange),
    var(--orange) 10px,
    var(--navy) 10px,
    var(--navy) 20px
  );
  background-size: 28px 28px;
  animation: stripeScroll 1.5s linear infinite;
  z-index: 3;
}

/* ─── Sections ─── */
.sect {
  padding: 100px 0;
}

.sect-dark {
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.sect-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/fleet-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.6);
}

.sect-dark > .wrap {
  position: relative;
  z-index: 1;
}

.sect-alt {
  background: var(--canvas-dark);
}

.sect-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.label-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  transform-origin: left;
  animation: lineGrow 0.8s ease forwards;
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.label-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
}

.sect-title {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.sect-dark .sect-title { color: var(--white); }

.sect-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
}

/* ─── Services ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 32px 28px 28px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card::before {
  content: attr(data-num);
  position: absolute;
  top: -16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.4s ease;
}

.svc-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(232,101,26,0.1);
  transform: translateY(-6px);
}

.svc-card:hover::before {
  color: rgba(232,101,26,0.08);
  transform: scale(1.1);
}

.svc-card:hover h3 {
  color: var(--orange);
  transition: color 0.3s ease;
}

.svc-top {
  margin-bottom: 20px;
}

.svc-ico-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas-dark);
  border-radius: 12px;
  transition: all 0.3s;
}

.svc-card:hover .svc-ico-wrap {
  background: var(--orange-glow);
  transform: scale(1.05);
}

.svc-ico {
  width: 44px;
  height: 44px;
}

.svc-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.svc-card > p {
  font-size: 14px;
  color: var(--steel);
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.7;
}

.svc-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  margin-top: auto;
}

.svc-card li {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--steel);
  padding-left: 16px;
  position: relative;
}

.svc-card li::before {
  content: '//';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

/* ─── Routes ─── */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.3s;
}

.route-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,101,26,0.3);
  transform: translateX(6px);
}

.route-item:hover .route-code {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.route-code {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 2px;
  min-width: 56px;
  text-align: center;
  line-height: 1;
}

.route-item strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}

.route-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

/* ─── About ─── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.about-photo-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-wrap:hover .about-photo {
  transform: scale(1.03);
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(11,29,51,0.15));
  pointer-events: none;
}

.about-text {
  max-width: 520px;
}

.about-lead {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text > p:last-child {
  font-size: 15px;
  color: var(--steel);
  opacity: 0.7;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-card {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  transition: all 0.3s;
}

.about-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-4px);
}

.about-card:hover .about-num {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.about-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: 2px;
}

.about-card strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-card > span {
  font-size: 13px;
  color: var(--steel);
  opacity: 0.6;
}

/* ─── Fleet ─── */
.fleet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fleet-row + .fleet-row {
  margin-top: 20px;
}

.fleet-row:first-child {
  margin-top: 48px;
}

.fleet-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.fleet-item:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.fleet-box {
  padding: 28px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
}

.fleet-svg {
  width: 100%;
  max-width: 120px;
  height: auto;
  color: var(--navy);
  opacity: 0.6;
}

.fleet-item:hover .fleet-svg { opacity: 1; color: var(--orange); }

.fleet-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.fleet-item:hover .fleet-img { transform: scale(1.05); }

.fleet-info {
  padding: 16px 20px 20px;
}

.fleet-info h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
}

.fleet-en {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  opacity: 0.5;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.fleet-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 3px 10px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 3px;
  text-transform: uppercase;
}

/* ─── CTA ─── */
.cta {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/cta-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.5);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange),
    var(--orange) 10px,
    var(--navy) 10px,
    var(--navy) 20px
  );
  background-size: 28px 28px;
  animation: stripeScroll 1.5s linear infinite;
}

@keyframes stripeScroll {
  to { background-position: 28px 0; }
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  letter-spacing: 2px;
}

.cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cd-item {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.cd-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}

.cd-item p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
}

.cd-item a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}

.cd-item a:hover { color: var(--orange); }

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  min-height: 400px;
}

/* ─── Footer ─── */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 0;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.foot-brand p {
  font-size: 13px;
  margin-top: 16px;
  line-height: 1.7;
}

.foot h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-col a, .foot-col span {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.foot-col a:hover { color: var(--orange); }

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

.foot-reg {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
}

/* ─── Floating Call Button (Mobile) ─── */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232,101,26,0.4);
  transition: all 0.3s;
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(232,101,26,0.5);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.36s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .fleet-row { grid-template-columns: repeat(3, 1fr); }
  .about-hero { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .sect { padding: 72px 0; }

  .menu-btn { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 40px;
    gap: 4px;
    transition: right 0.3s;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    border-left: 2px solid var(--orange);
  }

  .nav-menu.open { right: 0; }

  .nav-menu a {
    padding: 14px 16px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
  }

  .nav-cta { margin-left: 0 !important; margin-top: 16px; text-align: center; width: 100%; justify-content: center; }

  .hero-content { padding: 100px 20px 48px; }
  .h1-th { font-size: clamp(28px, 8vw, 40px); }
  .h1-accent { font-size: clamp(28px, 8.5vw, 48px); letter-spacing: 0; white-space: normal; }

  .manifest { margin-top: 0; }

  .manifest-val { font-size: 36px; }
  .manifest-row { padding: 14px 20px; gap: 6px; grid-template-columns: 1fr auto 1fr; }
  .manifest-key { font-size: 10px; }
  .manifest-header { padding: 10px 20px; }
  .manifest-divider { margin: 0 20px; }

  .svc-grid { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .fleet-row { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .float-call { display: flex; }
  .foot { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .route-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr; }
  .fleet-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
