/* =============================================
   VTM Logistics v2 — TRUSTED PARTNER, STEADFAST SUCCESS
   Colors: #003D6B (blue) | #D32F2F (red) | #F5A623 (amber)
   ============================================= */

/* ───── 1. RESET & VARIABLES ───── */
:root {
  --vtm-blue: #003D6B;
  --vtm-blue-dark: #002a4a;
  --vtm-blue-light: #005a99;
  --vtm-red: #D32F2F;
  --vtm-red-light: #e74c4c;
  --vtm-amber: #F5A623;
  --vtm-amber-light: #ffc64a;
  --vtm-white: #ffffff;
  --vtm-gray-50: #f8f9fa;
  --vtm-gray-100: #f0f2f5;
  --vtm-gray-200: #e0e4e8;
  --vtm-gray-300: #c8ced4;
  --vtm-gray-500: #8a95a5;
  --vtm-gray-700: #4a5568;
  --vtm-gray-900: #1a202c;
  --vtm-text: #2d3748;
  --vtm-text-light: #718096;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --header-height: 64px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

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

.section { padding: 90px 0; }
.section-alt { background: var(--vtm-gray-50); }
.section-dark { background: var(--vtm-blue); color: var(--vtm-white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vtm-red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--vtm-gray-900);
}

.section-alt .section-title { color: var(--vtm-white); }

.section-desc {
  font-size: 1.1rem;
  color: var(--vtm-text-light);
  max-width: 650px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--vtm-red);
  color: var(--vtm-white);
}
.btn-primary:hover { background: #b71c1c; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--vtm-white);
  border: 2px solid var(--vtm-white);
}
.btn-outline:hover { background: var(--vtm-white); color: var(--vtm-blue); }

/* ───── 2. HEADER ───── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--vtm-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

/* ── Single-row Header ── */
.header-top {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
  min-height: 64px;
}

/* Brand: logo + slogan stacked vertically */
.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px 20px 6px 0;
  gap: 2px;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-link img { height: 56px; width: auto; }

.header-slogan {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vtm-red);
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* Navigation - centered */
.header-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1px;
}

.header-nav a {
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vtm-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
}

.header-nav a:hover {
  color: var(--vtm-red);
  background: rgba(215, 47, 47, 0.04);
}

.header-nav a.active {
  color: var(--vtm-red);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--vtm-red);
  border-radius: 2px;
}

.nav-arrow {
  font-size: 0.5rem;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
}

.nav-cta {
  background: var(--vtm-red) !important;
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 6px 14px !important;
  margin-left: 6px;
}

.nav-cta:hover {
  background: #b71c1c !important;
  color: #fff !important;
}

/* Actions: lang + hotline */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-left: 20px;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-lang a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 2px;
  border-radius: 3px;
  transition: var(--transition);
  opacity: 0.6;
}

.header-lang a.active {
  opacity: 1;
  background: rgba(0, 61, 107, 0.06);
}

.header-lang a img {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 2px;
}

.header-hotline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--vtm-red);
  color: var(--vtm-white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.header-hotline:hover {
  background: #b71c1c;
  transform: scale(1.02);
}

.header-hotline svg { width: 14px; height: 14px; fill: currentColor; }

/* Hamburger (mobile only) */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.header-hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--vtm-blue);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* ───── 3. HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--vtm-blue-dark) 0%, var(--vtm-blue) 50%, #004d80 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(211,47,47,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content { color: var(--vtm-white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span { color: var(--vtm-amber); }

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vtm-amber);
}

.hero-stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* Hero Form */
.hero-form {
  background: var(--vtm-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vtm-blue);
  margin-bottom: 4px;
}

.hero-form-subtitle {
  font-size: 0.88rem;
  color: var(--vtm-text-light);
  margin-bottom: 24px;
}

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

.hero-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vtm-text);
  margin-bottom: 6px;
}

.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--vtm-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--vtm-text);
  background: var(--vtm-gray-50);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.hero-form-group input:focus,
.hero-form-group select:focus {
  outline: none;
  border-color: var(--vtm-blue);
  background: var(--vtm-white);
  box-shadow: 0 0 0 3px rgba(0, 61, 107, 0.1);
}

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

.hero-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.hero-form-note {
  font-size: 0.78rem;
  color: var(--vtm-gray-500);
  text-align: center;
  margin-top: 12px;
}

/* ───── 4. CAPABILITIES (5 ô năng lực) ───── */
.capabilities { background: var(--vtm-gray-50); }

.capabilities .section-desc { text-align: center; margin-left: auto; margin-right: auto; }

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

