/* =========================================================================
   iG Link Canada — main.css  (redesign theo mockup khách duyệt 06/2026)
   Brand: #194E86 blue · #C9A22D gold · #0F6E56 green · #F5F4F0 cream
   Mobile-first. Font: Plus Jakarta Sans. Chrome dùng chung + section trang chủ.
   Section CSS riêng của từng trang con nằm inline trong page-*.php.
   ========================================================================= */

:root {
  --blue: #194E86;
  --blue-dark: #0F3D6E;
  --blue-light: #EEF4FB;
  --gold: #C9A22D;
  --gold-dark: #412402;
  --gold-light: #FDF6E3;
  --green: #0F6E56;
  --green-light: #EAF3DE;
  --cream: #F5F4F0;
  --white: #FFFFFF;
  --text: #2C2F33;
  --text-light: #5A5D63;
  --line: #e6e3dc;
  --req: #C0390F;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow: 0 2px 16px rgba(25, 78, 134, .08);
  --shadow-lg: 0 8px 40px rgba(25, 78, 134, .12);
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0
}

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

@media(max-width:768px) {
  .container {
    padding: 0 16px
  }
}

.screen-reader-text {
  position: absolute;
  left: -9999px
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  position: fixed;
  background: #fff;
  padding: 8px 14px;
  z-index: 9999
}

.site-main {
  min-height: 40vh
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

.animate {
  opacity: 0;
  animation: fadeUp .7s ease forwards
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease
}

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

/* An toàn: JS tắt / observer lỗi → luôn hiển thị nội dung (không bao giờ ẩn vĩnh viễn) */
html:not(.js) .reveal {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    transition: none
  }
}

/* ─── Buttons (mockup) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all .25s;
  cursor: pointer;
  font-family: inherit
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn-primary {
  background: var(--blue);
  color: var(--white)
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(25, 78, 134, .3);
  color: #fff
}

.btn-blue {
  background: var(--blue);
  color: var(--white)
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(25, 78, 134, .3);
  color: #fff
}

.btn-gold {
  background: var(--gold);
  color: var(--gold-dark)
}

.btn-gold:hover {
  background: #d4ad38;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 45, .3)
}

.btn-green {
  background: var(--green);
  color: var(--white)
}

.btn-green:hover {
  background: #0c5e49;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 110, 86, .3);
  color: #fff
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .3)
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.btn-ghost:hover {
  background: var(--blue);
  color: #fff
}

.btn-zalo {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--gold)
}

.btn-zalo:hover {
  background: var(--blue-dark);
  color: #fff
}

.btn-full {
  width: 100%
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px
}

/* legacy BEM aliases — giữ cho main.js (notConfigured/track) + trang chưa redesign */
.btn--primary {
  background: var(--blue);
  color: #fff
}

.btn--gold {
  background: var(--gold);
  color: var(--gold-dark)
}

.btn--green {
  background: var(--green);
  color: #fff
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.btn--ghost:hover {
  background: var(--blue);
  color: #fff
}

.btn--zalo {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--gold)
}

.btn--blue {
  background: var(--blue);
  color: #fff
}

.btn--primary,
.btn--gold,
.btn--green,
.btn--ghost,
.btn--zalo,
.btn--blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: .25s
}

.btn--sm {
  padding: 9px 16px;
  font-size: 14px
}

.btn--lg {
  padding: 16px 32px;
  font-size: 17px
}

/* ─── Section heads (dùng chung) ─── */
.section-head {
  text-align: center;
  margin-bottom: 48px
}

.section-head .overline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.3px
}

.section-head p {
  color: var(--text-light);
  font-size: 16px;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

/* ─── Forms (dùng chung) ─── */
.form-group {
  margin-bottom: 16px
}

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

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: all .2s
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 78, 134, .1)
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5D63' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

/* ═══════════════ NAVBAR (fixed) ═══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s ease
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .15)
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 16px
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: none
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block
}

.nav-collapse {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-menu a,
.nav-menu li>a {
  color: rgba(15, 61, 110, 0.8);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: all .2s;
  display: block
}

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

.nav-menu .current-menu-item>a,
.nav-menu a.active {
  color: var(--gold)
}

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

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  white-space: nowrap
}

.nav-cta-kh {
  background: rgba(255, 255, 255, .12);
  color: var(--blue-light);
  border: 1.5px solid rgba(255, 255, 255, .25)
}

.nav-cta-kh:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .5);
  color: var(--blue);
}

.nav-cta-dl {
  background: var(--gold);
  color: var(--gold-dark)
}

.nav-cta-dl:hover {
  background: #d4ad38
}

.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius-xs);
  color: var(--white);
  font-size: 20px;
  margin-left: auto
}

/* lang switch trong navbar */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 2px
}

