@charset "UTF-8";
/*!
 * Chuyen Nha Nghe An – compiled front-end stylesheet.
 * Import order matters: variables/mixins first, then base, layout
 * components in visual order, buttons/animations, and responsive
 * overrides last so they win the cascade.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1F2937;
  background: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #15803D;
  color: #FFFFFF;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 12px 0;
  transition: top 0.25s ease;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid #F97316;
  outline-offset: 2px;
}

.section {
  padding-block: 48px;
}
@media (max-width: 768px) {
  .section {
    padding-block: 32px;
  }
}

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}
.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
}
@media (max-width: 768px) {
  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-header__title {
  font-size: 40px;
  color: #1F2937;
}
.section-header__title--light {
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .section-header__title {
    font-size: 28px;
  }
}
.section-header__desc {
  color: #6B7280;
  font-size: 17px;
}
.section-header__desc--light {
  color: rgba(255, 255, 255, 0.72);
}

.page-content {
  padding-block: 56px;
}
.page-content--narrow {
  max-width: 860px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 32px;
}
.page-title span {
  color: #15803D;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #6B7280;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #E5E7EB;
}
.breadcrumbs__item a {
  color: #15803D;
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
}

/* Post grid (blog/archive) */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover, .post-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
.post-card {
  overflow: hidden;
  border: 1px solid #E5E7EB;
}
.post-card__thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card__body {
  padding: 20px;
}
.post-card__title {
  font-size: 18px;
  margin-bottom: 8px;
}
.post-card__title a:hover {
  color: #15803D;
}
.post-card__meta {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 8px;
}
.post-card__excerpt {
  color: #6B7280;
  font-size: 15px;
}

