:root {
  --th-green: #1f5c3a;
  --th-green-dark: #144229;
  --th-green-soft: #e8f3ec;
  --th-earth: #a46436;
  --th-accent: #d97706;
  --th-ink: #1a2e22;
  --th-muted: #5b6b61;
  --th-bg: #f6f8f5;
  --th-surface: #ffffff;
  --th-line: rgba(31, 92, 58, 0.12);
  --th-shadow: 0 10px 30px rgba(20, 66, 41, 0.08);
  --th-radius: 14px;
  --th-font: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --th-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --th-header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  font-family: var(--th-font);
  color: var(--th-ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(31, 92, 58, 0.08), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(164, 100, 54, 0.08), transparent 55%),
    var(--th-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--th-green);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--th-green);
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover,
a:focus {
  color: var(--th-earth);
}

#main-content {
  outline: none;
}

/* Sticky header */
.header_section {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(246, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.header_section.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--th-line);
  box-shadow: 0 6px 20px rgba(20, 66, 41, 0.08);
}

.hero_area {
  height: auto !important;
  min-height: 0;
  background: transparent;
  padding-bottom: 8px;
}

.custom_nav-container {
  padding: 10px 0 !important;
}

.navbar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background-color 0.35s ease;
  isolation: isolate;
  overflow: hidden;
}
.navbar-brand.brand-motion {
  opacity: 1;
  transform: none;
  animation: none;
}
.navbar-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(232, 243, 236, 0.55) 55%, rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(31, 92, 58, 0.16);
  z-index: -1;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.navbar-brand::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 45%;
  height: 180%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  animation: th-brand-shine 4.8s ease-in-out 1.2s infinite;
  pointer-events: none;
  z-index: 2;
}
.brand-logo-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.brand-logo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1f5c3a, #d97706, #7cb518, #1f5c3a);
  animation: th-logo-spin 5.5s linear infinite;
  opacity: 0.85;
}
.brand-logo-ring::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #f6f8f5;
}
.navbar-brand img,
.navbar-brand picture,
.navbar-brand picture img {
  position: relative;
  z-index: 1;
  width: 52px !important;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #e8f3ec 100%);
  box-shadow: 0 8px 20px rgba(20, 66, 41, 0.22);
  animation: th-logo-float 2.8s ease-in-out 0.9s infinite;
}
.navbar-brand picture {
  display: block;
  padding: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}