.lang-switch a {
  color: #cfe0f4;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700
}

.lang-switch a.active {
  background: var(--gold);
  color: var(--gold-dark)
}

@media(max-width:980px) {
  .nav-hamburger {
    display: flex
  }

  .nav-collapse {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 61, 110, .99);
    padding: 12px 16px 18px;
    gap: 6px;
    margin-left: 0;
    transform: translateY(-135%);
    transition: transform .28s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    max-height: calc(100vh - 64px);
    overflow: auto
  }

  .nav-collapse.open {
    transform: translateY(0)
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 2px
  }

  .nav-menu a {
    padding: 12px 10px;
    font-size: 15px
  }

  .nav-actions {
    flex-wrap: wrap;
    margin-top: 6px
  }

  .nav-cta {
    flex: 1;
    justify-content: center
  }

  .lang-switch {
    align-self: flex-start
  }
}

/* ═══════════════ FX BAR (live) ═══════════════ */
.fx-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 10px 0;
  margin-top: 64px;
  position: relative;
  overflow: hidden
}

.fx-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 45, .05), transparent);
  animation: shimmer 4s linear infinite;
  background-size: 200% 100%
}

.fx-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.fx-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7)
}

.fx-rate {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.3px
}

.fx-sep {
  color: rgba(255, 255, 255, .35);
  font-weight: 700
}

.fx-rate--usd {
  font-size: 15px;
  color: #8FEFC9
}

.fx-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 110, 86, .25);
  color: #6DDFB8;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px
}

.fx-badge svg {
  width: 12px;
  height: 12px
}

.fx-time {
  font-size: 11px;
  color: rgba(255, 255, 255, .45)
}

.fx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite
}

.fx-bar a {
  color: #9fd9c6;
  text-decoration: underline
}

/* ═══════════════ HERO (trang chủ) ═══════════════ */
.hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 45, .08) 0%, transparent 70%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 110, 86, .06) 0%, transparent 70%);
  pointer-events: none
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

@media(max-width:768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 162, 45, .15);
  border: 1px solid rgba(201, 162, 45, .3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 20px
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold)
}

.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px
}

.hero h1 span {
  color: var(--gold)
}

.hero-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-visual {
  position: relative;
  display: block
}

.hero-card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 26px;
  width: 100%
}

.hero-card-title {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px
}

.hero-card-service {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all .2s
}

.hero-card-service:hover {
  transform: translateX(4px)
}

.hcs-shipping {
  background: rgba(25, 78, 134, .2);
  border: 1px solid rgba(25, 78, 134, .3)
}

.hcs-money {
  background: rgba(15, 110, 86, .2);
  border: 1px solid rgba(15, 110, 86, .3)
}

.hcs-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.hcs-shipping .hcs-icon {
  background: rgba(25, 78, 134, .4)
}

.hcs-money .hcs-icon {
  background: rgba(15, 110, 86, .4)
}

.hcs-info h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px
}

.hcs-info p {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  line-height: 1.4
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .6);
  font-size: 11.5px;
  font-weight: 500
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: var(--gold)
}

/* ═══════════════ STATS ═══════════════ */
.stats {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 45, .03), transparent 50%, rgba(15, 110, 86, .03))
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1
}

@media(max-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  position: relative
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .08)
}

.stat-item:last-child::after {
  display: none
}

@media(max-width:768px) {
  .stat-item:nth-child(2)::after {
    display: none
  }
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.5px;
  margin-bottom: 2px
}

.stat-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  font-weight: 500
}

/* ═══════════════ SERVICES (S5) ═══════════════ */
.services {
  background: var(--cream);
  padding: 80px 0
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

@media(max-width:768px) {
  .services-grid {
    grid-template-columns: 1fr
  }
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
  transition: all .3s ease
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px
}

.sc-shipping::before {
  background: linear-gradient(90deg, var(--blue), #2D6DB8)
}

.sc-money::before {
  background: linear-gradient(90deg, var(--green), #14A07E)
}

.sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px
}

.sc-shipping .sc-icon {
  background: var(--blue-light);
  color: var(--blue)
}

.sc-money .sc-icon {
  background: var(--green-light);
  color: var(--green)
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text)
}

.service-card .sc-desc {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px
}

.sc-features {
  list-style: none;
  margin-bottom: 24px
}

.sc-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  padding: 5px 0
}