.single-post__header,
.single-page__header {
  margin-bottom: 8px;
}
.single-post__title,
.single-page__title {
  font-size: 34px;
}
.single-post__meta,
.single-page__meta {
  display: flex;
  gap: 16px;
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 24px;
}
.single-post__thumb,
.single-page__thumb {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
}
.single-post__thumb img,
.single-page__thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.single-post__content,
.single-page__content {
  font-size: 17px;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-word;
}
.single-post__content h2, .single-post__content h3,
.single-page__content h2,
.single-page__content h3 {
  margin-top: 1.6em;
}
.single-post__content pre,
.single-post__content code,
.single-page__content pre,
.single-page__content code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.single-post__content iframe,
.single-post__content .wp-block-embed__wrapper iframe,
.single-page__content iframe,
.single-page__content .wp-block-embed__wrapper iframe {
  max-width: 100%;
}
.single-post__content .wp-embed-responsive-wrapper,
.single-page__content .wp-embed-responsive-wrapper {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.single-post__content .wp-embed-responsive-wrapper .wp-embed-responsive-iframe,
.single-page__content .wp-embed-responsive-wrapper .wp-embed-responsive-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.single-post__content img,
.single-page__content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 24px auto;
  border-radius: 18px;
}
.single-post__content figure,
.single-page__content figure {
  margin: 24px 0;
}
.single-post__content figure img,
.single-page__content figure img {
  margin: 0 auto;
}
.single-post__content figcaption,
.single-post__content .wp-caption-text,
.single-page__content figcaption,
.single-page__content .wp-caption-text {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  color: #6B7280;
}
.single-post__content .wp-caption,
.single-page__content .wp-caption {
  max-width: 100%;
  margin: 24px 0;
}
.single-post__content .wp-caption img,
.single-page__content .wp-caption img {
  margin: 0 auto;
}
.single-post__content table,
.single-page__content table {
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.single-post__content table th,
.single-post__content table td,
.single-page__content table th,
.single-page__content table td {
  border: 1px solid #E5E7EB;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.single-post__content table th,
.single-page__content table th {
  background: #F3F4F6;
  font-weight: 700;
}
.single-post__content table tr:nth-child(even) td,
.single-page__content table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}
.post-tags__label {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  color: #1F2937;
}
.post-tags__list {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-tags__list a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 12.5px;
  line-height: 1.6;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.post-tags__list a:hover {
  background: #15803D;
  color: #FFFFFF;
}

.page-links {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
}
.page-links a {
  display: inline-block;
  margin-left: 8px;
  color: #15803D;
}
.page-links a:hover {
  text-decoration: underline;
}

.archive-description {
  max-width: 720px;
  margin: -16px 0 32px;
  color: #6B7280;
  font-size: 16px;
}

/* ---------- Blog layout (archive + single sidebar) ---------- */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}
@media (max-width: 992px) {
  .blog-sidebar {
    position: static;
  }
}

.sidebar-widget {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 24px;
}
.sidebar-widget__title {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.sidebar-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-recent-posts__item {
  display: flex;
  gap: 12px;
}
.sidebar-recent-posts__thumb {
  width: 72px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F3F4F6;
  display: block;
}
.sidebar-recent-posts__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-recent-posts__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.sidebar-recent-posts__title a:hover {
  color: #15803D;
}
.sidebar-recent-posts__date {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}

.sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-categories li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E5E7EB;
  font-size: 14px;
}
.sidebar-categories li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.sidebar-categories a {
  color: #1F2937;
}
.sidebar-categories a:hover {
  color: #15803D;
}
.sidebar-categories span {
  color: #6B7280;
  font-size: 13px;
}

.sidebar-cta {
  background: #15803D;
  text-align: center;
}
.sidebar-cta .sidebar-widget__title {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}
.sidebar-cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.sidebar-cta__hotline {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.sidebar-cta__hotline:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- CTA banner (chèn trong nội dung trang dịch vụ dạng HTML thô) ----------
 * Class "cnna-cta-banner" được dùng trong content của các trang dịch vụ nhưng
 * chưa từng có CSS tương ứng, khiến khối này hiển thị như văn bản thuần không style.
 */
.cnna-cta-banner {
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.06), rgba(21, 128, 61, 0.02));
  border: 1px solid rgba(21, 128, 61, 0.16);
  border-radius: 24px;
  overflow: hidden;
}
.cnna-cta-banner__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
}
@media (max-width: 768px) {
  .cnna-cta-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
  }
}
.cnna-cta-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}
.cnna-cta-banner__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #15803D;
  margin-bottom: 8px;
}
.cnna-cta-banner__title {
  font-size: 26px;
  margin: 0 0 10px;
  color: #1F2937;
}
@media (max-width: 768px) {
  .cnna-cta-banner__title {
    font-size: 22px;
  }
}
.cnna-cta-banner__desc {
  color: #6B7280;
  font-size: 16px;
  margin: 0 0 20px;
}
.cnna-cta-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.cnna-cta-banner__tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 8px 16px;
}
.cnna-cta-banner__tag-icon {
  display: inline-flex;
  color: #15803D;
  flex-shrink: 0;
}
.cnna-cta-banner__tag-icon svg {
  display: block;
}
.cnna-cta-banner__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.cnna-cta-banner__btn {
  background: #15803D;
  color: #FFFFFF;
}
.cnna-cta-banner__btn:hover, .cnna-cta-banner__btn:focus-visible {
  background: #116530;
}
.cnna-cta-banner__btn svg {
  flex-shrink: 0;
}
.cnna-cta-banner__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6B7280;
}
.cnna-cta-banner__note svg {
  flex-shrink: 0;
  color: #15803D;
}
.cnna-cta-banner__media {
  flex: 0 0 auto;
  width: 280px;
  max-width: 100%;
}
.cnna-cta-banner__media img {
  width: 100%;
  height: auto;
  margin: 0;
}
@media (max-width: 768px) {
  .cnna-cta-banner__media {
    width: 100%;
    max-width: 220px;
    margin-inline: auto;
  }
}

.related-posts {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #E5E7EB;
}
.related-posts__title {
  font-size: 24px;
  margin-bottom: 24px;
}

.error-404-content {
  padding-block: 120px;
  text-align: center;
}

.error-404__code {
  font-size: 96px;
  color: #15803D;
}
.error-404__message {
  font-size: 18px;
  margin-bottom: 32px;
}
.error-404__search {
  margin-top: 32px;
  max-width: 400px;
  margin-inline: auto;
}