.footer-logo picture {
  display: block;
  line-height: 0;
}
.footer-logo picture img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 6px 16px rgba(20, 66, 41, 0.12);
  border: 1px solid #e5e5e5;
}
.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar-brand .brand-name {
  font-family: var(--th-display);
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  font-weight: 800;
  color: var(--th-green-dark);
  margin: 0;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.navbar-brand .brand-name-text {
  display: inline-block;
  background: linear-gradient(90deg, #144229 0%, #1f5c3a 35%, #a46436 50%, #1f5c3a 65%, #144229 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: th-name-shimmer 5s ease-in-out 1.4s infinite;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(31, 92, 58, 0.18));
}
.navbar-brand .brand-tag {
  font-size: 0.73rem;
  font-weight: 600;
  color: #335442;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  animation: th-tag-in 0.7s ease 0.55s forwards;
}
.navbar-brand:hover,
.navbar-brand:focus {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(20, 66, 41, 0.2);
  background-color: rgba(255, 255, 255, 0.55);
}
.navbar-brand:hover::before,
.navbar-brand:focus::before {
  border-color: rgba(31, 92, 58, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.navbar-brand:hover .brand-text,
.navbar-brand:focus .brand-text {
  transform: translateX(3px);
}
.navbar-brand:hover img,
.navbar-brand:focus img {
  animation: th-logo-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1), th-logo-float 2.4s ease-in-out 0.55s infinite;
  box-shadow: 0 12px 28px rgba(20, 66, 41, 0.3);
}
.navbar-brand:hover .brand-logo-ring,
.navbar-brand:focus .brand-logo-ring {
  animation-duration: 2.2s;
  opacity: 1;
  filter: saturate(1.25);
}
.navbar-brand:hover .brand-name-text,
.navbar-brand:focus .brand-name-text {
  animation-duration: 2.2s;
}
.header_section.is-scrolled .navbar-brand {
  box-shadow: 0 12px 26px rgba(20, 66, 41, 0.16);
}

@keyframes th-brand-enter {
  0% { opacity: 0; transform: translateY(-12px) scale(0.94); }
  60% { opacity: 1; transform: translateY(2px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes th-brand-shine {
  0%, 55% { left: -60%; opacity: 0; }
  60% { opacity: 0.7; }
  75% { left: 120%; opacity: 0.35; }
  100% { left: 120%; opacity: 0; }
}
@keyframes th-logo-spin {
  to { transform: rotate(360deg); }
}
@keyframes th-logo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(0deg); }
  75% { transform: translateY(-3px) rotate(2deg); }
}
@keyframes th-logo-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.12) rotate(-4deg); }
  70% { transform: scale(1.05) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes th-name-shimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}
@keyframes th-tag-in {
  to { opacity: 0.92; transform: translateY(0); }
}

.custom_nav-container.navbar-expand-lg .navbar-nav {
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item {
  flex: 0 0 auto;
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 16px !important;
  color: var(--th-ink) !important;
  font-weight: 600 !important;
  font-size: 0.95rem;
  line-height: 1.2;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:focus {
  background: var(--th-green-soft);
  color: var(--th-green-dark) !important;
  font-weight: 600 !important;
  border-color: rgba(31, 92, 58, 0.14);
  transform: none;
}
.custom_nav-container.navbar-expand-lg .active .nav-link,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link.active {
  background: var(--th-green-soft);
  color: var(--th-green-dark) !important;
  font-weight: 600 !important;
  border-color: rgba(31, 92, 58, 0.22);
}

/* Desktop: luôn hiện menu, tránh flash co/giãn khi load trang */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse,
  .navbar-expand-lg .navbar-collapse.collapse,
  .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: flex !important;
    height: auto !important;
    visibility: visible !important;
    overflow: visible !important;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
  .custom_nav-container.navbar-expand-lg .navbar-nav {
    flex-direction: row !important;
  }
  .custom_nav-container .d-flex.flex-column.flex-lg-row {
    flex-direction: row !important;
    align-items: center !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .navbar-collapse.collapse.show {
    display: block !important;
  }
}

.custom_nav-container .navbar-toggler {
  border: 1px solid var(--th-line);
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 44px;
  min-height: 44px;
}
.custom_nav-container .navbar-toggler.is-open {
  background: rgba(31, 92, 58, 0.08);
}
.navbar-nav .nav-item {
  list-style: none;
}
.custom_nav-container .navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* Hero / slider */
.slider_section {
  padding: 24px 0 40px !important;
}
.slider_item-detail h1 {
  font-family: var(--th-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem) !important;
  font-weight: 700;
  color: var(--th-green-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.slider_item-detail p {
  margin: 1rem 0 1.5rem !important;
  color: var(--th-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 36rem;
}
.slider_img-box {
  width: 100% !important;
  max-width: 520px;
  margin-left: auto;
}
.slider_img-box > div,
.th-media,
.fruit_img-box,
.client_img-box,
.service_section .card .th-media {
  --th-frame-radius: 20px;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--th-frame-radius);
  padding: 10px;
  box-sizing: border-box;
  background:
    radial-gradient(120% 90% at 10% 0%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(145deg, #e8f3ec 0%, #f7faf7 45%, #efe7dc 100%);
  border: 1px solid rgba(31, 92, 58, 0.12);
  box-shadow: 0 14px 34px rgba(20, 66, 41, 0.12);
  transform: translateZ(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}
.slider_img-box > div::before,
.th-media::before,
.fruit_img-box::before,
.client_img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.42), transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 2;
}
.slider_img-box:hover > div,
.th-media:hover,
.fruit_section .row.layout_padding2:hover .fruit_img-box,
.service_section .card:hover .th-media,
.client_img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 66, 41, 0.18);
  border-color: rgba(31, 92, 58, 0.24);
}
.slider_img-box:hover > div::before,
.th-media:hover::before,
.fruit_section .row.layout_padding2:hover .fruit_img-box::before,
.client_img-box:hover::before {
  animation: th-media-shine 1.1s ease;
}
.slider_img-box img,
.th-media img,
.fruit_img-box img,
.client_img-box img,
.service_section .card .card-img-top {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  padding: 0 !important;
  margin: 0;
  background: transparent;
  border-radius: calc(var(--th-frame-radius, 20px) - 6px);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(1.02) contrast(1.02);
}
.slider_img-box:hover img,
.th-media:hover img,
.fruit_section .row.layout_padding2:hover .fruit_img-box img,
.service_section .card:hover .card-img-top,
.client_img-box:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

@keyframes th-media-shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.custom_dark-btn,
.custom_orange-btn,
.btn-th,
.btn-th-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px !important;
  width: auto !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.custom_dark-btn,
.btn-th {
  background: var(--th-green) !important;
  border: 1px solid var(--th-green) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(31, 92, 58, 0.25);
}
.custom_dark-btn:hover,
.btn-th:hover {
  background: var(--th-green-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-th-outline,
.custom_orange-btn {
  background: #fff !important;
  border: 2px solid #6b3a18 !important;
  color: #6b3a18 !important;
}
.btn-th-outline:hover,
.custom_orange-btn:hover {
  background: #6b3a18 !important;
  border-color: #6b3a18 !important;
  color: #fff !important;
}
.article-cta .btn-th-outline,
.footer-cta .btn-th-outline {
  border-color: var(--th-green-dark) !important;
  color: var(--th-green-dark) !important;
}
.article-cta .btn-th-outline:hover,
.footer-cta .btn-th-outline:hover {
  background: var(--th-green-dark) !important;
  border-color: var(--th-green-dark) !important;
  color: #fff !important;
}

.custom_heading {
  font-family: var(--th-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--th-green-dark);
  position: relative;
  margin-bottom: 0.75rem;
  text-transform: none !important;
}
.custom_heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--th-green), var(--th-earth));
}
.custom_heading-text {
  color: var(--th-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center !important;
}

.layout_padding {
  padding: 56px 0 !important;
}

/* Cards */
.service_section .card-deck {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service_section .card-deck .card {
  margin: 0 !important;
  border: 1px solid var(--th-line);
  border-radius: var(--th-radius) !important;
  overflow: hidden;
  background: var(--th-surface);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service_section .card::after {
  display: none !important;
}
.service_section .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--th-shadow);
  border-color: rgba(31, 92, 58, 0.28);
}
.service_section .card .th-media {
  --th-frame-radius: var(--th-radius);
  border-radius: var(--th-radius) var(--th-radius) 0 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 92, 58, 0.08);
  box-shadow: none;
  padding: 12px;
}
.service_section .card .card-img-top {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto;
  object-fit: contain !important;
  display: block;
  padding: 0 !important;
  border-radius: calc(var(--th-radius) - 4px) calc(var(--th-radius) - 4px) 8px 8px;
}
.service_section .card .card-body {
  padding: 1.1rem 1.15rem 1.35rem;
  text-align: left;
}
.service_section .card .card-title,
.service_section .card .card-title a {
  color: var(--th-green-dark) !important;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.35;
}
.service_section .card .card-text {
  color: var(--th-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News rows */
.fruit_section .row.layout_padding2 {
  align-items: center;
  background: var(--th-surface);
  border: 1px solid var(--th-line);
  border-radius: var(--th-radius);
  padding: 18px !important;
  margin: 0 0 18px !important;
  box-shadow: 0 4px 16px rgba(20, 66, 41, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fruit_section .row.layout_padding2:hover {
  transform: translateY(-2px);
  box-shadow: var(--th-shadow);
}
.fruit_detail-box h3,
.fruit_detail-box h3 a {
  font-family: var(--th-display);
  color: var(--th-green-dark) !important;
  font-size: 1.25rem;
  line-height: 1.35;
}
.fruit_detail-box p {
  color: var(--th-muted);
  margin-bottom: 0 !important;
}
.fruit_img-box {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  flex: 0 0 auto;
}
.fruit_img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* About / client */
.client_section {
  background: linear-gradient(180deg, transparent, rgba(31, 92, 58, 0.05));
}
.client_container {
  background: var(--th-surface);
  border: 1px solid var(--th-line);
  border-radius: calc(var(--th-radius) + 4px);
  padding: 28px 22px;
  box-shadow: var(--th-shadow);
}
.client_img-box {
  width: min(280px, 70vw) !important;
  max-width: 280px;
  margin: 0 auto 16px;
}
.client_img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
.client_detail h3 {
  font-family: var(--th-display);
  color: var(--th-green-dark);
}
.client_detail .custom_heading-text {
  text-align: left !important;
  max-width: none;
}
.client_section .custom_carousel-control .carousel-control-prev,
.client_section .custom_carousel-control .carousel-control-next {
  background-color: var(--th-green) !important;
}

/* Footer */
.info_section {
  position: relative;
  overflow: hidden;
  background: #f0f0f0 !important;
  color: #2a2f2c;
  padding-top: 56px !important;
  padding-bottom: 40px !important;
  border-top: 1px solid #e2e2e2;
}
.info_section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #1f5c3a, #7cb518, #d97706, #1f5c3a);
  background-size: 220% 100%;
  animation: th-support-bar 5s linear infinite;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.2fr 0.9fr;
  gap: 28px 24px;
  position: relative;
  z-index: 1;
}
.footer-brand,
.footer-col {
  min-width: 0;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: #144229 !important;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 6px 16px rgba(20, 66, 41, 0.12);
  border: 1px solid #e5e5e5;
}
.footer-logo strong {
  display: block;
  font-family: var(--th-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #144229;
}
.footer-logo em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: #5b6b61;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.footer-lead {
  color: #4f5c55;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 34ch;
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-cta .btn-th,
.footer-cta .btn-th-outline {
  min-height: 42px;
  padding: 8px 16px !important;
  font-size: 0.9rem;
}
.footer-cta-outline {
  border-color: #1f5c3a !important;
  color: #1f5c3a !important;
  background: #fff !important;
}
.footer-cta-outline:hover {
  background: #1f5c3a !important;
  color: #fff !important;
}
.info_section h3 {
  font-family: var(--th-display);
  font-size: 1.08rem;
  margin-bottom: 1rem;
  color: #144229;
  position: relative;
  padding-bottom: 10px;
}
.info_section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f5c3a, #a46436);
}
.info_section a {
  color: #1f5c3a;
}
.info_section a:hover {
  color: #a46436;
}
.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 0 0 10px !important;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2f3b35 !important;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f5c3a;
  box-shadow: 0 0 0 3px rgba(31, 92, 58, 0.12);
}
.footer-links a:hover {
  transform: translateX(3px);
  color: #a46436 !important;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px !important;
  line-height: 1.5;
  color: #2f3b35;
}
.footer-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #1f5c3a;
}
.footer-sep {
  margin: 0 4px;
  opacity: 0.55;
  color: #6b766f;
}
.footer-company {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #66716a;
}
.social-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #1f5c3a !important;
  line-height: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-link:hover,
.social-link:focus {
  transform: translateY(-3px) scale(1.05);
  background: #1f5c3a;
  border-color: #1f5c3a;
  color: #fff !important;
}
.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  shape-rendering: geometricPrecision;
}
.gov-badge-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-top: 4px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gov-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.gov-badge-btn img {
  display: block;
  width: 180px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
.footer_section {
  background: #e6e6e6 !important;
  font-family: var(--th-font) !important;
  padding: 16px 0 !important;
  border-top: 1px solid #dcdcdc;
}
.footer_section p,
.footer_section a {
  color: #3d4741 !important;
}
.footer_section a:hover {
  color: #1f5c3a !important;
}
.footer_section p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-dot {
  margin: 0 6px;
  opacity: 0.55;
}

/* Contact page */
.page-contact .contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px !important;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--th-green-soft);
  color: var(--th-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-contact .contact-lead {
  max-width: 36rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 22px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 168px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--th-line);
  box-shadow: 0 8px 24px rgba(20, 66, 41, 0.06);
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-card:hover,
.contact-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20, 66, 41, 0.12);
  border-color: rgba(31, 92, 58, 0.28);
  color: inherit !important;
}
.contact-card-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1f5c3a, #2f7a4f);
  color: #fff;
  margin-bottom: 8px;
}
.contact-card-ico--zalo {
  background: linear-gradient(145deg, #0068ff, #18a0fb);
}
.contact-card h3 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--th-muted);
  font-weight: 650;
}
.contact-card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--th-green-dark);
  word-break: break-word;
}
.contact-card-meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--th-earth);
  font-weight: 600;
}
.contact-detail-panel {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, #f4faf6, #fff);
  border: 1px solid rgba(31, 92, 58, 0.12);
  box-shadow: 0 10px 28px rgba(20, 66, 41, 0.06);
}
.contact-detail-main h3 {
  margin: 0 0 6px;
  font-family: var(--th-display);
  font-size: 1.15rem;
  color: var(--th-green-dark);
}
.contact-detail-main > p {
  margin: 0 0 12px;
  color: var(--th-muted);
}
.contact-detail-main ul {
  margin: 0;
  padding-left: 18px;
  color: var(--th-ink);
}
.contact-detail-main li {
  margin: 8px 0;
  line-height: 1.55;
}
.contact-detail-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.contact-chip {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(31, 92, 58, 0.12);
  color: var(--th-green-dark);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 12px rgba(20, 66, 41, 0.04);
}
.contact-map {
  margin-top: 8px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 92, 58, 0.12);
  box-shadow: 0 16px 36px rgba(20, 66, 41, 0.1);
  background: #eef3ef;
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.contact_section,
.map iframe,
.map {
  border-radius: var(--th-radius);
  overflow: hidden;
}
.map iframe {
  border: 0;
  min-height: 360px;
  background: #eef3ef;
}

