/* CG CARGO — Orange & White Design System */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --orange-50: #FFF7ED;
  --orange-100: #FFEDD5;
  --orange-200: #FED7AA;
  --orange-300: #FDBA74;
  --orange-400: #FB923C;
  --orange-500: #F97316;
  --orange-600: #EA580C;
  --orange-700: #C2410C;
  --orange-800: #9A3412;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(249,115,22,.12), 0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-orange: 0 8px 30px rgba(249,115,22,.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-display: 'Outfit', 'IBM Plex Sans Thai', sans-serif;
  --font-body: 'IBM Plex Sans Thai', 'Outfit', sans-serif;
  --header-h: 72px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  gap: .75rem;
}
.header .container.header__inner,
.header__inner.container {
  max-width: 1280px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gray-900);
}
.logo__icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: var(--shadow-orange);
}
.logo span { color: var(--orange-600); }

.nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav__link {
  padding: .4rem .55rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
  line-height: 1.3;
}
.nav__link:hover, .nav__link.active {
  color: var(--orange-600);
  background: var(--orange-50);
}

/* Dropdown: คู่มือ (ตลาด + โรงแรม) */
.nav__dropdown {
  position: relative;
  flex-shrink: 0;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .4rem .55rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav__dropdown-toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .6;
  margin-top: 1px;
}
.nav__dropdown-toggle:hover,
.nav__dropdown.open .nav__dropdown-toggle,
.nav__dropdown-toggle.active {
  color: var(--orange-600);
  background: var(--orange-50);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 180px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1100;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: .65rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.active {
  color: var(--orange-600);
  background: var(--orange-50);
}

.header__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  font-size: .925rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249,115,22,.35);
}
.btn--outline {
  border: 2px solid var(--orange-500);
  color: var(--orange-600);
  background: transparent;
}
.btn--outline:hover {
  background: var(--orange-50);
}
.btn--white {
  background: white;
  color: var(--orange-600);
  box-shadow: var(--shadow-lg);
}
.btn--white:hover { transform: translateY(-2px); }
.btn--lg { padding: .85rem 1.75rem; font-size: 1rem; }
.btn--sm { padding: .45rem 1rem; font-size: .85rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 50%, var(--orange-50) 100%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: white;
  border: 1px solid var(--orange-200);
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 500;
  color: var(--orange-700);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange-600);
}
.hero__stat-label { font-size: .85rem; color: var(--gray-500); }
.hero__visual {
  position: relative;
}
.hero__visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--orange-200);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: -1;
}

/* ─── Section ─── */
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--orange { background: linear-gradient(135deg, var(--orange-600), var(--orange-700)); color: white; }
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section__tag {
  display: inline-block;
  padding: .35rem 1rem;
  background: var(--orange-100);
  color: var(--orange-700);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section--orange .section__tag {
  background: rgba(255,255,255,.2);
  color: white;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section--orange .section__title { color: white; }
.section__desc {
  color: var(--gray-500);
  font-size: 1.05rem;
}
.section--orange .section__desc { color: rgba(255,255,255,.85); }

/* ─── Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange-200);
}
.card__img {
  height: 200px;
  overflow: hidden;
  background: var(--orange-50);
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1.5rem; }
.card__icon {
  width: 48px; height: 48px;
  background: var(--orange-100);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}
.card__text { color: var(--gray-500); font-size: .925rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--orange-600);
  transition: var(--transition);
}
.card__link:hover { gap: .6rem; }

/* ─── Feature Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-lg);
}
.feature__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--gray-900);
}
.feature__text { font-size: .9rem; color: var(--gray-500); }

/* ─── Process Steps ─── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.process__item {
  position: relative;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  counter-increment: step;
}
.process__item::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  box-shadow: var(--shadow-orange);
}
.process__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gray-900);
}
.process__text { font-size: .9rem; color: var(--gray-500); }

/* ─── Rates Table ─── */
.rates-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 600px;
}
.rates-table th {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: .925rem;
}
.rates-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: .925rem;
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:hover td { background: var(--orange-50); }
.rates-table .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange-600);
  font-size: 1.05rem;
}

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--orange-200); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange-500);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.8;
}