.cap-card {
  background: var(--vtm-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--vtm-gray-200);
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--vtm-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.cap-card:hover::before { transform: scaleX(1); }
.cap-card:nth-child(2)::before { background: var(--vtm-blue); }
.cap-card:nth-child(3)::before { background: var(--vtm-amber); }
.cap-card:nth-child(4)::before { background: #7b1fa2; }
.cap-card:nth-child(5)::before { background: #00897b; }

.cap-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 61, 107, 0.08);
  font-size: 1.6rem;
}

.cap-card:nth-child(1) .cap-icon { background: rgba(211,47,47,0.08); color: var(--vtm-red); }
.cap-card:nth-child(2) .cap-icon { background: rgba(0,61,107,0.08); color: var(--vtm-blue); }
.cap-card:nth-child(3) .cap-icon { background: rgba(245,166,35,0.08); color: var(--vtm-amber); }
.cap-card:nth-child(4) .cap-icon { background: rgba(123,31,162,0.08); color: #7b1fa2; }
.cap-card:nth-child(5) .cap-icon { background: rgba(0,137,123,0.08); color: #00897b; }

.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vtm-gray-900);
}

.cap-card p {
  font-size: 0.85rem;
  color: var(--vtm-text-light);
  line-height: 1.6;
}

.cap-card .cap-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vtm-red);
}

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

/* ───── 5. ROUTES (Tuyến đường) ───── */
.routes {
  background: var(--vtm-white);
  position: relative;
}

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

.routes-map {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
  background: var(--vtm-gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}

.routes-map-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.route-cities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.route-city {
  padding: 16px 12px;
  background: var(--vtm-gray-50);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--vtm-gray-200);
  cursor: default;
}

.route-city:hover {
  background: var(--vtm-blue);
  color: var(--vtm-white);
  border-color: var(--vtm-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.route-city .city-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.route-city .city-desc {
  font-size: 0.75rem;
  color: var(--vtm-gray-500);
}

.route-city:hover .city-desc { color: rgba(255,255,255,0.7); }

.route-city.highlight {
  background: linear-gradient(135deg, var(--vtm-blue), var(--vtm-blue-dark));
  color: var(--vtm-white);
  border-color: var(--vtm-blue);
}

.route-city.highlight .city-desc { color: rgba(255,255,255,0.7); }

/* ───── 6. CUSTOMS & FORWARDING ───── */
.customs { background: linear-gradient(135deg, var(--vtm-blue-dark), var(--vtm-blue)); color: var(--vtm-white); }

.customs .section-title { color: var(--vtm-white); }
.customs .section-desc { color: rgba(255,255,255,0.85); }

.customs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.customs-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.customs-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.customs-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.customs-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.customs-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.9;
}

.customs-card ul { margin-top: 12px; }
.customs-card ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
}
.customs-card ul li::before { content: '✓'; color: var(--vtm-amber); font-weight: 700; }

.customs-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.customs-step {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.customs-step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: var(--vtm-amber);
  color: var(--vtm-blue-dark);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customs-step h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.customs-step p {
  font-size: 0.82rem;
  opacity: 0.8;
}

/* ───── 7. TESTIMONIALS ───── */
.testimonials { background: var(--vtm-gray-50); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--vtm-white);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--vtm-gray-200);
  position: relative;
  min-width: 0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--vtm-red);
  opacity: 0.12;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: var(--vtm-amber);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--vtm-gray-700);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vtm-blue);
  color: var(--vtm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--vtm-gray-900); }
.testimonial-role { font-size: 0.8rem; color: var(--vtm-text-light); }
.avatar-initials { font-weight: 700; font-size: 1rem; line-height: 1; }

/* ───── BÁO CHÍ & TRUYỀN THÔNG ───── */
.press {
  padding: 80px 0;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.press-card {
  background: var(--vtm-white);
  border: 1px solid var(--vtm-gray-100);
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
  min-height: 100px;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: transparent;
}
.press-logo-img {
  max-width: 100%;
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.press-card:hover .press-logo-img {
  transform: scale(1.08);
}

/* Partners */
.partners {
  padding: 60px 0;
  background: var(--vtm-white);
  border-top: 1px solid var(--vtm-gray-100);
}

.partners-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vtm-gray-500);
  margin-bottom: 32px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.partner-card {
  background: var(--vtm-white);
  border: 1px solid var(--vtm-gray-100);
  border-radius: 14px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
  min-height: 100px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: transparent;
}

.partner-logo-img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-card:hover .partner-logo-img {
  transform: scale(1.15);
}

/* ───── 8. NEWS & LEGAL LIBRARY ───── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-column-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vtm-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vtm-red);
}

.news-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--vtm-gray-100);
  transition: var(--transition);
}

.news-item:last-child { border-bottom: none; }

.news-item:hover { padding-left: 8px; }

.news-item-date {
  font-size: 0.78rem;
  color: var(--vtm-gray-500);
  margin-bottom: 4px;
}

.news-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vtm-gray-900);
  line-height: 1.5;
  transition: var(--transition);
}

.news-item:hover .news-item-title { color: var(--vtm-red); }

.news-item-desc {
  font-size: 0.85rem;
  color: var(--vtm-text-light);
  margin-top: 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vtm-red);
}

.news-view-all:hover { gap: 10px; }

/* Legal Library */
.legal-list { margin-top: 16px; }

.legal-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--vtm-gray-100);
  align-items: start;
}

