/* =========================================================
   Minh Nguyễn — Vận tải & Chuyển nhà
   Design tokens
   ========================================================= */

:root {
  /* Palette — Navy + Gold (default) */
  --navy-900: #061829;
  --navy-800: #0B2A4A;
  --navy-700: #133A60;
  --navy-600: #1E456E;
  --navy-100: #E6EBF1;

  --gold-500: #F5B400;
  --gold-400: #FFC940;
  --gold-300: #FFD15C;
  --gold-100: #FFF1C7;

  --paper:   #FBF8F2;
  --cream:   #F2EBDC;
  --cream-2: #EDE3CC;
  --ink:     #131313;
  --muted:   #6B6258;
  --line:    rgba(11, 42, 74, 0.12);
  --line-strong: rgba(11, 42, 74, 0.22);

  --success: #1F8A5B;
  --danger:  #C8341F;

  /* Type */
  --font-display: "Bricolage Grotesque", "Be Vietnam Pro", system-ui, sans-serif;
  --font-body:    "Be Vietnam Pro", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Density */
  --section-y: clamp(72px, 9vw, 140px);
  --container-max: 1280px;
  --container-pad: clamp(20px, 4vw, 56px);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

/* Palette: terracotta (warm editorial) */
[data-palette="warm"] {
  --navy-900: #1A1410;
  --navy-800: #2A2017;
  --navy-700: #3A2D21;
  --navy-600: #4F3D2D;
  --navy-100: #EDE6DA;
  --gold-500: #E0623C;
  --gold-400: #ED7D5A;
  --gold-300: #F19A7E;
  --gold-100: #F8DCCF;
  --paper:    #F7F1E6;
  --cream:    #ECE2CC;
  --cream-2:  #E2D4B6;
  --line:     rgba(42, 32, 23, 0.14);
}
/* Palette: classic red */
[data-palette="red"] {
  --navy-900: #1A0A0A;
  --navy-800: #2B0F0F;
  --navy-700: #3B1818;
  --navy-600: #4E2222;
  --navy-100: #F3E2E2;
  --gold-500: #D7263D;
  --gold-400: #E6364D;
  --gold-300: #EE5F72;
  --gold-100: #F8D6DC;
  --paper:    #FBF8F4;
  --cream:    #F2E9DE;
  --cream-2:  #E8D8C2;
  --line:     rgba(27, 10, 10, 0.14);
}

[data-density="compact"] {
  --section-y: clamp(48px, 6vw, 96px);
  --container-pad: clamp(16px, 3vw, 40px);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-y); }
@media (max-width: 600px) {
  .section { padding-block: clamp(40px, 6vw, 72px); }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.h-display { font-size: clamp(40px, 6.4vw, 88px); letter-spacing: -0.035em; }
.h-1 { font-size: clamp(34px, 4.4vw, 58px); }
.h-2 { font-size: clamp(26px, 3vw, 40px); }
.h-3 { font-size: clamp(20px, 2vw, 26px); }
.text-muted { color: var(--muted); }
.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5; color: var(--muted); max-width: 60ch; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .12s ease, background .18s ease, color .18s ease, box-shadow .2s ease;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .btn { height: 44px; padding: 0 16px; font-size: 13px; }
  .btn-lg { height: 48px; padding: 0 20px; font-size: 14px; }
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold-500); color: var(--navy-900); }
.btn-primary:hover { background: var(--gold-400); }
.btn-dark { background: var(--navy-800); color: var(--paper); }
.btn-dark:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { background: var(--navy-100); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 28px; font-size: 16px; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: var(--navy-100);
  color: var(--navy-800);
}
.pill.pill-gold { background: var(--gold-100); color: var(--navy-800); }
.pill.pill-dark { background: var(--navy-800); color: var(--gold-300); }

/* =========================================================
   Top utility bar
   ========================================================= */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-block: 10px; gap: 16px; flex-wrap: wrap; }