/* ─── Contact Form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  width: 48px; height: 48px;
  background: var(--orange-100);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: .15rem;
}
.contact-info__value {
  font-weight: 600;
  color: var(--gray-800);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: .95rem;
  transition: var(--transition);
  background: white;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--orange-400);
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ─── Tracking ─── */
.tracking-box {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.tracking-input-group {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.tracking-input-group .form-input { flex: 1; }
.tracking-result {
  margin-top: 2rem;
  text-align: left;
  display: none;
}
.tracking-result.show { display: block; }
.tracking-timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 1.5rem;
}
.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: var(--orange-200);
}
.tracking-step {
  position: relative;
  padding-bottom: 1.5rem;
}
.tracking-step::before {
  content: '';
  position: absolute;
  left: -2rem; top: 4px;
  width: 16px; height: 16px;
  background: var(--orange-500);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--orange-300);
}
.tracking-step.done::before { background: var(--orange-600); }
.tracking-step.pending::before { background: var(--gray-300); box-shadow: none; }
.tracking-step__title { font-weight: 600; color: var(--gray-800); }
.tracking-step__time { font-size: .85rem; color: var(--gray-500); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--orange-50), var(--white));
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .75rem;
}
.page-hero__desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--orange-600); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 4rem 0;
  text-align: center;
}
.cta-banner__inner {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: .75rem;
  position: relative;
}
.cta-banner__desc {
  opacity: .9;
  margin-bottom: 2rem;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── Footer ─── */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: var(--gray-400);
  padding: 0 0 1.75rem;
  border-top: 3px solid var(--orange-500);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  max-width: 420px;
}
.footer__brand .logo {
  color: white;
  margin-bottom: .65rem;
}
.footer__brand p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-400);
}
.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.footer__actions .btn--sm {
  white-space: nowrap;
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: white;
  font-weight: 600;
  font-size: .9rem;
  padding: .55rem .9rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.footer__phone:hover {
  color: var(--orange-400);
  border-color: var(--orange-500);
  background: rgba(249, 115, 22, .1);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  padding: 2.25rem 0;
}
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links {
  display: grid;
  gap: .55rem;
}
.footer__links a,
.footer__links span {
  font-size: .9rem;
  color: var(--gray-400);
  transition: var(--transition);
  display: inline-block;
}
.footer__links a:hover { color: var(--orange-400); }
.footer__contact {
  display: grid;
  gap: .7rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--gray-400);
}
.footer__contact-item a {
  color: inherit;
  transition: var(--transition);
}
.footer__contact-item a:hover { color: var(--orange-400); }
.footer__contact-icon {
  width: 1.5rem;
  flex-shrink: 0;
  text-align: center;
  opacity: .85;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  font-size: .8rem;
  color: var(--gray-500);
}
.footer__bottom-tag {
  color: var(--orange-400);
  font-weight: 600;
}