.legal-item:last-child { border-bottom: none; }

.legal-num {
  width: 28px;
  height: 28px;
  background: var(--vtm-blue);
  color: var(--vtm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vtm-gray-900);
  transition: var(--transition);
}

.legal-item:hover .legal-item-title { color: var(--vtm-red); }

.legal-item-date {
  font-size: 0.78rem;
  color: var(--vtm-gray-500);
  margin-top: 2px;
}

/* ───── 9. CTA SECTION ───── */
.cta-section {
  background: linear-gradient(135deg, var(--vtm-red), #b71c1c);
  padding: 80px 0;
  text-align: center;
  color: var(--vtm-white);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn-outline { border-color: rgba(255,255,255,0.5); }
.cta-buttons .btn-outline:hover { border-color: var(--vtm-white); }

/* ───── 10. FOOTER ───── */
.footer {
  position: relative;
  color: var(--vtm-white);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/footer-bg-dark.jpg') center center / cover no-repeat;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    linear-gradient(135deg, rgba(0,42,74,0.55) 0%, rgba(0,61,107,0.35) 100%);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1.5fr;
  gap: 48px;
}

/* ── Column titles ── */
.footer-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  position: relative;
}

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

/* ── Column 1: Service list ── */
.footer-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.footer-service-list li {
  font-size: 0.84rem;
  opacity: 0.85;
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
  transition: var(--transition);
}

.footer-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vtm-red);
  opacity: 0.7;
}

.footer-service-list li:hover {
  opacity: 1;
  padding-left: 18px;
}

/* ── Facebook Page embed ── */
.footer-fb-embed {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
}

.footer-fb-embed .fb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1877F2, #0C5DC7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-fb-embed .fb-info {
  flex: 1;
  min-width: 0;
}

.footer-fb-embed .fb-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.3;
}