.sc-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px
}

.sc-shipping .sc-features li svg {
  color: var(--blue)
}

.sc-money .sc-features li svg {
  color: var(--green)
}

/* ═══════════════ NEEDS (S5b) ═══════════════ */
.needs-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.needs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent)
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

@media(max-width:768px) {
  .needs-grid {
    grid-template-columns: 1fr
  }
}

.need-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, .06);
  transition: all .3s ease
}

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

.need-card.featured {
  background: linear-gradient(135deg, #194E86 0%, #0F3D6E 100%);
  color: var(--white);
  border-color: transparent;
  grid-row: span 2
}

@media(max-width:768px) {
  .need-card.featured {
    grid-row: span 1
  }
}

.need-emoji {
  font-size: 32px;
  margin-bottom: 14px;
  display: block
}

.need-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 10px;
  border-radius: 16px;
  margin-bottom: 12px
}

.need-card:not(.featured) .need-tag {
  background: var(--green-light);
  color: var(--green)
}

.need-card.featured .need-tag {
  background: rgba(201, 162, 45, .2);
  color: var(--gold)
}

.need-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px
}

.need-card:not(.featured) h3 {
  color: var(--text)
}

.need-card .need-desc {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 16px
}

.need-card:not(.featured) .need-desc {
  color: var(--text-light)
}

.need-card.featured .need-desc {
  color: rgba(255, 255, 255, .75)
}

.need-highlights {
  list-style: none;
  margin-bottom: 16px
}

.need-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  padding: 5px 0
}

.need-card:not(.featured) .need-highlights li {
  color: var(--text)
}

.need-card.featured .need-highlights li {
  color: rgba(255, 255, 255, .85)
}

.need-highlights .nh-icon {
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.5
}

.need-card:not(.featured) .nh-icon {
  color: var(--text)
}

.need-card.featured .nh-icon {
  color: var(--gold)
}

.need-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all .2s
}

.need-card:not(.featured) .need-cta {
  background: var(--green-light);
  color: var(--green)
}

.need-card:not(.featured) .need-cta:hover {
  background: var(--green);
  color: var(--white)
}

.need-card.featured .need-cta {
  background: var(--gold);
  color: var(--gold-dark)
}

.need-card.featured .need-cta:hover {
  background: #d4ad38
}

.needs-coming {
  margin-top: 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px dashed rgba(25, 78, 134, .2)
}

.needs-coming h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px
}

.needs-coming p {
  font-size: 13.5px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 16px
}

.coming-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.coming-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04)
}

/* ═══════════════ AGENTS STRIP (S5c) ═══════════════ */
.agents-strip {
  background: var(--blue-dark);
  padding: 52px 0;
  text-align: center
}

.agents-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 162, 45, .15);
  border: 1px solid rgba(201, 162, 45, .3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px
}

.agents-strip h2 {
  color: var(--white);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 8px
}

.agents-strip h2 span {
  color: var(--gold)
}

.agents-strip>.container>.reveal>p {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto 28px
}

.agents-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.agents-chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px
}

/* ═══════════════ QUOTE SECTION (S6) ═══════════════ */
.quote-section {
  background: var(--cream);
  padding: 80px 0
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

@media(max-width:768px) {
  .quote-grid {
    grid-template-columns: 1fr
  }
}

.quote-info h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px
}

.quote-info p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px
}

.quote-features {
  list-style: none
}

.quote-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0
}

.quote-features li .qf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.quote-widget {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow-lg)
}

.qw-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px
}

.qw-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.qw-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text)
}

.qw-header p {
  font-size: 12px;
  color: var(--text-light)
}

.quote-result {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.qr-label {
  font-size: 13px;
  color: var(--text-light)
}

.qr-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue)
}

.qr-time {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px
}

.qw-note {
  font-size: 11.5px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5
}

/* ═══════════════ PROCESS (S7) ═══════════════ */
.process {
  background: var(--white);
  padding: 80px 0
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
  border-radius: 2px
}

@media(max-width:768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-grid::before {
    display: none
  }
}