/* Floating support */
.support {
  position: fixed !important;
  left: 12px !important;
  bottom: 14px !important;
  z-index: 998 !important;
  width: min(310px, calc(100vw - 88px));
  font-family: var(--th-font);
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}
.support-fab {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px 0 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1f5c3a 0%, #2d7a4d 55%, #a46436 130%);
  box-shadow: 0 10px 24px rgba(20, 66, 41, 0.28);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.support-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(31, 92, 58, 0.45);
  animation: th-support-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.support-fab-icon {
  flex-shrink: 0;
  display: block;
}
.support-fab-label {
  position: relative;
  z-index: 1;
}
.support-fab:active {
  transform: scale(0.96);
}
.support-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
  padding: 0 !important;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 245, 0.96)) !important;
  border: 1px solid rgba(31, 92, 58, 0.14);
  box-shadow:
    0 14px 36px rgba(20, 66, 41, 0.16),
    0 2px 8px rgba(20, 66, 41, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: th-support-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: left bottom;
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #1f5c3a, #7cb518, #d97706, #1f5c3a);
  background-size: 200% 100%;
  animation: th-support-bar 4.5s linear infinite;
}
.support-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 14px 10px;
}
.support-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.support-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1f5c3a, #2f7a4f);
  box-shadow: 0 6px 14px rgba(31, 92, 58, 0.28);
  flex-shrink: 0;
  animation: th-support-avatar 3.2s ease-in-out infinite;
}
.support_title {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: var(--th-green-dark) !important;
  margin: 0 !important;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.support-status {
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2f6b45;
  letter-spacing: 0.02em;
}
.support-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: th-support-dot 1.8s ease-out infinite;
}
.support-close {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(31, 92, 58, 0.08);
  color: var(--th-green-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.support-close:active {
  transform: scale(0.94);
}
.support-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px;
}
.support-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.support_phone {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(31, 92, 58, 0.1);
  box-shadow: 0 2px 8px rgba(20, 66, 41, 0.04);
  text-decoration: none !important;
  color: inherit !important;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.support_phone:hover,
.support_phone:focus {
  transform: translateY(-2px);
  border-color: rgba(31, 92, 58, 0.22);
  box-shadow: 0 8px 18px rgba(20, 66, 41, 0.1);
  color: inherit !important;
}
.support_phone:active {
  transform: scale(0.98);
}
.support-carrier {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 52px;
}
.support-carrier img {
  height: 11px !important;
  width: auto !important;
  max-width: 52px;
  display: block;
  object-fit: contain;
}
.support-num {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #a46436 !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: visible;
}
.support-zalo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 104, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 104, 255, 0.06);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
  text-decoration: none !important;
  overflow: visible;
}
.support-zalo:hover,
.support-zalo:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 104, 255, 0.14);
}
.support-zalo:active {
  transform: scale(0.96);
}
.support-zalo img {
  display: block;
  width: 22px !important;
  height: 22px !important;
  max-width: none;
  object-fit: contain;
}