.footer-fb-embed .fb-followers {
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-fb-embed .fb-btn {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  background: #1877F2;
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.footer-fb-embed .fb-btn:hover {
  background: #166FE5;
}

/* ── Column 2: Contact & Social ── */
.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-logo-wrap img {
  height: 48px;
  width: auto;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact-list .contact-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 2px;
}

.footer-contact-list a {
  color: var(--vtm-white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.footer-contact-list a:hover {
  border-bottom-color: var(--vtm-amber);
  color: var(--vtm-amber);
}

/* ── Social icons ── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-socials .fb { background: #1877F2; }
.footer-socials .yt { background: #FF0000; }
.footer-socials .tk { background: #000; }
.footer-socials .zl { background: #0068FF; }

.footer-privacy {
  font-size: 0.78rem;
  opacity: 0.6;
}

.footer-privacy a {
  color: var(--vtm-white);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-privacy a:hover {
  opacity: 1;
  border-bottom-color: var(--vtm-amber);
  color: var(--vtm-amber);
}

/* ── Column 3: Map + Newsletter ── */
.footer-map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  display: block;
}

.footer-map-btn {
  display: block;
  text-align: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  color: var(--vtm-white);
  text-decoration: none;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.footer-map-btn:hover {
  background: var(--vtm-blue);
  color: #fff;
}

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 16px;
}

.footer-newsletter p {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-newsletter p .nl-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.footer-newsletter .nl-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter .nl-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--vtm-white);
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.footer-newsletter .nl-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.footer-newsletter .nl-form input:focus {
  outline: none;
  border-color: var(--vtm-amber);
  background: rgba(255,255,255,0.15);
}

.footer-newsletter .nl-form button {
  padding: 10px 18px;
  background: var(--vtm-red);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: var(--font-body);
}

.footer-newsletter .nl-form button:hover {
  background: #b71c1c;
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: var(--vtm-white);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ───── 10A. CONTACT PAGE ───── */
.contact-page-section {
  padding: 80px 0;
  background: var(--vtm-white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Info cards */
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--vtm-gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.contact-info-card:hover {
  border-color: var(--vtm-gray-200);
  background: var(--vtm-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon.blue { background: var(--vtm-blue); }
.contact-info-icon.red { background: var(--vtm-red); }
.contact-info-icon.amber { background: var(--vtm-amber); }
.contact-info-icon.green { background: #059669; }
.contact-info-body { flex: 1; }
.contact-info-body h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--vtm-gray-900);
}
.contact-info-body p,
.contact-info-body a {
  color: var(--vtm-gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-info-body a { color: var(--vtm-blue); font-weight: 500; }
.contact-info-body a:hover { color: var(--vtm-blue-dark); }

/* Social links under info */
.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.contact-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vtm-gray-200);
  font-size: 1rem;
  transition: var(--transition);
}
.contact-social-row a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-social-row a.fb:hover { background: #1877F2; color: #fff; }
.contact-social-row a.yt:hover { background: #FF0000; color: #fff; }
.contact-social-row a.zl:hover { background: #0068FF; color: #fff; }
.contact-social-row a.wc:hover { background: #07C160; color: #fff; }

/* Form card */
.contact-form-card {
  background: var(--vtm-gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--vtm-gray-900);
}
.contact-form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--vtm-gray-500);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--vtm-gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--vtm-gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--vtm-white);
  color: var(--vtm-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vtm-blue);
  box-shadow: 0 0 0 3px rgba(0,61,107,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select {
  appearance: auto;
  cursor: pointer;
}

/* Button inside form */
.contact-form-card .btn-submit {
  width: 100%;
  padding: 14px 0;
  background: var(--vtm-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-form-card .btn-submit:hover {
  background: var(--vtm-red-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-page-section { padding: 50px 0; }
}

/* ───── 11. STICKY CONTACT BAR ───── */
.contact-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-bar-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vtm-white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.contact-bar-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-bar-btn:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-lg);
}

.contact-bar-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--vtm-gray-900);
  color: var(--vtm-white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.contact-bar-btn:hover .tooltip {
  opacity: 1;
  right: calc(100% + 16px);
}

.contact-bar-btn.zalo { background: #0068FF; }
.contact-bar-btn.wechat { background: #07C160; }
.contact-bar-btn.phone { background: var(--vtm-red); }
.contact-bar-btn.email { background: var(--vtm-blue); }
.contact-bar-btn.facebook { background: #1877F2; }

/* ───── BACK-TO-TOP ───── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vtm-white);
  color: var(--vtm-blue);
  border: 2px solid var(--vtm-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  font-size: 1.3rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--vtm-blue);
  color: var(--vtm-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ───── 12. RESPONSIVE ───── */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title { font-size: 2.6rem; }
  .hero-stats { justify-content: center; }

  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .route-cities { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }

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

/* Mobile large */
@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }

  /* Header */
  .header-hamburger { display: flex; }

  .header-top { padding: 0 10px; min-height: 56px; }

  .header-brand { padding-right: 8px; }
  .header-logo-link img { height: 34px; }
  .header-slogan { display: none; }

  .header-nav-wrap { display: none; }

  .header-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--vtm-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    padding: 80px 20px 20px;
  }

  .header-nav.open { display: flex; }

  .header-nav a {
    font-size: 1.2rem;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
    max-width: 300px;
  }

  .header-nav a.active::after { display: none; }
  .nav-arrow { display: none; }

  .header-actions { padding-left: 8px; gap: 6px; }
  .header-hotline span { display: none; }
  .header-hotline { padding: 8px 10px; }
  .header-lang { display: none; }

  /* Hero */
  .hero { min-height: auto; padding-top: var(--header-height); }
  .hero .container { padding-top: 30px; padding-bottom: 30px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-form { padding: 24px; }

  .hero-form-row { grid-template-columns: 1fr; }

  /* Capabilities */
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-card { padding: 24px 16px; }

  /* Routes */
  .route-cities { grid-template-columns: repeat(2, 1fr); }

  /* Customs */
  .customs-grid { grid-template-columns: 1fr; }
  .customs-process { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Press */
  .press-grid { grid-template-columns: repeat(2, 1fr); }

  /* Partners */
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  /* News */
  .news-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Contact bar */
  .contact-bar { left: 12px; }
  .contact-bar-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .contact-bar-btn .tooltip { display: none; }

  .header-logo img { height: 40px; }
}

/* Mobile small */
@media (max-width: 480px) {
  .section-title { font-size: 1.4rem; }
  .hero-title { font-size: 1.6rem; }
  .cap-grid { grid-template-columns: 1fr; }
  .route-cities { grid-template-columns: 1fr 1fr; }
  .customs-process { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* ───── 13. ANIMATIONS ───── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ───── 14. SUBPAGE COMMON ───── */
.page-header {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--vtm-blue-dark), var(--vtm-blue));
  color: var(--vtm-white);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.page-content { padding: 60px 0; }