.search-form {
  display: flex;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
}
.search-form__input {
  flex: 1;
  border: 0;
  padding: 12px 20px;
  outline: none;
}
.search-form__submit {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0 20px;
  background: #15803D;
  color: #FFFFFF;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  display: inline-flex;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-3px) scale(1.02);
}
.btn--cta {
  background: #F97316;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}
.btn--cta:hover, .btn--cta:focus-visible {
  background: #DB6410;
}
.btn--primary {
  background: #15803D;
  color: #FFFFFF;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: #116530;
}
.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
.btn--block {
  display: flex;
  width: 100%;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  padding-block: 4px;
  transition: padding 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateY(0);
}
.site-header.is-scrolled {
  padding-block: 2px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header .site-nav__list a,
.site-header .site-logo__text {
  color: #1F2937;
}
.site-header .menu-toggle__bar {
  background: #1F2937;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img {
  height: 68px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}
.site-header.is-scrolled .site-header__logo img {
  height: 54px;
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-logo__text {
  font-size: 20px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.site-nav__list a {
  font-weight: 600;
  font-size: 15px;
  transition: color 0.25s ease;
  position: relative;
}
.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #F97316;
  transition: width 0.25s ease;
}
.site-nav__list a:hover::after, .site-nav__list a:focus-visible::after {
  width: 100%;
}

/* Shared circular icon-button look for Zalo + phone icon + search toggle */
.header-icon-btn, .header-search__toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #1F2937;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-zalo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #0068FF;
  color: #FFFFFF;
}
.header-zalo:hover {
  background: #0054CC;
  transform: translateY(-2px);
}

/* Phone: icon-only pill that expands to reveal the number on hover/focus */
.header-hotline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  background: #F97316;
  overflow: hidden;
  transition: background-color 0.25s ease, padding 0.25s ease;
}
.header-hotline .header-icon-btn, .header-hotline .header-search__toggle {
  background: transparent;
  color: #FFFFFF;
}
.header-hotline__text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  overflow: hidden;
  transition: max-width 0.4s ease, opacity 0.25s ease, margin 0.25s ease;
}
.header-hotline:hover, .header-hotline:focus-within {
  background: #DB6410;
  padding-right: 16px;
}
.header-hotline:hover .header-hotline__text, .header-hotline:focus-within .header-hotline__text {
  max-width: 160px;
  opacity: 1;
  margin-left: 2px;
}

/* Search: icon toggle that expands an inline input */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.header-search__toggle {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: #15803D;
  color: #FFFFFF;
}
.header-search__toggle:hover {
  background: #116530;
}
.header-search.is-open .header-search__toggle {
  background: #116530;
  color: #FFFFFF;
}
.header-search__form {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: width 0.4s ease, opacity 0.25s ease;
}
.header-search__form input {
  width: 220px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: #F3F4F6;
  font-size: 14px;
  outline: none;
}
.header-search__form input:focus-visible {
  border-color: #15803D;
}
.header-search.is-open .header-search__form {
  width: 220px;
  opacity: 1;
  pointer-events: auto;
}

/* Form tìm kiếm ở cuối menu trượt mobile — cùng đánh dấu ẩn/hiện với .site-nav__search trong
   @include respond($bp-992) bên dưới (mặc định display:none, chỉ bật lại trên mobile). Tách
   riêng khỏi .header-search (icon mở rộng ở thanh header) vì 2 ngữ cảnh khác hẳn nhau: cái này
   luôn hiện sẵn (không cần bấm mở), nằm cuối panel trượt sau khi đã mở menu. */
.site-nav__search {
  display: none;
}
.site-nav__search__field {
  position: relative;
  display: flex;
  align-items: center;
}
.site-nav__search input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: #F3F4F6;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.site-nav__search input:focus-visible {
  border-color: #15803D;
  background: #FFFFFF;
}
.site-nav__search button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #15803D;
  color: #FFFFFF;
  display: grid;
  place-items: center;
}
.site-nav__search button:hover {
  background: #116530;
}

.site-nav__contact,
.site-nav__tagline {
  display: none;
}