@media(max-width:480px) {
  .process-grid {
    grid-template-columns: 1fr
  }
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
  transition: all .3s
}

.step-card:nth-child(1) .step-number,
.step-card:nth-child(2) .step-number {
  background: var(--blue);
  color: var(--white)
}

.step-card:nth-child(3) .step-number {
  background: var(--gold);
  color: var(--gold-dark)
}

.step-card:nth-child(4) .step-number {
  background: var(--green);
  color: var(--white)
}

.step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.step-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto
}

/* ═══════════════ REVIEWS + LEAD CAPTURE (S8) ═══════════════ */
.reviews {
  background: var(--cream);
  padding: 80px 0
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px
}

@media(max-width:768px) {
  .reviews-grid {
    grid-template-columns: 1fr
  }
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 48px;
  color: rgba(25, 78, 134, .08);
  font-family: Georgia, serif;
  line-height: 1
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px
}

.review-stars span {
  color: var(--gold);
  font-size: 14px
}

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text)
}

.review-location {
  font-size: 12px;
  color: var(--text-light)
}

.lead-capture {
  background: linear-gradient(135deg, var(--green-light), #D4EDDA);
  border-radius: 20px;
  padding: 40px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

@media(max-width:768px) {
  .lead-capture {
    grid-template-columns: 1fr;
    padding: 28px
  }
}

.lc-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px
}

.lc-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65
}

.lc-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.lc-form .form-input {
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, .08)
}

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

@media(max-width:480px) {
  .lc-row {
    grid-template-columns: 1fr
  }
}

.lc-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5
}

.lc-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-light)
}

.lc-consent input {
  margin-top: 4px;
  accent-color: var(--green)
}

/* ═══════════════ STICKY BAR ═══════════════ */
.sticky-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: all .25s;
  text-decoration: none;
  border: 0;
  cursor: pointer
}

.sticky-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
  color: #fff
}

.sticky-btn svg {
  width: 20px;
  height: 20px
}

.sticky-ic {
  font-weight: 800
}

.sticky-btn--chat {
  background: var(--blue)
}

.sticky-btn--messenger {
  background: #0084FF
}

.sticky-btn--zalo {
  background: var(--blue);
  border: 2px solid var(--gold)
}

.sticky-btn--zalo:hover {
  background: var(--blue-dark)
}

@media(max-width:480px) {
  .sticky-lb {
    display: none
  }

  .sticky-btn--zalo .sticky-lb {
    display: inline
  }

  .sticky-btn {
    padding: 12px
  }
}

/* ═══════════════ CHATBOX panel (giữ từ bản cũ, restyle) ═══════════════ */
.chatbox {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 995;
  width: min(880px, calc(100vw - 24px));
  max-height: calc(100vh - 110px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.chatbox[hidden] {
  display: none
}

.chatbox__head {
  background: var(--blue);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.chatbox__title {
  display: flex;
  gap: 10px;
  align-items: center
}

.chatbox__title small {
  display: block;
  opacity: .8;
  font-size: 12px
}

.chatbox__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-head)
}

.chatbox__close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1
}

.chatbox__body {
  padding: 16px;
  height: 520px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px
}

.msg {
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 90%;
  word-wrap: break-word;
  overflow-wrap: anywhere
}

.msg--bot {
  background: #fff;
  border: 1px solid var(--line);
  align-self: flex-start;
  border-bottom-left-radius: 4px
}

.msg--user {
  background: var(--blue);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px
}

/* Trình bày nội dung bot (markdown → HTML) cho rõ ràng, lịch sự */
.msg--bot p {
  margin: 0 0 9px
}

.msg--bot p:last-child {
  margin-bottom: 0
}

.msg--bot ul {
  margin: 7px 0;
  padding-left: 20px
}

.msg--bot li {
  margin: 4px 0
}

.msg--bot strong {
  font-weight: 700;
  color: var(--blue)
}

.msg--bot a {
  color: var(--blue);
  text-decoration: underline
}

.chatbox__escalate {
  display: flex;
  gap: 8px;
  padding: 0 14px 12px;
  flex-wrap: wrap;
  background: var(--cream)
}

.chatbox__escalate[hidden] {
  display: none
}

.chatbox__form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line)
}

.chatbox__form input {
  flex: 1;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14px
}

/* ═══════════════ HOME BANNER CAROUSEL (3 slide — Gary 02/07/2026) ═══════════════ */
.igc {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #0F3D6E
}