/* legacy grid kept for safety if any page still uses it */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-top: 2.5rem;
}
.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--orange-600);
  color: white;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 1.5rem;
  background: var(--orange-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange-500);
}
.value-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .35rem;
}
.value-card__text { font-size: .9rem; color: var(--gray-600); }

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 1001;
  transform: translateY(-1rem);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  visibility: hidden;
  pointer-events: none;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.nav-open .mobile-nav {
  display: block;
}
.mobile-nav .nav__link {
  display: block;
  padding: .85rem 1rem;
  font-size: 1rem;
  white-space: normal;
}
.mobile-nav .btn { width: 100%; margin-top: .5rem; }

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; max-width: 500px; margin: 0 auto; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .nav, .header__actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .logo { min-width: 0; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .tracking-input-group { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 1.5rem; }
  .cta-banner__inner { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS PAGE
   ═══════════════════════════════════════════ */

.hiw-hero {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: linear-gradient(160deg, var(--orange-50) 0%, var(--white) 45%, var(--orange-50) 100%);
  position: relative;
  overflow: hidden;
}
.hiw-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hiw-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hiw-hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hiw-stat {
  text-align: center;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--orange-100);
  box-shadow: var(--shadow-sm);
  min-width: 90px;
}
.hiw-stat__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-600);
  line-height: 1.2;
}
.hiw-stat__label {
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: .2rem;
}
.hiw-hero__visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Route bar */
.hiw-route {
  padding: 2rem 0;
  background: white;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.hiw-route__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.hiw-route__point {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.hiw-route__point--start { background: var(--orange-100); color: var(--orange-800); }
.hiw-route__point--end { background: var(--orange-500); color: white; }
.hiw-route__arrow {
  color: var(--orange-400);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Timeline */
.hiw-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.hiw-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-200));
  border-radius: 3px;
}
.hiw-step {
  position: relative;
  padding-left: 5rem;
  padding-bottom: 3.5rem;
}
.hiw-step:last-child { padding-bottom: 0; }
.hiw-step__marker {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: var(--shadow-orange);
  z-index: 1;
  border: 4px solid white;
}
.hiw-step__card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}
.hiw-step__card:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-xl);
  transform: translateX(4px);
}
.hiw-step__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1rem;
  flex-wrap: wrap;
}
.hiw-step__icon {
  font-size: 2rem;
  line-height: 1;
}
.hiw-step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .25rem;
}
.hiw-step__time {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  background: var(--orange-50);
  color: var(--orange-700);
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.hiw-step__body {
  padding: 0 1.75rem 1.5rem;
}
.hiw-step__desc {
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}
.hiw-step__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hiw-step__col {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: .875rem;
}
.hiw-step__col--you {
  background: var(--gray-50);
  border-left: 3px solid var(--gray-300);
}
.hiw-step__col--cg {
  background: var(--orange-50);
  border-left: 3px solid var(--orange-500);
}
.hiw-step__col-label {
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  color: var(--gray-500);
}
.hiw-step__col--cg .hiw-step__col-label { color: var(--orange-600); }
.hiw-step__col ul {
  list-style: none;
  color: var(--gray-600);
}
.hiw-step__col li {
  padding: .2rem 0 .2rem 1.1rem;
  position: relative;
}
.hiw-step__col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-size: .75rem;
  font-weight: 700;
}
.hiw-step__col--you li::before { content: '→'; color: var(--gray-400); }

/* Shipping compare */
.hiw-shipping {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hiw-ship-card {
  background: white;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.hiw-ship-card:hover {
  border-color: var(--orange-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hiw-ship-card--featured {
  border-color: var(--orange-500);
  background: linear-gradient(180deg, var(--orange-50), white);
}
.hiw-ship-card--featured::before {
  content: 'แนะนำ';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .75rem;
  border-radius: var(--radius-full);
}
.hiw-ship-card__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.hiw-ship-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: .35rem;
}
.hiw-ship-card__time {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-600);
  font-family: var(--font-display);
  margin-bottom: .5rem;
}
.hiw-ship-card__desc {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.hiw-ship-card__price {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  padding-top: .75rem;
  border-top: 1px dashed var(--gray-200);
}

/* Docs checklist */
.hiw-docs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.hiw-doc {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.hiw-doc:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-md);
}
.hiw-doc__check {
  width: 28px; height: 28px;
  background: var(--orange-100);
  color: var(--orange-600);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.hiw-doc__title {
  font-weight: 600;
  color: var(--gray-800);
  font-size: .95rem;
  margin-bottom: .2rem;
}
.hiw-doc__desc {
  font-size: .85rem;
  color: var(--gray-500);
}

/* Tips grid */
.hiw-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.hiw-tip {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.hiw-tip:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-lg);
}
.hiw-tip__num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: white;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
}
.hiw-tip__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .35rem;
  font-size: 1rem;
}
.hiw-tip__text {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .hiw-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hiw-hero__stats { justify-content: center; }
  .hiw-hero__visual { order: -1; max-width: 560px; margin: 0 auto; }
  .hiw-shipping { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hiw-step__cols { grid-template-columns: 1fr; }
  .hiw-step { padding-left: 4rem; }
  .hiw-step__marker { width: 48px; height: 48px; font-size: 1.15rem; }
  .hiw-timeline::before { left: 22px; }
  .hiw-route__inner { gap: .35rem; }
  .hiw-route__arrow { display: none; }
}