.menu-toggle {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px;
}
.menu-toggle__bar {
  height: 2px;
  width: 100%;
  background: #1F2937;
  border-radius: 2px;
  transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: linear-gradient(180deg, rgba(21, 128, 61, 0.1) 0%, rgba(21, 128, 61, 0) 55%), #FFFFFF;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
    padding: 60px 22px 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav__list a {
    color: #1F2937 !important;
  }
  .site-nav__list a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px;
    border-radius: 11px;
    font-size: 15px;
    transition: background-color 0.25s ease, color 0.25s ease;
  }
  .site-nav__list a::after {
    display: none;
  }
  .site-nav__list a::before {
    content: "";
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #F3F4F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
  }
  .site-nav__list a:hover, .site-nav__list a:focus-visible {
    background: #F3F4F6;
    color: #15803D !important;
  }
  .site-nav__list li:nth-child(1) a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d=%27M3 11.5 12 4l9 7.5%27/%3E%3Cpath d=%27M5 10v10h14V10%27/%3E%3Cpath d=%27M9 20v-6h6v6%27/%3E%3C/svg%3E");
  }
  .site-nav__list li:nth-child(2) a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x=%271%27 y=%276%27 width=%2713%27 height=%2711%27 rx=%271%27/%3E%3Cpath d=%27M14 9h4l4 4v4h-8z%27/%3E%3Ccircle cx=%276.5%27 cy=%2719%27 r=%271.9%27/%3E%3Ccircle cx=%2717.5%27 cy=%2719%27 r=%271.9%27/%3E%3C/svg%3E");
  }
  .site-nav__list li:nth-child(3) a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x=%274%27 y=%273%27 width=%2716%27 height=%2718%27 rx=%271.5%27/%3E%3Cpath d=%27M8 7h8M8 11h2M12 11h2M16 11h2M8 15h2M12 15h2M16 15h2%27/%3E%3C/svg%3E");
  }
  .site-nav__list li:nth-child(4) a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d=%27M20 6 9 17l-5-5%27/%3E%3C/svg%3E");
  }
  .site-nav__list li:nth-child(5) a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d=%27M4 4h13a2 2 0 0 1 2 2v13a1 1 0 0 0 1 1%27/%3E%3Cpath d=%27M4 4v15a2 2 0 0 0 2 2h14a1 1 0 0 1-1-1V6a2 2 0 0 0-2-2H4z%27/%3E%3Cpath d=%27M8 8h8M8 12h8M8 16h4%27/%3E%3C/svg%3E");
  }
  .site-nav__list li:nth-child(6) a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d=%27M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z%27/%3E%3C/svg%3E");
  }
  .menu-toggle {
    display: flex;
  }
  .header-search,
  .header-zalo,
  .header-hotline {
    display: none;
  }
  .site-nav__search {
    display: block;
    margin-top: 18px;
  }
  .site-nav__contact {
    margin-top: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
  }
  .site-nav__contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    transition: background-color 0.25s ease;
  }
  .site-nav__contact-row:not(:last-child) {
    border-bottom: 1px solid #E5E7EB;
  }
  .site-nav__contact-row:hover, .site-nav__contact-row:focus-visible {
    background: #F3F4F6;
  }
  .site-nav__contact-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #F3F4F6;
    color: #15803D;
  }
  .site-nav__contact-icon--cta {
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
  }
  .site-nav__contact-icon--zalo {
    background: rgba(0, 104, 255, 0.1);
    color: #0068FF;
  }
  .site-nav__contact-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .site-nav__contact-text strong {
    font-size: 13.5px;
    color: #1F2937;
  }
  .site-nav__contact-text span {
    font-size: 12.5px;
    color: #6B7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-nav__tagline {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px dashed #E5E7EB;
    text-align: center;
  }
  .site-nav__tagline strong {
    font-size: 13px;
    font-weight: 800;
    color: #15803D;
  }
  .site-nav__tagline span {
    font-size: 11.5px;
    color: #6B7280;
  }
}
@media (max-width: 480px) {
  .site-header__actions {
    gap: 6px;
  }
  .header-icon-btn,
  .header-search__toggle {
    width: 40px;
    height: 40px;
  }
}
.hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 90px;
  background: linear-gradient(160deg, #1F2937 0%, #116530 120%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .hero__inner {
    grid-template-columns: 380px 1fr;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-top: 90px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero__bg .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg .hero__img--placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18), transparent 45%), linear-gradient(135deg, #1F2937 0%, #15803D 65%, #116530 100%);
  position: relative;
}
.hero__bg .hero__img--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='260' height='260'%3E%3Cg fill='none' stroke='white' stroke-opacity='0.1' stroke-width='3'%3E%3Cpath d='M20 90V45l40-25 40 25v45'/%3E%3Cpath d='M40 90V60h40v30'/%3E%3Cpath d='M78 42h20v22a6 6 0 0 1-6 6H84'/%3E%3Ccircle cx='36' cy='94' r='6'/%3E%3Ccircle cx='90' cy='94' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -60px bottom -40px;
  background-size: 320px;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.55) 32%, rgba(15, 23, 42, 0.28) 60%, rgba(15, 23, 42, 0.15) 100%);
}