.igc-prog-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, .14);
  z-index: 20
}

.igc-prog {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #C9A22D, #F5DE8E)
}

.igc-prog.run {
  animation: igc-prog var(--igc-interval, 5s) linear forwards
}

.igc-track {
  display: flex;
  width: 300%;
  transition: transform .65s cubic-bezier(.65, .02, .28, 1)
}

.igc-slide {
  flex: 0 0 33.3333%;
  min-height: 440px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.igc-slide.s1 {
  background: linear-gradient(120deg, #0F3D6E 0%, #194E86 55%, #1E5FA3 100%)
}

.igc-slide.s2 {
  background: linear-gradient(120deg, #0A5443 0%, #0F6E56 60%, #138A6B 100%)
}

.igc-slide.s3 {
  background: linear-gradient(120deg, #4A1A70 0%, #6B35A0 60%, #7E44B5 100%)
}

.igc-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 76px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}

.igc-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.igc-orb.a {
  top: -160px;
  right: 60px;
  width: 420px;
  height: 420px;
  animation: igc-drift 12s ease-in-out infinite
}

.igc-orb.b {
  bottom: -180px;
  left: -60px;
  width: 380px;
  height: 380px;
  animation: igc-drift 15s ease-in-out infinite reverse
}

.s1 .igc-orb.a {
  background: radial-gradient(circle, rgba(201, 162, 45, .20) 0%, transparent 70%)
}

.s1 .igc-orb.b {
  background: radial-gradient(circle, rgba(15, 110, 86, .18) 0%, transparent 70%)
}

.s2 .igc-orb.a {
  background: radial-gradient(circle, rgba(201, 162, 45, .16) 0%, transparent 70%)
}

.s2 .igc-orb.b {
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%)
}

.s3 .igc-orb.a {
  background: radial-gradient(circle, rgba(226, 184, 255, .14) 0%, transparent 70%)
}

.s3 .igc-orb.b {
  background: radial-gradient(circle, rgba(201, 162, 45, .12) 0%, transparent 70%)
}

.igc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 15px;
  border-radius: 22px;
  margin-bottom: 18px;
  white-space: nowrap
}

.s1 .igc-badge,
.s2 .igc-badge {
  background: rgba(201, 162, 45, .16);
  border: 1px solid rgba(201, 162, 45, .4);
  color: #EAC65A
}

.s3 .igc-badge {
  background: rgba(226, 184, 255, .16);
  border: 1px solid rgba(226, 184, 255, .4);
  color: #E2B8FF
}

.igc-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: igc-pulse 2.4s ease-out infinite
}

.s1 .igc-badge i,
.s2 .igc-badge i {
  background: #C9A22D
}

.s3 .igc-badge i {
  background: #E2B8FF
}

.igc-h {
  color: #fff;
  font-size: 48px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  font-family: var(--font-head)
}

.igc-h .sh {
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: igc-shimmer 4s linear infinite
}

.s1 .igc-h .sh,
.s2 .igc-h .sh {
  background-image: linear-gradient(90deg, #C9A22D, #F5DE8E, #C9A22D)
}

.s3 .igc-h .sh {
  background-image: linear-gradient(90deg, #E2B8FF, #F3E4FF, #E2B8FF)
}

.igc-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 22px
}

.igc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px
}

.igc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 10px
}

.igc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 12px;
  transition: transform .2s;
  text-decoration: none
}

.igc-cta:hover {
  transform: translateY(-2px)
}

.igc-cta.gold {
  background: linear-gradient(180deg, #D4AD38, #C9A22D);
  color: #412402;
  box-shadow: 0 10px 26px rgba(201, 162, 45, .42)
}

.igc-cta.white {
  background: #fff;
  color: #6B35A0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28)
}

.igc-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(6px)
}

.igc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}

.igc-live {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px
}

.s1 .igc-live,
.s2 .igc-live {
  color: #EAC65A
}

.s3 .igc-live {
  color: #E2B8FF
}

.igc-ref {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 600
}

/* slide 1 route */
.igc-route {
  position: relative;
  width: 100%;
  height: 180px
}

.igc-plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  offset-path: path('M40 145 Q210 10 380 92');
  animation: igc-glide 4.5s cubic-bezier(.45, .05, .55, .95) infinite
}

.igc-plane svg {
  transform: rotate(45deg)
}

.igc-dashed {
  animation: igc-dash 3s linear infinite
}