.topbar .links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .links a:hover { color: var(--gold-300); }
.topbar .badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); display: inline-block; margin-right: 8px; vertical-align: middle; }
@media (max-width: 768px) {
  .topbar { font-size: 12px; }
  .topbar .links { gap: 12px; }
  .topbar .badges { gap: 8px; }
}
@media (max-width: 480px) {
  .topbar .container { padding-block: 8px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .topbar { font-size: 11px; }
  .topbar .links { gap: 8px; }
  .topbar .badges { gap: 6px; }
  .topbar .badges a:not(:first-child):not(:nth-child(2)) { display: none; }
}

/* =========================================================
   Header / nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .nav-inner { gap: 12px; padding-block: 10px; }
}
@media (max-width: 768px) {
  .nav-inner { gap: 8px; flex-wrap: nowrap; }
  .nav-menu-btn { display: flex; }
  .nav-phone { display: none; }
  .nav-cta-btn { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 49;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px;
    gap: 2px;
    box-shadow: 0 12px 32px -8px rgba(11,42,74,.18);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 15px; border-radius: var(--radius); }
  .nav-links a:hover { background: var(--navy-100); }
  .nav-links-phone {
    display: flex; align-items: center; gap: 10px;
    margin-top: 8px;
    padding: 13px 14px !important;
    border-radius: var(--radius);
    background: var(--navy-800) !important;
    color: var(--paper) !important;
    font-weight: 600;
    font-size: 15px !important;
  }
}
@media (max-width: 480px) {
  .nav-inner { gap: 8px; padding-block: 10px; }
  .logo { font-size: 18px; gap: 8px; }
  .logo-mark { width: 32px; height: 32px; font-size: 15px; }
  .logo small { display: none; }
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--navy-900);
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--navy-800);
  color: var(--gold-400);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: ""; position: absolute; inset: auto -10% -50% -10%;
  height: 60%; background: var(--gold-500); opacity: .12;
  transform: rotate(-12deg);
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
/* Desktop nav */
@media (min-width: 769px) {
  .nav-links { display: flex; flex-direction: row; gap: 4px; position: static; box-shadow: none; border: none; padding: 0; background: transparent; }
}
/* Mobile: hidden by default, toggled via .open class */
@media (max-width: 768px) {
  .nav-links:not(.open) { display: none; }
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-800);
  transition: background .15s;
}
.nav-links a:hover { background: var(--navy-100); }
.nav-links a.active { background: var(--navy-800); color: var(--paper); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-links-phone { display: none; }
.nav-menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--navy-100);
  color: var(--navy-900);
  align-items: center; justify-content: center;
  flex: none;
}
.nav-overlay {
  position: fixed; inset: 0; z-index: 48;
  background: rgba(0,0,0,.18);
}
/* nav-links-phone only shows inside the mobile dropdown (handled in media query above) */
.nav-phone {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-phone .ringer {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  display: grid; place-items: center;
  color: var(--navy-900);
  animation: ring 2.4s ease-in-out infinite;
}
@keyframes ring {
  0%, 70%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  background:
    radial-gradient(ellipse at top right, rgba(245,180,0,.10), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--cream));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-trust { gap: 16px; margin-top: 28px; }
}

.hero h1 .accent { color: var(--gold-500); font-style: italic; font-family: var(--font-display); font-weight: 600; }
.hero h1 .underline {
  background-image: linear-gradient(transparent 68%, var(--gold-300) 0);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 6px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-800);
  color: var(--paper);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-tag .chip {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 12px; }
.hero-trust .num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy-900); letter-spacing: -0.03em; line-height: 1; }
.hero-trust .lbl { font-size: 12.5px; color: var(--muted); line-height: 1.3; max-width: 12ch; }
.hero-trust .divider { width: 1px; height: 32px; background: var(--line-strong); }