/* Booking card (left) */
.booking-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  background: linear-gradient(165deg, #14532D 0%, #15803D 100%);
  color: #FFFFFF;
  padding: 20px;
}
.booking-card__header {
  margin-bottom: 12px;
}
.booking-card__title {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px;
}
.booking-card__subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #F97316;
  margin: 0;
}
.booking-card__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.booking-card__step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  opacity: 0.5;
  font-size: 13px;
  font-weight: 600;
}
.booking-card__step.is-active {
  opacity: 1;
}
.booking-card__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
}
.booking-card__step.is-active .booking-card__step-num {
  background: #F97316;
}
.booking-card__tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
}
.booking-card__tab {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.booking-card__tab.is-active {
  background: #FFFFFF;
  color: #116530;
}
.booking-card__type-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.booking-card__type {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.booking-card__type svg {
  flex-shrink: 0;
}
.booking-card__type.is-active {
  border-color: #F97316;
  color: #FFFFFF;
  background: rgba(249, 115, 22, 0.12);
}
.booking-card__field {
  margin-bottom: 10px;
}
.booking-card__field label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.booking-card__input-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 9px 12px;
  border: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.booking-card__input-wrap:focus-within {
  border-color: #F97316;
}
.booking-card__input-wrap svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.booking-card__input-wrap input {
  background: none;
  border: 0;
  outline: none;
  color: #FFFFFF;
  width: 100%;
  font-size: 14px;
}
.booking-card__input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.booking-card__input-wrap input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.booking-card__submit {
  margin-top: 4px;
  padding: 13px;
  font-size: 14px;
}
.booking-card__helper {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

/* Hero media (right) */
.hero__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
}
.hero__media-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #FFFFFF;
}

.hero__title {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.hero__checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
}

.hero__check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F97316;
  color: #FFFFFF;
  display: grid;
  place-items: center;
}

.hero__floating-card {
  position: relative;
  z-index: 3;
  display: inline-flex;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -10px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
}
.hero__avatar:first-child {
  margin-left: 0;
}
.hero__avatar--1 {
  background: linear-gradient(135deg, #15803D, #4ADE80);
}
.hero__avatar--2 {
  background: linear-gradient(135deg, #F97316, #FBBF24);
}
.hero__avatar--3 {
  background: linear-gradient(135deg, #B45309, #F97316);
}

.hero__floating-text {
  font-size: 13px;
  line-height: 1.3;
}
.hero__floating-text strong,
.hero__floating-text span:first-of-type {
  font-size: 18px;
  font-weight: 800;
  color: #15803D;
}
.hero__floating-text .hero__floating-label {
  display: block;
  color: #6B7280;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .hero__media {
    min-height: 220px;
  }
  .hero__media-content {
    padding: 20px 16px;
  }
  .hero__checklist {
    grid-template-columns: 1fr;
  }
  .hero__floating-card {
    padding: 8px 12px;
  }
  .booking-card {
    padding: 18px;
  }
}
.features {
  position: relative;
  margin-top: -64px;
  z-index: 10;
  padding-bottom: 0;
}
.features__grid {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px;
}

.feature-box {
  text-align: center;
  padding: 16px 14px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-box:hover, .feature-box:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
.feature-box__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.1);
  color: #15803D;
  margin-bottom: 10px;
}
.feature-box__title {
  font-size: 15px;
  margin-bottom: 4px;
}
.feature-box__desc {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .features {
    margin-top: -40px;
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__media-inner {
  display: block;
  width: 100%;
  height: 100%;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card__img--placeholder {
  position: relative;
  background: linear-gradient(135deg, #EAF6EE 0%, #DCEFE1 60%, #CFE8D6 100%);
}
.service-card__img--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='64' height='64'%3E%3Cg fill='none' stroke='%2315803D' stroke-opacity='0.35' stroke-width='1.4'%3E%3Cpath d='M3 11 12 4l9 7'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.service-card:hover .service-card__img {
  transform: scale(1.08);
}
.service-card__badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F97316;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.service-card__body {
  padding: 40px 24px 24px;
}
.service-card__title {
  font-size: 22px;
  margin-bottom: 8px;
}
.service-card__desc {
  color: #6B7280;
  font-size: 15px;
}
.service-card__list {
  margin: 16px 0;
}
.service-card__list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.service-card__list li svg {
  color: #15803D;
  flex-shrink: 0;
}
.service-card__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 700;
  color: #15803D;
  margin-top: 8px;
}
.service-card__link svg {
  transition: transform 0.25s ease;
}
.service-card__link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.pricing {
  background: #1F2937;
}

.pricing__cta-arrow {
  transition: transform 0.25s ease;
}

.pricing__cta:hover .pricing__cta-arrow {
  transform: translateX(4px);
}

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

.truck-card {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.truck-card:hover, .truck-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
.truck-card__media {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #F3F4F6;
}
.truck-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.truck-card__img--placeholder {
  position: relative;
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}
.truck-card__img--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='40' height='40'%3E%3Cg fill='none' stroke='%236B7280' stroke-opacity='0.45' stroke-width='1.5'%3E%3Cpath d='M3 16V7a1 1 0 0 1 1-1h9v10'/%3E%3Cpath d='M13 10h5l3 3v3h-2'/%3E%3Ccircle cx='7.5' cy='17.5' r='1.8'/%3E%3Ccircle cx='17.5' cy='17.5' r='1.8'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.truck-card__name {
  font-size: 15px;
  margin-bottom: 6px;
}
.truck-card__price {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
}
.truck-card__price span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #F97316;
}

@media (max-width: 1200px) {
  .pricing__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}

.process__step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}
.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #15803D 0 8px, transparent 8px 16px);
  background-size: 40px 2px;
  animation: cnna-spin-line 1.6s linear infinite;
}
.process__step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #15803D;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 2;
}
.process__step-number {
  font-size: 20px;
  font-weight: 800;
}
.process__step-icon {
  color: #15803D;
  margin-bottom: 12px;
}
.process__step-title {
  font-size: 16px;
  margin-bottom: 8px;
}
.process__step-desc {
  font-size: 13px;
  color: #6B7280;
}

@media (max-width: 1200px) {
  .process__timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
  .process__step:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .process__timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process__step::after {
    display: none;
  }
}
.reviews__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: stretch;
}