.igc-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 12px
}

.igc-status.green {
  background: rgba(15, 110, 86, .22);
  border: 1px solid rgba(109, 223, 184, .3)
}

.igc-status.ria {
  background: rgba(192, 57, 15, .18);
  border: 1px solid rgba(255, 191, 168, .3)
}

.igc-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: igc-pulse 2s ease-out infinite
}

.igc-status.green i {
  background: #6DDFB8;
  box-shadow: 0 0 8px #6DDFB8
}

.igc-status.ria i {
  background: #FFBFA8;
  box-shadow: 0 0 8px #FFBFA8
}

.igc-status b {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700
}

.igc-status span {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  margin-left: auto
}

/* slide 2 rate + money-to-door */
.igc-fav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 110, 86, .35);
  border: 1px solid rgba(109, 223, 184, .35);
  color: #8FEFC9;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px
}

.igc-rate2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 4px 0 6px
}

.igc-rate2 .lb {
  color: rgba(255, 255, 255, .6);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap
}

.igc-rate2 .num {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1
}

.igc-rate2 .cur {
  font-size: 15px;
  color: #EAC65A;
  font-weight: 700
}

.igc-scene {
  position: relative;
  width: 100%;
  height: 158px
}

.igc-doorstep {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.igc-groundline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent)
}

.igc-agent {
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, .35))
}

.igc-handzone {
  position: relative;
  width: 58px;
  height: 64px;
  align-self: center
}

.igc-cash {
  position: absolute;
  bottom: 14px;
  left: 2px;
  font-size: 21px;
  animation: igc-hand 2.8s ease-in-out infinite
}

.igc-recv {
  position: absolute;
  bottom: 40px;
  right: 2px;
  font-size: 15px;
  animation: igc-recv 2.8s ease-in-out infinite
}

.igc-recipwrap {
  position: relative
}

.igc-house {
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, .32))
}

.igc-recip {
  position: absolute;
  left: -22px;
  bottom: 0;
  font-size: 42px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .32))
}

.igc-sl {
  position: absolute;
  left: 14px;
  bottom: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap
}

.igc-sr {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #EAC65A;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap
}

/* slide 3 road + carrier row */
.igc-road {
  position: relative;
  width: 100%;
  height: 150px
}

.igc-1day {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201, 162, 45, .18);
  border: 1px solid rgba(201, 162, 45, .4);
  color: #EAC65A;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 14px;
  white-space: nowrap
}

.igc-dashed-road {
  animation: igc-dash 2.4s linear infinite
}

.igc-tl {
  position: absolute;
  left: 6px;
  top: 70px;
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 700
}

.igc-tr {
  position: absolute;
  right: 6px;
  top: 80px;
  color: #EAC65A;
  font-size: 12px;
  font-weight: 800
}

.igc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.igc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 11px 14px
}

.igc-row.best {
  background: rgba(201, 162, 45, .16);
  border: 1.5px solid rgba(201, 162, 45, .5)
}

.igc-row .lft {
  display: flex;
  align-items: center;
  gap: 10px
}

.igc-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

.igc-logo.txt {
  background: rgba(255, 255, 255, .14);
  font-size: 11px;
  color: #fff
}

.igc-logo.dhl {
  background: #fff;
  font-size: 10px;
  color: #6B35A0
}

.igc-logo.emj {
  background: rgba(255, 255, 255, .14);
  font-size: 16px
}

.igc-row .nm {
  color: #fff;
  font-size: 13px;
  font-weight: 700
}

.igc-row .tm {
  color: rgba(255, 255, 255, .55);
  font-size: 11px
}

.igc-row .pr {
  color: #fff;
  font-size: 15px;
  font-weight: 800
}

.igc-row.best .pr {
  color: #EAC65A;
  font-size: 16px
}

.igc-bestbadge {
  background: #C9A22D;
  color: #412402;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  margin-right: 8px
}

.igc-note {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  margin-top: 11px
}

/* controls */
.igc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s
}

.igc-arrow:hover {
  background: rgba(0, 0, 0, .42)
}

.igc-arrow.prev {
  left: 18px
}

.igc-arrow.next {
  right: 18px
}

.igc-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px
}

.igc-dot {
  height: 9px;
  width: 9px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, .45);
  transition: width .35s ease, background .35s ease
}

.igc-dot.on {
  width: 30px;
  background: #C9A22D
}