/* Quote calculator card */
.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 60px -28px rgba(11,42,74,.25), 0 2px 8px -4px rgba(11,42,74,.08);
  position: relative;
}
@media (max-width: 600px) {
  .quote-card { padding: 16px; }
  .quote-head h3 { font-size: 18px; }
}
.quote-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(245,180,0,.5), transparent 30%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}
.quote-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.quote-head h3 { font-family: var(--font-display); font-size: 20px; }
.quote-tabs { display: flex; gap: 6px; background: var(--cream); padding: 4px; border-radius: 999px; margin-bottom: 18px; flex-wrap: wrap; }
.quote-tabs button {
  flex: 1; padding: 10px 14px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--muted);
  transition: all .18s;
  white-space: nowrap;
  min-width: 100px;
}
@media (max-width: 600px) {
  .quote-tabs { padding: 2px; }
  .quote-tabs button { padding: 8px 10px; font-size: 12px; min-width: 80px; }
}
.quote-tabs button.active { background: var(--navy-800); color: var(--paper); }
.field { display: block; margin-bottom: 14px; }
.field-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.field-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-size: 15px;
  transition: border .15s, background .15s;
}
.field-input:focus { outline: none; border-color: var(--navy-800); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; gap: 10px; } }
.truck-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 900px) { .truck-options { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .truck-options { grid-template-columns: repeat(2, 1fr); } }
.truck-opt {
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  transition: all .15s;
  font-size: 12px;
  color: var(--muted);
}
.truck-opt .ic { display: block; margin: 0 auto 4px; width: 36px; height: 22px; }
.truck-opt .sz { font-weight: 700; color: var(--navy-900); font-family: var(--font-display); font-size: 15px; }
.truck-opt:hover { border-color: var(--line-strong); }
.truck-opt.selected { background: var(--navy-800); color: var(--paper); border-color: var(--navy-800); }
.truck-opt.selected .sz { color: var(--gold-300); }

.quote-result {
  margin-top: 18px;
  background: var(--navy-900);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .quote-result { padding: 14px; flex-direction: column; align-items: flex-start; }
  .quote-result .lbl { font-size: 11px; }
  .quote-result .price { font-size: 24px; }
  .quote-result a { width: 100%; }
}
.quote-result .lbl { font-size: 12px; color: var(--gold-300); text-transform: uppercase; letter-spacing: 0.1em; }
.quote-result .price { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; }
.quote-result .price small { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.6); margin-left: 4px; }

/* =========================================================
   Logo strip / trust
   ========================================================= */
.strip {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding-block: 28px;
}
.strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.strip-label { font-size: 12px; color: var(--gold-300); text-transform: uppercase; letter-spacing: 0.14em; }
.strip-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; opacity: .75; }
.strip-logos span { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: #fff; opacity: .7; }
.strip-logos span:nth-child(2) { font-style: italic; }
.strip-logos span:nth-child(4) { font-weight: 800; letter-spacing: -0.05em; }

/* =========================================================
   Services
   ========================================================= */
.services .head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
@media (max-width: 800px) { .services .head { grid-template-columns: 1fr; } }
.service-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.service-tab {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--navy-800);
  transition: all .18s;
  display: inline-flex; align-items: center; gap: 8px;
}
.service-tab:hover { border-color: var(--line-strong); }
.service-tab.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--paper); }
.service-tab .n { font-family: var(--font-display); color: var(--gold-500); font-weight: 700; font-size: 12px; }
.service-tab.active .n { color: var(--gold-300); }

.service-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .service-card { grid-template-columns: 1fr; } }
.service-card .num {
  position: absolute; top: 20px; right: 28px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 120px; color: var(--cream-2); letter-spacing: -0.05em; line-height: .8;
  pointer-events: none;
}
@media (max-width: 768px) {
  .service-card .num { font-size: 80px; right: 16px; top: 10px; }
}
@media (max-width: 480px) {
  .service-card .num { font-size: 60px; right: 10px; top: 8px; opacity: .3; }
}
.service-card h3 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 16px; color: var(--navy-900); }
@media (max-width: 600px) {
  .service-card h3 { font-size: 22px; }
  .service-list li { font-size: 14px; }
}
.service-card .desc { color: var(--muted); margin-bottom: 24px; max-width: 50ch; }
.service-list { display: grid; gap: 10px; margin-bottom: 28px; }
.service-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.service-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.2 5 8.6 9.5 3.6' fill='none' stroke='%23061829' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
  margin-top: 3px;
}

.service-visual {
  aspect-ratio: 4/3.2;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  color: var(--paper);
}
.service-visual .placeholder-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(0,0,0,.35);
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 3;
}

/* =========================================================
   Process / quy trình
   ========================================================= */