.reviews__slider {
  overflow: hidden;
  position: relative;
}

.reviews__track {
  display: flex;
  transition: transform 0.4s ease;
}

.review-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  flex: 0 0 100%;
  padding: 32px;
  max-width: 100%;
}
.review-card__stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 17px;
  font-style: italic;
  color: #1F2937;
  margin-bottom: 24px;
}
.review-card__author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #F3F4F6;
  flex-shrink: 0;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__author-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.review-card__author-info strong {
  font-size: 15px;
}
.review-card__author-info span {
  color: #6B7280;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.reviews__arrow {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  display: grid;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.reviews__arrow:hover {
  background: #15803D;
  border-color: #15803D;
  color: #FFFFFF;
}

.reviews__dots {
  display: flex;
  gap: 8px;
}
.reviews__dots button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.reviews__dots button.is-active {
  background: #15803D;
  transform: scale(1.2);
}

.reviews__promo {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  background: linear-gradient(160deg, #15803D 0%, #116530 100%);
  color: #FFFFFF;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.reviews__promo-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.reviews__promo h3 {
  margin: 0;
  font-size: 18px;
}
.reviews__promo p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

/* Desktop: show all cards side-by-side (grid) like the mockup, no sliding needed for <=3 reviews */
@media (min-width: 993px) {
  .reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }
  .review-card {
    flex: none;
    max-width: none;
  }
  .reviews__controls {
    display: none;
  }
}
@media (max-width: 992px) {
  .reviews__layout {
    grid-template-columns: 1fr;
  }
}
/* ---------- Khoảng trắng cuối section ngay trước footer ----------
 * .section mặc định padding-block 88px cả trên lẫn dưới — section cuối cùng
 * trong <main> (thường là FAQ) vì vậy để lại khoảng trắng rất lớn trước khi
 * chạm nền tối của footer. Giảm riêng padding-bottom của section này.
 */
.site-main > .section:last-child {
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .site-main > .section:last-child {
    padding-bottom: 24px;
  }
}