@keyframes th-support-enter {
  0% { opacity: 0; transform: translateY(18px) scale(0.94); }
  70% { opacity: 1; transform: translateY(-3px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes th-support-bar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes th-support-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes th-support-pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 92, 58, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(31, 92, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 92, 58, 0); }
}
@keyframes th-support-avatar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes th-support-fab-in {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.amp_fb_icon {
  position: fixed !important;
  right: 14px !important;
  bottom: 14px !important;
  z-index: 998 !important;
  cursor: pointer;
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  line-height: 0 !important;
  overflow: visible !important;
  animation: th-float-in-right 0.55s ease both, th-float-bob 2.8s ease-in-out 0.55s infinite;
  transform-origin: center bottom;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), filter 0.25s ease;
  filter: drop-shadow(0 8px 18px rgba(31, 92, 58, 0.35));
  -webkit-tap-highlight-color: transparent;
}
.amp_fb_icon-pulse {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(31, 92, 58, 0.4);
  animation: th-support-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.amp_fb_icon:hover,
.amp_fb_icon:focus,
.amp_fb_icon:active {
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
.amp_fb_icon:hover,
.amp_fb_icon:focus {
  animation-play-state: paused;
  transform: scale(1.08) translateY(-3px);
  filter: drop-shadow(0 12px 22px rgba(31, 92, 58, 0.42));
}
.amp_fb_icon.is-open {
  animation: none;
  transform: rotate(0deg) scale(0.96);
}
.amp_fb_icon-svg,
.amp_fb_icon img {
  display: block !important;
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.facebook_chat_box,
.th-chat {
  position: fixed !important;
  right: 14px !important;
  bottom: 84px !important;
  width: min(340px, calc(100vw - 24px)) !important;
  z-index: 999 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  transform-origin: right bottom;
  -webkit-tap-highlight-color: transparent;
}
.facebook_chat_box[hidden] {
  display: none !important;
}
.facebook_chat_box.is-open {
  display: block !important;
  animation: th-chat-pop 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.th-chat-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31, 92, 58, 0.12);
  box-shadow:
    0 18px 42px rgba(20, 66, 41, 0.18),
    0 2px 10px rgba(20, 66, 41, 0.06);
}
.th-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, #1f5c3a 0%, #2d7a4d 55%, #3d8f5c 100%);
  color: #fff;
}
.th-chat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.th-chat-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.th-chat-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.th-chat-online {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #1f5c3a;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: th-support-dot 1.8s ease-out infinite;
}
.th-chat-titles {
  min-width: 0;
}
.th-chat-titles h3,
#th-chat-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.th-chat-status {
  margin: 3px 0 0;
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 600;
}
.th-chat-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.th-chat-close:hover,
.th-chat-close:focus {
  background: rgba(255, 255, 255, 0.24);
}
.th-chat-close:active {
  transform: scale(0.94);
}
.th-chat-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(500px 180px at 100% 0%, rgba(31, 92, 58, 0.06), transparent 60%),
    #fff;
}
.th-chat-bubble {
  align-self: flex-start;
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  background: #eef6f0;
  color: #1a2e22;
  font-size: 0.92rem;
  line-height: 1.55;
  border: 1px solid rgba(31, 92, 58, 0.08);
  animation: th-chat-bubble-in 0.4s ease 0.08s both;
}
.chat-action {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none !important;
  color: #fff !important;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.chat-action:hover,
.chat-action:focus {
  transform: translateY(-2px);
  color: #fff !important;
  filter: brightness(1.05);
}
.chat-action:active {
  transform: scale(0.98);
}
.chat-action-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.chat-action-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1.2;
}
.chat-action-text strong {
  font-size: 0.95rem;
  font-weight: 800;
}
.chat-action-text em {
  font-style: normal;
  font-size: 0.78rem;
  opacity: 0.9;
  font-weight: 600;
}
.chat-messenger {
  background: linear-gradient(135deg, #056536, #0a7a45);
}
.chat-zalo {
  background: linear-gradient(135deg, #0068ff, #18a0fb);
}
.chat-phone {
  background: linear-gradient(135deg, #a46436, #c47a3d);
}

@keyframes th-chat-bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes th-float-in-left {
  from { opacity: 0; transform: translateX(-24px) translateY(12px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes th-float-in-right {
  from { opacity: 0; transform: translateX(24px) translateY(12px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes th-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes th-chat-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .slider_img-box img,
  .slider_img-box > div,
  .th-media,
  .th-media img,
  .fruit_img-box,
  .fruit_img-box img,
  .client_img-box,
  .client_img-box img,
  .service_section .card,
  .fruit_section .row.layout_padding2,
  .support,
  .support-card,
  .support-fab,
  .support-fab-pulse,
  .support-avatar,
  .support-dot,
  .support-card::before,
  .amp_fb_icon,
  .amp_fb_icon-pulse,
  .facebook_chat_box,
  .th-chat-bubble,
  .th-chat-online,
  .navbar-brand,
  .navbar-brand.brand-motion,
  .navbar-brand .brand-text,
  .navbar-brand img,
  .navbar-brand .brand-logo-ring,
  .navbar-brand .brand-name-text,
  .navbar-brand .brand-tag,
  .navbar-brand::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .navbar-brand .brand-name-text {
    color: var(--th-green-dark);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
}

/* Article body */
.is-article .article-body,
.is-article .article-content-section .custom_heading-text {
  line-height: 1.75;
  font-size: 1.02rem;
  text-align: left !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.article-body img {
  border-radius: 16px;
  margin: 12px auto;
}

@media (max-width: 991.98px) {
  .navbar-brand {
    padding-right: 10px;
  }
  .brand-logo-wrap,
  .navbar-brand img {
    width: 46px !important;
    height: 46px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
  .contact-detail-panel {
    grid-template-columns: 1fr;
  }
  .service_section .card-deck {
    grid-template-columns: 1fr;
  }
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--th-line);
    border-radius: 14px;
    margin-top: 10px;
    padding: 10px;
    box-shadow: var(--th-shadow);
  }
  .custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .layout_padding {
    padding: 40px 0 !important;
  }
  .slider_section {
    padding-top: 8px !important;
  }
  .slider_img-box {
    margin: 18px auto 0 !important;
  }
  .fruit_section .row.layout_padding2 {
    text-align: center;
  }
  .fruit_detail-box {
    margin-bottom: 14px !important;
  }
  .support {
    left: 10px !important;
    bottom: 10px !important;
    width: min(270px, calc(100vw - 84px));
  }
  .support_title {
    font-size: 0.86rem !important;
  }
  .support-carrier img {
    height: 10px !important;
  }
  .info_section .col-md-3,
  .info_section .col-md-6 {
    text-align: left !important;
    margin-bottom: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-lead {
    max-width: none;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 0;
  }
  .navbar-brand .brand-tag {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    width: 100%;
  }
  .hero-cta .btn-th,
  .hero-cta .btn-th-outline {
    width: 100%;
  }
  .facebook_chat_box,
  .th-chat {
    right: 10px !important;
    bottom: 78px !important;
    width: min(340px, calc(100vw - 20px)) !important;
  }
  .amp_fb_icon {
    right: 10px !important;
    bottom: 12px !important;
  }
  .support {
    left: 10px !important;
    bottom: 12px !important;
    width: auto;
    max-width: calc(100vw - 76px);
  }
  .support-fab {
    display: inline-flex;
    animation: th-support-fab-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .support-card {
    display: none;
    width: min(320px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    animation: none;
  }
  .support.is-open .support-fab {
    display: none;
  }
  .support.is-open .support-card {
    display: block;
    animation: th-support-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .support-close {
    display: inline-flex;
  }
  .support-body {
    gap: 8px;
    padding: 0 10px 10px;
  }
  .support-row {
    gap: 6px;
  }
  .support_phone {
    padding: 8px 10px;
  }
  .support-num {
    font-size: 0.9rem;
  }
  .support-zalo {
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
  .support-zalo img {
    width: 20px !important;
    height: 20px !important;
  }
}