.process {
  background: var(--navy-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(245,180,0,.15), transparent 60%);
  pointer-events: none;
}
.process .container { position: relative; }
.process .head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
@media (max-width: 800px) { .process .head { grid-template-columns: 1fr; } }
.process h2 { color: var(--paper); }
.process .lede { color: rgba(255,255,255,.7); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.step:last-child { border-right: none; }
.step .n {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.step h4 { font-size: 19px; margin-bottom: 10px; color: var(--paper); }
.step p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.5; }

.step .ic {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--gold-300);
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing .head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
@media (max-width: 800px) { .pricing .head { grid-template-columns: 1fr; } }

.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border .2s;
}
.price-card:hover { border-color: var(--line-strong); }
.price-card.featured {
  background: var(--navy-900);
  color: var(--paper);
  border-color: var(--navy-900);
}
.price-card .tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.price-card.featured .tier { color: var(--gold-300); }
.price-card h3 { font-size: 24px; margin-bottom: 6px; }
.price-card.featured h3 { color: var(--paper); }
.price-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.price-card.featured .sub { color: rgba(255,255,255,.6); }
.price-card .amount {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; letter-spacing: -0.03em;
  margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 4px;
}
.price-card .amount small { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-card.featured .amount small { color: rgba(255,255,255,.6); }
.price-card .amount sup { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--gold-500); }
.price-card .from { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.price-card.featured .from { color: rgba(255,255,255,.55); }
.price-card .feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.price-card .feature-list li {
  display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px;
  padding-top: 12px; border-top: 1px dashed var(--line);
}
.price-card.featured .feature-list li { border-top-color: rgba(255,255,255,.1); }
.price-card .feature-list li:first-child { padding-top: 0; border-top: none; }
.price-card .feature-list li svg { flex: none; margin-top: 3px; color: var(--gold-500); }
.price-card.featured .feature-list li svg { color: var(--gold-400); }
.price-card .ribbon {
  position: absolute; top: 24px; right: 24px;
  background: var(--gold-500); color: var(--navy-900);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 10px; border-radius: 999px;
}

/* Truck size pricing table */
.price-table-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
.price-table-head {
  display: flex; align-items: end; justify-content: space-between; margin-bottom: 24px; gap: 20px; flex-wrap: wrap;
}
.price-table-head h3 { font-size: 26px; }
.price-table {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-size: 12px; font-weight: 600;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--cream);
}
.price-table td.amt { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--navy-900); }
@media (max-width: 768px) {
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 12px 10px; }
  .price-table th { font-size: 10px; }
  .price-table td.amt { font-size: 14px; }
}
@media (max-width: 480px) {
  .price-table-wrap { padding: 16px; }
  .price-table-head { gap: 10px; margin-bottom: 16px; }
  .price-table-head h3 { font-size: 20px; }
  .price-table { font-size: 11px; }
  .price-table th, .price-table td { padding: 8px 6px; }
  .price-table th { font-size: 9px; }
  .price-table td.amt { font-size: 12px; }
  .truck-cell { gap: 6px; }
  .truck-cell .ic { width: 32px; height: 20px; }
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--gold-100); }
.truck-cell { display: flex; align-items: center; gap: 14px; }
.truck-cell .ic { width: 44px; height: 28px; flex: none; }

.price-table th { vertical-align: bottom; }
.price-table .contact-row td { background: var(--cream); }
.price-table .contact-row:hover td { background: var(--cream); }
.price-table .contact-row a:hover { color: var(--gold-500) !important; }

/* =========================================================
   Why us / commitments
   ========================================================= */
.why .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .why .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why .grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.why-card .ic-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-500);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.why-card h4 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* =========================================================
   Coverage map
   ========================================================= */
.coverage {
  background: var(--cream);
}
.coverage .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 900px) { .coverage .grid { grid-template-columns: 1fr; } }
.map-frame {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -28px rgba(11,42,74,.2);
}
.map-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(11,42,74,.025) 14px 15px),
    radial-gradient(ellipse at 60% 50%, rgba(245,180,0,.07), transparent 50%),
    var(--paper);
}
.district-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.district-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--navy-800);
  display: inline-flex; align-items: center; gap: 6px;
}
.district-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews .head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
@media (max-width: 800px) { .reviews .head { grid-template-columns: 1fr; } }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.review .stars { color: var(--gold-500); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.review blockquote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 24px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  flex: 1;
}
.review .by { display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--navy-800);
  display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-display);
  font-size: 16px;
}
.review .name { font-weight: 600; font-size: 14px; }
.review .meta { font-size: 12px; color: var(--muted); }

/* =========================================================
   Gallery — Hình ảnh thực tế
   ========================================================= */
.gallery { background: var(--cream); }