/* ---------- Site footer ---------- */
.site-footer {
  background: #1F2937;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__legal a:hover {
  color: #FFFFFF;
}
.site-footer__legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Footer CTA banner ---------- */
.footer-cta {
  position: relative;
  background: linear-gradient(135deg, #2A3645 0%, #116530 55%, #15803D 100%);
  border-radius: 24px;
  padding: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
}
@media (max-width: 992px) {
  .footer-cta__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer-cta__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
  }
}
.footer-cta__content {
  flex: 1 1 auto;
  min-width: 0;
}
.footer-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 3px;
}
.footer-cta__eyebrow::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #F97316;
  opacity: 0.6;
}
.footer-cta__title {
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 3px;
}
@media (max-width: 768px) {
  .footer-cta__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .footer-cta__title-suffix {
    display: none;
  }
}
.footer-cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 8px;
}
.footer-cta__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.footer-cta__tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}
.footer-cta__tags li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  margin-left: 12px;
}
@media (max-width: 768px) {
  .footer-cta__tags {
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 14px;
  }
  .footer-cta__tags li {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    padding: 7px 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
  }
  .footer-cta__tags li:not(:last-child)::after {
    display: none;
  }
}
.footer-cta__tag-icon {
  display: inline-flex;
  color: #F97316;
  flex-shrink: 0;
}
.footer-cta__tag-icon svg {
  display: block;
}
@media (max-width: 768px) {
  .footer-cta__tag-icon svg {
    width: 14px;
    height: 14px;
  }
}
.footer-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-cta__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}
.footer-cta__btn {
  padding: 10px 22px;
  min-width: 0;
}
.footer-cta__btn svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-cta__btn {
    flex: 1 1 0;
    padding: 11px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
  .footer-cta__btn svg {
    width: 16px;
    height: 16px;
  }
}
.footer-cta__note {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.footer-cta__note svg {
  flex-shrink: 0;
  color: #F97316;
}
.footer-cta__note--desktop {
  display: inline-flex;
}
@media (max-width: 768px) {
  .footer-cta__note {
    font-size: 11px;
    line-height: 1.3;
  }
  .footer-cta__note--desktop {
    display: none;
  }
  .footer-cta__note--mobile {
    display: inline-flex;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
  }
  .footer-cta__note--mobile svg {
    margin-top: 2px;
  }
}
.footer-cta__media-row {
  flex: 0 0 auto;
  width: 160px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .footer-cta__media-row {
    width: 160px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .footer-cta__media-row {
    width: 100%;
    margin: 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}
.footer-cta__media {
  width: 100%;
}
.footer-cta__media img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-cta__media {
    flex-shrink: 0;
    width: 104px;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo__text {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-col__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col__title {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-col__title--spaced {
  margin-top: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.footer-socials a:hover {
  background: #15803D;
  transform: translateY(-3px);
}

.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}
.footer-menu a:hover {
  color: #FFFFFF;
}

.footer-contact li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.footer-contact a:hover {
  color: #FFFFFF;
}
.footer-contact--icons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact--icons li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #15803D;
}
.footer-contact__hours {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  outline: none;
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter input:focus-visible {
  border-color: #F97316;
}
.footer-newsletter .btn {
  padding: 12px 20px;
  font-size: 13px;
}

@media (max-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .footer-newsletter {
    flex-direction: column;
  }
}
/* ---------- FAQ section ---------- */
.faq-section {
  background: #F3F4F6;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
}
.faq-item__question {
  margin: 0;
}
.faq-item__trigger {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 700;
  text-align: left;
}
.faq-item__trigger svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #15803D;
}
.faq-item__trigger[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 22px;
}
.faq-item__answer p {
  color: #6B7280;
  padding-bottom: 18px;
  margin: 0;
}
.faq-item.is-open .faq-item__answer {
  max-height: 300px;
}

/* ---------- Back to top ---------- */
.back-to-top {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #15803D;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  z-index: 1900;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #15803D;
  border-color: #15803D;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .back-to-top {
    right: 22px;
    bottom: 92px;
  }
}

/* ---------- AI widget ---------- */
.ai-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
}

.ai-widget__toggle {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #15803D;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease;
}
.ai-widget__toggle:hover {
  transform: scale(1.08);
}

.ai-widget__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: cnna-pulse 2.4s infinite;
}

.ai-widget__panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 480px;
}
.ai-widget__panel[hidden] {
  display: none;
}

.ai-widget__header {
  background: #15803D;
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.ai-widget__close {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  color: #FFFFFF;
  display: grid;
  place-items: center;
}

.ai-widget__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-widget__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ai-widget__suggestions button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  color: #15803D;
  background: #FFFFFF;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.ai-widget__suggestions button:hover {
  background: #15803D;
  color: #FFFFFF;
  border-color: #15803D;
}

.ai-widget__message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.ai-widget__message--bot {
  background: #F3F4F6;
  align-self: flex-start;
}
.ai-widget__message--user {
  background: #15803D;
  color: #FFFFFF;
  align-self: flex-end;
}

.ai-widget__form {
  display: flex;
  border-top: 1px solid #E5E7EB;
  padding: 12px;
  gap: 8px;
}
.ai-widget__form input {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
}
.ai-widget__form input:focus-visible {
  border-color: #15803D;
}
.ai-widget__form button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F97316;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ai-widget__footer-note {
  font-size: 11px;
  color: #6B7280;
  text-align: center;
  padding: 0 12px 12px;
  margin: 0;
}
.ai-widget__footer-note a {
  color: #15803D;
  font-weight: 700;
}

@media (max-width: 480px) {
  .ai-widget {
    right: 16px;
    bottom: 16px;
  }
  .ai-widget__panel {
    width: calc(100vw - 32px);
  }
}
/* ---------- Modal "Yêu cầu gọi lại" (dùng chung: CTA footer + thanh mobile) ---------- */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.callback-modal[hidden] {
  display: none;
}
.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}
.callback-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
}
.callback-modal__panel .ttna-cb-close {
  display: flex;
}
@media (max-width: 480px) {
  .callback-modal {
    padding: 12px;
  }
}