@keyframes igc-glide {
  0% {
    offset-distance: 0%;
    opacity: 0
  }

  8% {
    opacity: 1
  }

  92% {
    opacity: 1
  }

  100% {
    offset-distance: 100%;
    opacity: 0
  }
}

@keyframes igc-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .9
  }

  50% {
    transform: scale(1.9);
    opacity: 0
  }
}

@keyframes igc-shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

@keyframes igc-drift {
  0% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -24px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes igc-dash {
  to {
    stroke-dashoffset: -140
  }
}

@keyframes igc-prog {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes igc-hand {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0
  }

  16% {
    opacity: 1
  }

  54% {
    transform: translateX(40px) translateY(-3px);
    opacity: 1
  }

  70% {
    transform: translateX(40px) translateY(-3px);
    opacity: 0
  }

  100% {
    transform: translateX(0);
    opacity: 0
  }
}

@keyframes igc-recv {

  0%,
  45% {
    transform: scale(0);
    opacity: 0
  }

  60% {
    transform: scale(1.2);
    opacity: 1
  }

  80% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

@media(max-width:860px) {
  .igc-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 60px
  }

  .igc-h {
    font-size: 38px
  }

  .igc-card {
    max-width: 520px
  }

  .igc-arrow {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

  .igc-orb,
  .igc-plane,
  .igc-h .sh,
  .igc-dashed,
  .igc-dashed-road,
  .igc-badge i,
  .igc-status i,
  .igc-prog.run,
  .igc-cash,
  .igc-recv {
    animation: none
  }

  .igc-plane {
    offset-distance: 64%
  }

  .igc-cash {
    transform: translateX(20px)
  }
}

/* ═══════════════ AGENT FINDER MODAL (chọn khu vực trước khi vào /tim-dai-ly) ═══════════════ */
.agf-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 32, 54, .62);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.agf-overlay[hidden] {
  display: none
}

.agf-panel {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .5);
  animation: agf-in .25s ease
}

@keyframes agf-in {
  from {
    transform: translateY(14px);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

.agf-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  line-height: 1
}

.agf-close:hover {
  background: var(--blue);
  color: #fff
}

.agf-head {
  text-align: center;
  padding: 28px 24px 6px
}

.agf-ic {
  font-size: 34px;
  margin-bottom: 6px
}

.agf-head h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--text)
}

.agf-head p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px
}

.agf-body {
  overflow-y: auto;
  padding: 14px 24px 6px
}

.agf-prov {
  margin-bottom: 14px
}

.agf-prov-name {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 8px
}

.agf-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.agf-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 22px;
  background: var(--cream);
  border: 1.5px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s
}

.agf-city:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #EEF4FB
}

.agf-count {
  background: rgba(25, 78, 134, .1);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 9px
}

.agf-all {
  display: block;
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 8px
}

.agf-all:hover {
  background: var(--cream)
}

/* ═══════════════ INTERAC E-TRANSFER NOTICE ═══════════════ */
.interac-notice {
  background: #fffbf0;
  border: 1.5px solid rgba(201, 162, 45, .35);
  border-radius: var(--radius-sm, 12px);
  padding: 20px 22px;
  margin-top: 18px;
  text-align: left
}

.interac-notice .in-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.interac-notice .in-head img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex: none
}

.interac-notice .in-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text)
}

.interac-notice .in-sub {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 2px
}

.interac-notice .in-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 12px 14px;
  margin: 0 0 12px
}

.interac-notice .in-email {
  font-weight: 700;
  color: var(--blue);
  word-break: break-all
}

.interac-notice .in-steps {
  margin: 0;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55
}

.interac-notice .in-steps li {
  margin: 5px 0
}

.interac-notice .in-steps li::marker {
  color: var(--gold);
  font-weight: 700
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 56px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }
}

@media(max-width:480px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

.footer-brand .f-logo {
  margin-bottom: 10px
}

.footer-brand .f-logo img {
  height: 54px;
  width: auto;
  display: block
}

.footer-brand .f-tagline {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-bottom: 16px;
  font-style: italic
}

.footer-brand .f-contact {
  list-style: none
}

.footer-brand .f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  padding: 3px 0
}

.footer-brand .f-contact li svg {
  width: 14px;
  height: 14px;
  opacity: .5;
  flex-shrink: 0;
  margin-top: 3px
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px
}

.footer-col ul {
  list-style: none
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .7);
  display: block;
  padding: 4px 0;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: var(--gold)
}