.gallery-head-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(36px, 4vw, 56px);
}
.gallery-head-center .eyebrow { justify-content: center; margin-bottom: 18px; }
.gallery-title {
  font-size: clamp(30px, 5vw, 60px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: var(--navy-900);
  text-wrap: balance;
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
@media (max-width: 900px) { .gallery-photos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-photos { grid-template-columns: 1fr; gap: 12px; } }

.gallery-photos .photo {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-100);
  box-shadow: 0 14px 34px -26px rgba(11,42,74,.34);
}
.gallery-photos .photo image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.gallery-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  margin-top: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 900px) { .gallery-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-features { grid-template-columns: 1fr; gap: 10px; } }

.feat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
@media (max-width: 600px) {
  .feat-card { padding: 14px 16px; gap: 12px; }
  .feat-card .ic { width: 40px; height: 40px; }
  .feat-card h4 { font-size: 14px; }
  .feat-card p { font-size: 12px; }
}
.feat-card .ic {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-500);
  display: grid; place-items: center;
}
.feat-card h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.feat-card p { font-size: 13px; color: var(--muted); line-height: 1.35; }

.gallery-note {
  margin-top: 26px;
  text-align: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.gallery-note svg { flex: none; color: var(--gold-500); }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--navy-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(245,180,0,.15), transparent 60%);
}
.cta-banner .container { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding-block: 80px; }
@media (max-width: 800px) { .cta-banner .container { grid-template-columns: 1fr; padding-block: 56px; } }
.cta-banner h2 { font-size: clamp(32px, 4vw, 54px); color: var(--paper); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 50ch; margin-bottom: 28px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .actions .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,.25); }
.cta-banner .actions .btn-ghost:hover { background: rgba(255,255,255,.08); }
.cta-phone-card {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255,255,255,.03);
}
.cta-phone-card .lbl { font-size: 12px; color: var(--gold-300); text-transform: uppercase; letter-spacing: 0.14em; }
.cta-phone-card .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 10px; }
.cta-phone-card .hours { font-size: 13px; color: rgba(255,255,255,.7); }

/* =========================================================
   Contact form
   ========================================================= */
.contact .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 800px) { .contact .grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 18px; align-content: start; margin-top: 28px; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: grid; place-items: center;
}
.contact-info .row .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-info .row .val { font-size: 16px; color: var(--navy-900); font-weight: 500; }
.contact-info .row .val.lg { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.contact-form h3 { font-size: 24px; margin-bottom: 6px; }
.contact-form .sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

textarea.field-input { height: auto; padding: 12px 14px; min-height: 100px; resize: vertical; line-height: 1.45; }
select.field-input { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%236B6258' stroke-width='1.5' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-success {
  display: flex; align-items: center; gap: 14px;
  background: var(--gold-100); color: var(--navy-900);
  padding: 16px; border-radius: var(--radius);
  font-size: 14.5px; margin-top: 14px;
}
.form-success svg { flex: none; color: var(--success); }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding-block: 64px 24px;
  font-size: 14px;
}
.footer .grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 800px) { .footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer .grid { grid-template-columns: 1fr; } }
.footer h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-300); margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--gold-300); }
.footer .brand-block { color: rgba(255,255,255,.85); }
.footer .brand-block .logo { color: var(--paper); margin-bottom: 16px; }
.footer .brand-block p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 38ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   Floating quick contact
   ========================================================= */
.float-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.float-call .bubble {
  background: var(--gold-500);
  color: var(--navy-900);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 32px -10px rgba(245,180,0,.5);
  position: relative;
  flex: none;
}
@media (max-width: 768px) {
  .float-call { bottom: 20px; right: 20px; gap: 8px; }
  .float-call .bubble { width: 56px; height: 56px; }
}
@media (max-width: 480px) {
  .float-call { bottom: 90px; right: 16px; gap: 6px; }
  .float-call .bubble { width: 50px; height: 50px; font-size: 20px; }
  .float-call .bubble::before { inset: -5px; }
}
.float-call .bubble::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: .4;
  animation: pulse 1.6s ease-out infinite;
  z-index: -1;
}
.float-call .bubble.zalo { background: var(--navy-800); color: var(--gold-300); box-shadow: 0 14px 32px -10px rgba(11,42,74,.4); }
.float-call .bubble.zalo::before { background: var(--navy-800); }
@keyframes pulse {
  0%   { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Selection */
::selection { background: var(--gold-300); color: var(--navy-900); }

/* Imagery toggle */
[data-imagery="off"] .service-visual,
[data-imagery="off"] .gallery,
[data-imagery="off"] .truck-illu-wrap,
[data-imagery="off"] .map-illustration {
  display: none !important;
}