body.has-callback-modal-open {
  overflow: hidden;
}

/* ---------- Thanh CTA nhanh cố định đáy màn hình (chỉ hiện trên mobile) ----------
 * Dạng "sheet" nổi bo góc trên, mỗi nút có icon + nhãn + gạch màu nhỏ bên dưới (giống tab
 * indicator) — nút đầu tiên ("Tư vấn nhanh") tô nền cam đậm để luôn là lựa chọn nổi bật nhất,
 * đúng thứ tự ưu tiên đã thống nhất: gọi lại nhanh > tính giá tham khảo > nhắn Zalo.
 * Cố tình làm mỏng/gọn (padding + font nhỏ) — bản đầu tay quá dày, trông thô và lấn cả vào
 * nút AI widget nổi ở góc phải, 27/07/2026.
 */
.mobile-cta-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1500;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.1);
  padding: 6px max(6px, env(safe-area-inset-left)) calc(6px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-right));
  gap: 4px;
}
.mobile-cta-bar__btn {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 4px 7px;
  border-radius: 12px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
  color: #1F2937;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.mobile-cta-bar__btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #6B7280;
}
.mobile-cta-bar__btn:hover, .mobile-cta-bar__btn:focus-visible {
  background: #F3F4F6;
}
.mobile-cta-bar__btn--primary {
  background: #F97316;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.mobile-cta-bar__btn--primary svg {
  color: #FFFFFF;
}
.mobile-cta-bar__btn--primary .mobile-cta-bar__dash {
  background: rgba(255, 255, 255, 0.7);
}
.mobile-cta-bar__btn--primary:hover, .mobile-cta-bar__btn--primary:focus-visible {
  background: #DB6410;
  color: #FFFFFF;
}
.mobile-cta-bar__btn--accent-orange svg {
  color: #F97316;
}
.mobile-cta-bar__btn--accent-orange .mobile-cta-bar__dash {
  background: #F97316;
}
.mobile-cta-bar__btn--accent-blue svg {
  color: #0068FF;
}
.mobile-cta-bar__btn--accent-blue .mobile-cta-bar__dash {
  background: #0068FF;
}
.mobile-cta-bar__dash {
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #E5E7EB;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
  .ai-widget {
    bottom: calc(54px + 10px);
  }
  .back-to-top {
    bottom: calc(54px + 10px + 60px + 12px);
  }
  body {
    padding-bottom: calc(54px + 12px);
  }
}
@keyframes cnna-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(21, 128, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0);
  }
}
@keyframes cnna-spin-line {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes cnna-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--delay-1.is-visible {
  transition-delay: 0.08s;
}

.fade-up--delay-2.is-visible {
  transition-delay: 0.16s;
}

.fade-up--delay-3.is-visible {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * Global responsive adjustments not already covered inside each component
 * partial. Ensures no horizontal scrollbar and enforces the mobile
 * stacking order requested: Ảnh -> Form -> Feature -> Dịch vụ -> Bảng giá
 * -> Timeline -> Review.
 */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  /* Stack hero: image/headline first, booking form second on small screens */
  .hero__inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero__media {
    order: -1;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 48px;
  }
  .section-header__title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 104px;
  }
  .booking-card {
    padding: 20px;
  }
  .hero__floating-card {
    display: none;
  }
}
@media (max-width: 360px) {
  .hero__title {
    font-size: 26px;
  }
  .btn {
    padding: 14px 22px;
    font-size: 13px;
  }
}