.footer-muted {
  color: rgba(255, 255, 255, .6);
  font-size: 13px
}

/* Muted cho NỀN SÁNG (form/notice) — footer-muted là chữ trắng, chỉ dùng trên nền đậm */
.tk-muted {
  color: var(--text-light);
  font-size: 13px
}

.tk-ok {
  color: var(--green);
  font-size: 13px;
  font-weight: 600
}

/* Dấu * bắt buộc — đỏ đồng bộ toàn site (span.req + <label> có .req-mark) */
.req,
.req-mark {
  color: var(--req);
  font-weight: 700
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.footer-disclaimer {
  flex-basis: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .4)
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5)
}

/* ═══════════════ NOTICE (chờ kết nối API iG Link) + track timeline (main.js) ═══════════════ */
.notice {
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 16px
}

.notice--wait {
  background: #fff7e6;
  border: 1px solid #f0dca0
}

.notice--wait strong {
  color: var(--blue)
}

.notice--wait p {
  color: var(--text-light);
  margin: 6px 0 12px;
  font-size: 15px
}

.notice__cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.quote-price {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 16px;
  font-size: 18px
}

.quote-price strong {
  color: var(--green);
  font-family: var(--font-head)
}

.track-timeline {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  position: relative
}

.track-timeline li {
  position: relative;
  padding: 0 0 22px 28px;
  border-left: 2px solid var(--line)
}

.track-timeline li:last-child {
  border-left-color: transparent
}

.track-timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--green)
}

.track-timeline b {
  display: block;
  color: var(--blue)
}

.track-timeline span {
  font-size: 13px;
  color: var(--text-light)
}

/* ═══════════════ Tiện ích chung cho trang con ═══════════════ */
.page-hero {
  background: var(--blue);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 45, .1), transparent 70%);
  pointer-events: none
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero .overline {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  margin: 10px 0 12px
}

.page-hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  max-width: 620px
}

.section {
  padding: 72px 0
}

.section--cream {
  background: var(--cream)
}

.text-center {
  text-align: center
}

.lead {
  font-size: 18px;
  color: var(--text-light)
}

.badge {
  display: inline-block;
  background: var(--cream);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line)
}

/* ═══════════════ Home banner slider (SLICE 2) ═══════════════ */
/* Track ngang dịch bằng translateX; JS đặt --ig-banner-i = index slide đang hiện. */
.ig-banner-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: var(--cream);
  overflow: hidden
}

.ig-banner-viewport {
  overflow: hidden;
  width: 100%
}

.ig-banner-track {
  display: flex;
  width: 100%;
  transition: transform .5s ease;
  transform: translateX(calc(var(--ig-banner-i, 0) * -100%))
}

.ig-banner-slide {
  flex: 0 0 100%;
  min-width: 100%
}

/* Khung tỷ lệ cố định + object-fit cover → không layout shift, ảnh cao không lấn trang. */
.ig-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  background: var(--blue-light)
}

.ig-banner-link {
  display: block
}

/* Mũi tên prev/next — màu brand, focus rõ ràng. */
.ig-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(25, 78, 134, .55);
  transition: background .2s ease
}

.ig-banner-arrow:hover {
  background: var(--blue)
}

.ig-banner-arrow svg {
  width: 20px;
  height: 20px
}

.ig-banner-prev {
  left: 14px
}

.ig-banner-next {
  right: 14px
}

.ig-banner-arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px
}

/* Chấm điều hướng. */
.ig-banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px
}

.ig-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 0 0 1px rgba(25, 78, 134, .25);
  transition: background .2s ease, transform .2s ease
}

.ig-banner-dot:hover {
  background: #fff
}

.ig-banner-dot.is-active {
  background: var(--gold);
  transform: scale(1.15)
}

.ig-banner-dot:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px
}

@media(max-width:768px) {
  .ig-banner-img {
    aspect-ratio: 16 / 10
  }

  .ig-banner-arrow {
    width: 34px;
    height: 34px
  }

  .ig-banner-arrow svg {
    width: 17px;
    height: 17px
  }

  .ig-banner-prev {
    left: 8px
  }

  .ig-banner-next {
    right: 8px
  }
}

/* Tôn trọng người dùng giảm chuyển động — tắt hiệu ứng trượt. */
@media(prefers-reduced-motion:reduce) {
  .ig-banner-track {
    transition: none
  }
}