:root {
  --font-primary-regular: "roboto-regular";
  --font-primary-thin: "roboto-thin";
  --font-primary-light: "roboto-light";
  --font-primary-medium: "roboto-medium";
  --font-primary-semiBold: "roboto-semiBold";
  --font-primary-bold: "roboto-bold";
  --font-primary-black: "roboto-black";
  --font-eb-garamond-regular: "EB-Garamond-regular";
  --font-eb-garamond-medium: "EB-Garamond-medium";
  --font-eb-garamond-semiBold: "EB-Garamond-semiBold";
  --font-eb-garamond-bold: "EB-Garamond-bold";
  --font-eb-garamond-black: "EB-Garamond-black";
  --font-SVN-Rosellinda-Alyamore: "SVN-Rosellinda-Alyamore";
  --font-VNF-Optima-Regular: "VNF-Optima-Regular";
  /*--color-primary: #073E27;*/
  --White: #fff;
  --Green-green-500: #073E27;
  --Green-green-400: #396552;
  --Green-green-100: #B2C3BC;
  --Green-green-50: #E6ECE9;
  --Yellow-yellow-500: #D9AC62;
}

/* font */

@font-face {
  font-family: "roboto-regular";
  src: url(../font/roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: "roboto-light";
  src: url(../font/roboto/Roboto-Light.ttf);
}

@font-face {
  font-family: "roboto-medium";
  src: url(../font/roboto/Roboto-Medium.ttf);
}

@font-face {
  font-family: "roboto-semiBold";
  src: url(../font/roboto/Roboto-SemiBold.ttf);
}

@font-face {
  font-family: "roboto-bold";
  src: url(../font/roboto/Roboto-Bold.ttf);
}

@font-face {
  font-family: "roboto-black";
  src: url(../font/roboto/Roboto-Black.ttf);
}

@font-face {
  font-family: "EB-Garamond-regular";
  src: url(../font/EB-Garamond/EBGaramond-Regular.ttf);
}

@font-face {
  font-family: "EB-Garamond-medium";
  src: url(../font/EB-Garamond/EBGaramond-Medium.ttf);
}

@font-face {
  font-family: "EB-Garamond-semiBold";
  src: url(../font/EB-Garamond/EBGaramond-SemiBold.ttf);
}

@font-face {
  font-family: "EB-Garamond-bold";
  src: url(../font/EB-Garamond/EBGaramond-Bold.ttf);
}

@font-face {
  font-family: "EB-Garamond-black";
  src: url(../font/EB-Garamond/EBGaramond-ExtraBold.ttf);
}

@font-face {
  font-family: "SVN-Rosellinda-Alyamore";
  src: url(../font/SVN-Rosellinda-Alyamore.otf);
}

@font-face {
  font-family: "VNF-Optima-Regular";
  src: url(../font/VNF-Optima-Regular.ttf);
}

label {
  font-weight: unset !important;
}

body {
  font-family: var(--font-primary-regular);
  font-size: 16px;
  line-height: 24px;
  color: var(--Green-green-500);
}

.text-white {
  color: var(--White) !important;
}

.text-green {
  color: var(--Green-green-500) !important;
}

.required {
  color: #F00;
}

.text-center {
  text-align: center !important;
}

a {
  text-decoration: none !important;
}

h1:not(.editor-content h1),
h2:not(.editor-content h2),
h3:not(.editor-content h3),
h4:not(.editor-content h4),
h5:not(.editor-content h5),
h6:not(.editor-content h6),
p:not(.editor-content p) {
  margin: 0;
}

.overlay-header,
.header-menu-mobile,
.mobile {
  display: none;
}

.header-container {
  position: fixed;
  top: 0;
  padding: 16px 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container.header-fixed {
  background-color: var(--White);
  padding: 8px 0;
}

.header-container.header-fixed .header-inner {
  align-items: center;
}

.main-container {
  min-height: 100vh;
  height: max-content;
  background: #F6F3E6;
}

.header-inner {
  display: flex;
  width: 100%;
  gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
}

.header-inner .left,
.header-inner .right {
  flex: 1;
}

.header-menu {
  width: 100%;
}

.header-menu .menu {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.header-menu .menu::after,
.header-menu .menu::before {
  display: none;
}

.header-inner .left .menu {
  justify-content: flex-end;
}

.header-menu .menu li a {
  display: flex;
  padding: 2px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--Green-green-500);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
  background-color: transparent;
  transition: all 0.3s ease;
  border-bottom: 2px solid;
  border-color: transparent;
}

.header-menu .menu li:hover a {
  border-color: var(--Yellow-yellow-500);
  color: var(--Yellow-yellow-500);
}

.header-inner .center {
  width: 130px;
  aspect-ratio: 83/60;
  transition: all 0.3s ease;
}

.header-container.header-fixed .header-inner .center {
  width: 83px;
  aspect-ratio: 83/60;
}

.header-inner .center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-container {
  width: 100%;
  background-color: var(--Green-green-500);
  position: relative;
}

.footer-container::after {
  content: '';
  width: 100%;
  height: 50px;
  position: absolute;
  top: -50px;
  left: 0;
  background: linear-gradient(0deg, #073E27 30.08%, rgba(7, 62, 39, 0.00) 100%);
}

.footer-main {
  position: relative;
  height: 100%;
}

.footer-main .bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  mix-blend-mode: luminosity;
}

.footer-main .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.footer-main .container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 35px;
}

.footer-main .container::after,
.footer-main .container::before {
  display: none;
}

.footer-main-first {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #39655220;
}

.footer-main-first .left {
  display: flex;
  width: 509px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-main-first .left .title {
  color: var(--White);
  font-family: var(--font-eb-garamond-regular);
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
  text-transform: uppercase;
}

.footer-main-first .left .desc {
  color: var(--Green-green-50, #E6ECE9);
}

.footer-main-first .right {
  width: 617px;
  backdrop-filter: blur(2px);
}

.form-contact-footer .row {
  margin: 0 -8px;
}

.form-contact-footer .row>* {
  padding: 0 8px;
}

.form-contact-footer .form-item {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  padding: 0 0 6px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  align-self: stretch;
  border-bottom: 1px solid #ECEAE8;
}

.form-contact-footer .form-item label {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-medium);
  text-transform: uppercase;
  margin: 0;
}

.form-contact-footer .form-item .form-control {
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  color: var(--White);
  padding: 0;
  height: 24px;
}

.form-contact-footer .form-item .form-control::placeholder {
  color: #597E6E;
}

.form-download {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--White);
  text-align: justify;
  font-family: var(--font-primary-medium);
  margin-bottom: 24px;
}

.btn-default {
  background: transparent !important;
  border: none;
  padding: 0;
  color: var(--Green-green-50) !important;
  text-align: justify;
  font-family: var(--font-primary-bold);
}

.btn-default img {
  margin-left: -60px;
}

.footer-main-second {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-main-second .first {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 280px;
}

.footer-main-second .first .text {
  color: #FFF;
  text-align: center;
  font-family: var(--font-VNF-Optima-Regular);
  text-transform: uppercase;
}

.footer-main-second .second {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-main-second .title {
  color: #FFF;
  font-family: var(--font-primary-medium);
  text-transform: uppercase;
}

.footer-main-second .second .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-main-second .second .list a {
  color: var(--Green-green-100);
}

.footer-main-second .second .social {
  display: flex;
  padding-top: 8px;
  align-items: flex-start;
  gap: 16px;
}

.footer-main-second .third {
  display: flex;
  width: 310px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
}

.footer-main-second .third .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 24px;
  flex-shrink: 0;
}

.footer-main-second .third .footer-menu li {
  width: calc(50% - 12px);
}

.footer-main-second .third .footer-menu li a {
  color: var(--Green-green-100);
}

.footer-main-second .third .luot-truy-cap {
  color: var(--Yellow-yellow-500);
  text-align: center;
}

.media-fixed {
  position: fixed;
  bottom: 60px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
}

.btn-scroll-to-top {
  cursor: pointer;
}

.video-banner,
.video-footer {
  width: 100%;
  position: relative;
  background-color: #f8f5e8;
}

.video-footer {
  transform: rotate(180deg);
}

.video-banner::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #004e2d;
}

.video-banner video,
.video-footer video {
  width: 100%;
  height: auto;
}

.banner-slider .banner {
  width: 100%;
  aspect-ratio: 1440/860;
  /*max-height: 80vh;*/
  position: relative;
  overflow: hidden;
}

.banner-slider .banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(0deg, rgb(0 78 45) 0%, rgba(255, 255, 255, 0.00) 50.52%);
}

.banner-slider .banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 5%, rgba(255, 255, 255, 0.00) 30.05%);
  mix-blend-mode: luminosity;
  z-index: 10;
}

.banner-slider .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 8s ease;
}

.banner-slider .owl-item.active .banner img {
  transform: scale(1.2);
}

.home-trai-nghiem {
  width: 100%;
  overflow-x: hidden;
}

.home-trai-nghiem-inner {
  display: flex;
  padding: 32px 0 80px 0;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.home-trai-nghiem-header {
  display: flex;
  width: min(100%, 1000px);
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.main-title {
  color: var(--Green-green-500);
  text-align: center;
  font-family: var(--font-eb-garamond-medium);
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
  text-transform: uppercase;
}

.home-trai-nghiem-header .desc {
  color: var(--Green-green-400);
  text-align: center;
}

.home-trai-nghiem-body {
  display: flex;
  gap: 40px 30px;
  flex-wrap: wrap;
}

.home-trai-nghiem-body .home-trai-nghiem-item {
  width: calc(33% - 18px);
  height: auto;
  border-radius: 16px;
  aspect-ratio: 400/296;
  overflow: hidden;
}

.home-trai-nghiem-body .home-trai-nghiem-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.home-trai-nghiem-body .home-trai-nghiem-item:hover img {
  transform: scale(1.05);
}

.home-chuyen-dong {
  padding: 96px 0 0 0;
  margin-bottom: -80px;
  position: relative;
  z-index: 11;
  overflow-x: hidden;
}

.home-chuyen-dong-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.home-chuyen-dong-inner .btn-default {
  color: var(--Green-green-500) !important;
}

.home-chuyen-dong-body {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.home-chuyen-dong-body .left {
  width: 647px;
}

.home-chuyen-dong-body .right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 28px;
}

.home-chuyen-dong-body .right .news-item {
  width: calc(50% - 14px);
}

/* Compact tiles: teaser still outputs .desc; hide on the right column only. */
.home-chuyen-dong-body .right .news-item .desc {
  display: none;
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.news-item .img {
  width: 100%;
  aspect-ratio: 278/182;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.news-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-item:hover .img img {
  transform: scale(1.05);
}

.news-item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.news-item .content .title {
  overflow: hidden;
  color: var(--Green-green-500);
  text-overflow: ellipsis;
  font-family: var(--font-eb-garamond-medium);
  font-size: 22px;
  font-style: normal;
  line-height: 30px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 60px;
}

.news-item .content .desc {
  text-align: justify;
  color: var(--Green-green-500);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 48px;
}

.news-item-type-2 {
  width: 100%;
  height: auto;
}

.news-item-type-2 .img {
  width: 100%;
  aspect-ratio: 647/425;
}

.home-box-2-inner {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 62px;
}

.home-box-2 {
  padding: 0 0 96px 0;
  background: linear-gradient(180deg, #F6F3E6 0%, #F6F3E6 100%);
  overflow-x: hidden;
}

.home-box-2-inner .left {
  display: flex;
  width: 553px;
  padding-right: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.home-box-2-inner .right {
  flex: 1;
  aspect-ratio: 649/500;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
}

.home-box-2-inner .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-box-2-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.home-box-2-header .desc {
  color: var(--Green-green-400);
}

.home-box-2-body {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-box-2-body .first {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-box-2-body .first .item,
.home-box-2-body .second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.home-box-2-body .first .item .title,
.home-box-2-body .second .title {
  color: var(--Green-green-500);
  font-family: var(--font-primary-semiBold);
}

.home-box-2-body .second {
  padding: 16px 0;
  border-bottom: 1px solid #073E2720;
  border-top: 1px solid #073E2720;
}

.home-box-3 {
  padding: 0 0 80px 0;
  overflow-x: hidden;
}

.home-box-3-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background: #F6F3E6;
}

.home-box-3-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-title {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-SVN-Rosellinda-Alyamore);
  font-size: 64px;
  font-style: normal;
  line-height: 52px;
}

.home-box-3-body {
  display: flex;
  align-items: stretch;
  gap: 30px;
  width: 100%;
}

.home-box-3-body .left {
  width: calc(100% - 940px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.home-box-3-body .left .first {
  height: calc(100% - 324px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.home-box-3-body .left .first .home-box-3-text-slides {
  flex: 1;
  position: relative;
}

.home-box-3-body .left .first .content.home-box-3-text-slide {
  display: none;
}

.home-box-3-body .left .first .content.home-box-3-text-slide.is-active {
  display: flex;
}

.home-box-3-body .left .first .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.home-box-3-body .left .first .content .title {
  font-family: var(--font-eb-garamond-regular);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  text-transform: uppercase;
}

.home-box-3-body .left .first .action-slider {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.home-box-3-body .left .first .action-slider .action-slider-count {
  font-family: var(--font-VNF-Optima-Regular);
  font-size: 24px;
  font-style: normal;
  line-height: 40px;
  text-transform: uppercase;
}

.home-box-3-body .right {
  width: 910px;
}

.home-box-3-slider-main {
  width: 100%;
  height: 100%;
}

.home-box-3-slider-main .item {
  width: 100%;
  height: 532px;
  border-radius: 16px;
  overflow: hidden;
}

.home-box-3-slider-main .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-box-3-slider-thumb .item {
  width: 100%;
  height: 191px;
  border-radius: 16px;
  overflow: hidden;
}

.home-box-3-slider-thumb .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-box-4 {
  width: 100%;
  aspect-ratio: 1448/724;
  max-height: 724px;
  position: relative;
  overflow: hidden;
}

.home-box-4 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-box-4 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-box-4 .img::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 1, 1, 0.50);
}

.home-box-4-header {
  padding: 64px 8px;
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-box-4-header .sub-title {
  color: var(--White);
}

.home-box-4-header .main-title {
  color: var(--White);
}

.home-box-4 .btn-play-video {
  position: absolute;
  z-index: 11;
  top: 204px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #FFF;
  text-align: justify;
  font-family: var(--font-primary-bold);
  cursor: pointer;
}

.video-modal .modal-dialog {
  width: min(95%, 1000px);
  aspect-ratio: 147/86;
  max-width: unset;
}

.video-modal .modal-content {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-modal .modal-content iframe {
  border-radius: 8px;
}

.video-modal .modal-content .btn-close-modal {
  position: absolute;
  top: -24px;
  right: -24px;
  cursor: pointer;
}

.home-box-7 {
  padding: 80px 0;
  background-image: url('../img/home-box-7-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 52px;
  overflow-x: hidden;
}

.home-box-7-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-box-7-header .left {
  width: 500px;
}

.home-box-7-header .main-title {
  color: var(--White);
  text-align: start;
}

.home-box-7-header .sub-title {
  text-align: end;
}

.home-box-7-header .desc {
  width: 509px;
  color: var(--White);
  text-align: justify;
}

.home-box-7-item {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 883/530;
  overflow: hidden;
}

.home-box-7-item .img {
  width: 100%;
  height: 100%;
}

.home-box-7-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-box-7-item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 70.55%, rgba(0, 0, 0, 0.80) 87.25%);
  opacity: 0;
  transition: all 0.3s ease;
}

.home-box-7-slider .owl-item.center .home-box-7-item .content {
  opacity: 1;
}

.home-box-7-item .content .title {
  width: min(100%, 700px);
  margin: 0 auto;
  color: var(--White);
  text-align: center;
  font-family: var(--font-eb-garamond-medium);
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  text-transform: uppercase;
}

.home-box-7-item .list {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  justify-content: center;
}

.home-box-7-item .list .item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  opacity: 0.8;
}

.home-box-7-item .list .item .item-title {
  color: var(--White);
  font-family: var(--font-eb-garamond-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  text-transform: uppercase;
}

.home-box-7-item .list .item .text {
  color: var(--White);
  font-family: var(--font-primary-semiBold);
  text-transform: uppercase;
}

.home-box-7-slider .owl-prev {
  top: 50%;
  transform: translateY(-50%);
  left: 64px;
  z-index: 11;
  position: absolute;
}

.home-box-7-slider .owl-next {
  top: 50%;
  transform: translateY(-50%);
  right: 64px;
  z-index: 11;
  position: absolute;
}

.home-box-1 {
  padding: 0 0 96px 0;
  background: #F7F4E7;
  margin-top: -64px;
  overflow-x: hidden;
}

.home-box-1-inner {
  display: flex;
  flex-direction: column;
}

.home-box-1-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.home-box-1-header .right {
  margin-top: 20px;
  display: flex;
  width: 725px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.home-box-1-header .right .first {
  width: 100%;
}

.home-box-1-header .right .first .main-title {
  text-align: start;
}

.home-box-1-header .right .first .sub-title {
  text-align: center;
}

.home-box-1-header .right .desc {
  text-align: justify;
  color: var(--Green-green-500);
}

.home-box-1-inner .img {
  width: 100%;
  aspect-ratio: 1264/588;
  border-radius: 16px;
  overflow: hidden;
  margin-top: -72px;
}

.home-box-1-inner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-box-5 {
  width: 100%;
  min-height: 840px;
  position: relative;
  padding: 80px 0;
  overflow-x: hidden;
}

.home-box-5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 117px;
  background: linear-gradient(180deg, rgba(246, 243, 230, 0.00) 0%, #F6F3E6 100%);
  z-index: 10;
}

.home-box-5 .img-map {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
}

.home-box-5 .img-map>img {
  width: auto;
  height: 100%;
  mix-blend-mode: darken;
}

.home-box-5-inner {
  width: min(100%, 550px);
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.home-box-5-header {
  display: flex;
  flex-direction: column;
}

.home-box-5-header .main-title {
  text-align: start;
}

.home-box-5-header .sub-title {
  text-align: end;
}

.home-box-5-list {
  display: flex;
  width: min(100%, 436px);
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.home-box-5-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-box-5-item:not(:last-child) {
  border-bottom: 1px solid #E6C79620;
  padding-bottom: 16px;
}

.home-box-5-item .number-count {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0 112px 112px 0;
  background: linear-gradient(90deg, #073E27 0%, #EFD983 100%);
  color: var(--White);
  text-align: right;
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: normal;
}

.home-box-5-item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.home-box-5-item .content .km {
  color: var(--Green-green-500);
  text-align: right;
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}

.home-box-5-item .content .address {
  color: var(--Green-green-500);
  font-family: var(--font-primary-medium);
}

.map-marker {
  position: absolute;
  top: 39%;
  left: 74%;
  transform: translate(-50%, -50%);
}

.map-marker>img {
  width: 80px;
  position: relative;
  z-index: 2;
}

.ripple {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 300px;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleEffect 3s infinite;
  z-index: 1;
}

.ripple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ripple-2 {
  animation-delay: 1.5s;
}

/* loading */

.loading-page {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F7F4E7;
}

.loading-page .loading {
  width: 224px;
  height: auto;
  aspect-ratio: 7/5;
}

.loading-page .loading img {
  width: 100%;
}

.loading-page.hide-loading {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.loading-top,
.loading-bot {
  position: absolute;
  width: 100%;
  height: auto;
}

.loading-top svg,
.loading-bot svg {
  width: 100%;
  height: auto;
}

.loading-top {
  right: 0;
  top: 0;
  -webkit-transform: translate(55%, -42%) rotateY(180deg);
  transform: translate(55%, -42%) rotateY(180deg);
}

.loading-bot {
  left: 0;
  bottom: 0;
  transform: rotateY(180deg);
}

.loading {
  width: 98%;
  max-width: 238px;
}

.loading svg {
  width: 100%;
  height: auto;
}

.loading-top svg {
  -webkit-transform: scaleX(-1) rotate(15deg);
  transform: scaleX(-1) rotate(15deg);
}

.loading {
  opacity: 0;
  -webkit-animation: loadingLogo 0.8s 0.6s linear forwards;
  animation: loadingLogo 0.8s 0.6s linear forwards;
}

.loading-line-top {
  -webkit-animation: loadingLineTop 1.5s linear forwards;
  animation: loadingLineTop 1.5s linear forwards;
}

.loading-line-bot {
  -webkit-animation: loadingLineBot 1.5s linear forwards;
  animation: loadingLineBot 1.5s linear forwards;
}



@-webkit-keyframes loadingLineTop {
  to {
    stroke-dasharray: 1699, 1699;
  }
}

@keyframes loadingLineTop {
  to {
    stroke-dasharray: 1699, 1699;
  }
}

@-webkit-keyframes loadingLineBot {
  to {
    stroke-dasharray: 1699, 1699;
  }
}

@keyframes loadingLineBot {
  to {
    stroke-dasharray: 1699, 1699;
  }
}

@-webkit-keyframes loadingLogo {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

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

@keyframes loadingLogo {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

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

@keyframes rippleEffect {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}





/* Tong quan / Vị trí / Sản phẩm / Tiện ích static pages */
.tong-quan-page .main-container,
.vi-tri-page .main-container,
.san-pham-page .main-container,
.tien-ich-page .main-container,
.phap-ly-page .main-container,
.chi-tiet-phap-ly-page .main-container,
.tin-tuc-page .main-container,
.chi-tiet-tin-tuc-page .main-container {
  background: #fffdf3;
  padding-bottom: 40px;
}

.tong-quan-page .container,
.vi-tri-page .container,
.san-pham-page .container,
.tien-ich-page .container,
.phap-ly-page .container,
.chi-tiet-phap-ly-page .container,
.tin-tuc-page .container,
.chi-tiet-tin-tuc-page .container {
  max-width: 1280px;
}

.tong-quan-page .header-container,
.vi-tri-page .header-container,
.san-pham-page .header-container,
.tien-ich-page .header-container,
.phap-ly-page .header-container,
.chi-tiet-phap-ly-page .header-container,
.tin-tuc-page .header-container,
.chi-tiet-tin-tuc-page .header-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.tong-quan-page .header-container .overlay-header,
.vi-tri-page .header-container .overlay-header,
.san-pham-page .header-container .overlay-header,
.tien-ich-page .header-container .overlay-header,
.phap-ly-page .header-container .overlay-header,
.chi-tiet-phap-ly-page .header-container .overlay-header,
.tin-tuc-page .header-container .overlay-header,
.chi-tiet-tin-tuc-page .header-container .overlay-header {
  display: none;
}

.tong-quan-page .header-container .header-inner,
.vi-tri-page .header-container .header-inner,
.san-pham-page .header-container .header-inner,
.tien-ich-page .header-container .header-inner,
.phap-ly-page .header-container .header-inner,
.chi-tiet-phap-ly-page .header-container .header-inner,
.tin-tuc-page .header-container .header-inner,
.chi-tiet-tin-tuc-page .header-container .header-inner {
  min-height: 94px;
}

.tong-quan-page .header-container .header-menu .menu > li > a,
.vi-tri-page .header-container .header-menu .menu > li > a,
.san-pham-page .header-container .header-menu .menu > li > a,
.tien-ich-page .header-container .header-menu .menu > li > a,
.phap-ly-page .header-container .header-menu .menu > li > a,
.chi-tiet-phap-ly-page .header-container .header-menu .menu > li > a,
.tin-tuc-page .header-container .header-menu .menu > li > a,
.chi-tiet-tin-tuc-page .header-container .header-menu .menu > li > a {
  color: #0f3f31;
}

.tong-quan-page .header-container .header-menu .menu > li > a::after,
.vi-tri-page .header-container .header-menu .menu > li > a::after,
.san-pham-page .header-container .header-menu .menu > li > a::after,
.tien-ich-page .header-container .header-menu .menu > li > a::after,
.phap-ly-page .header-container .header-menu .menu > li > a::after,
.chi-tiet-phap-ly-page .header-container .header-menu .menu > li > a::after,
.tin-tuc-page .header-container .header-menu .menu > li > a::after,
.chi-tiet-tin-tuc-page .header-container .header-menu .menu > li > a::after {
  background-color: #0f3f31;
}

.tong-quan-hero {
  position: relative;
}

.tong-quan-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.tong-quan-hero-title {
  position: absolute;
  left: 60px;
  bottom: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: var(--font-eb-garamond-bold);
  font-size: 56px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tong-quan-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 34px;
  align-items: stretch;
}

.tong-quan-intro-left {
  padding: 8px 2px;
  background: transparent;
  border: none;
  width: 500px;
  padding-right: 28px;
}
.tong-quan-intro-video{
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}
.tong-quan-intro-video iframe{
  width: 100%;
  height: 410px;
}

.tong-quan-intro-script {
  font-family: var(--font-SVN-Rosellinda-Alyamore);
  font-size: 64px;
  margin-bottom: 32px;
  margin-top: 8px;
  color: var(--Yellow-yellow-500, #D9AC62);
  line-height: 52px;
}
.tong-quan-intro-content{
  text-align: justify;
}
.tong-quan-intro-left p {
  color: #1a4638;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.tong-quan-intro-right {
  display: flex;
  align-items: center;
}

.tong-quan-intro-right img,
.tong-quan-masterplan-slide__media img,
.tong-quan-progress .progress-media img {
  width: 100%;
  border-radius: 24px;
}

.tong-quan-products h3 {
  color: #fff;
}
.tong-quan-subhead div{
  text-align: center;
  max-width: 1036px;
  color: var(--Green-green-500);
  font-size: 14px;
  line-height: 1.5;
  margin:auto;
}

.tong-quan-products .tong-quan-subhead {
  color: rgba(255, 255, 255, 0.84);
}

.tong-quan-progress {
  display: grid;
  grid-template-columns: 1.43fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Masterplan: Owl slide — 2 cột như mockup (ảnh | nội dung kem) */
.tong-quan-masterplan-carousel-wrap {
  position: relative;
  /*max-width: 1100px;*/
  margin: 0 auto;
}

.tong-quan-masterplan-slider.owl-carousel {
  position: relative;
}

.tong-quan-masterplan-slide {
  display: flex;
}

.tong-quan-masterplan-slide__media {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  background: #e8e4d8;
  width: 810px;
}

.tong-quan-masterplan-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}

.tong-quan-masterplan-slide__content {
  position: relative;
  background: #f7f4e9;
  border-radius: 0 24px 24px 0;
  color: #1a3c34;
  overflow: hidden;
  width: calc(100% - 810px);
}

.tong-quan-masterplan-slide__content::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(26, 60, 52, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(26, 60, 52, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tong-quan-masterplan-slide__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  text-align: left;
}
.tong-quan-masterplan-slide__inner h4{
  margin-top: 16px !important;
  margin-bottom: 40px !important;
  color: var(--Green-green-500, #073E27);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  text-transform: uppercase;
  font-family: var(--font-eb-garamond-medium);
}
.tong-quan-masterplan-icon img{
  width: 24px !important;
}

.tong-quan-masterplan-slide__text {
  flex: 1;
}

.tong-quan-masterplan-slide__text p {
  color: #1a3c34;
  font-family: var(--font-primary-regular);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.tong-quan-masterplan-slide__text p:last-child {
  margin-bottom: 0;
}

.tong-quan-stats .stats-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr;
  gap: 12px;
}
.tong-quan-stats .stat-dark {
  background: #073e27;
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  background-image: url(../img/bg-quy-hoach.png);
}

.tong-quan-stats .num {
  font-size: 38px;
  font-family: var(--font-eb-garamond-bold);
  line-height: 1;
}

.tong-quan-stats .label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  margin-top: 8px;
}

.tong-quan-stats .meta {
  color: var(--White, #FFF);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.16px;
  margin: 0;
  font-family: var(--font-primary-light);
}

.tong-quan-products {
  background-image: url("../img/bg-san-pham.png");
  color: #fff;
  padding: 44px 0;
  margin-top: 26px;
}

.tong-quan-products .product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tong-quan-products .product-card {
  border-radius: 16px;
  overflow: hidden;
}

.tong-quan-products .product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.tong-quan-products .product-card span {
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--White, #FFF);
  text-align: center;
  font-family: var(--font-eb-garamond-regular);
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  border-top: 0.5px solid rgba(217, 172, 98, 0.00);
  border-bottom: 0.5px solid rgba(217, 172, 98, 0.00);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.10) 11.06%, rgba(255, 255, 255, 0.10) 87.98%, rgba(255, 255, 255, 0.00) 100%);
}

.tong-quan-utilities .utility-carousel-block {
  border-radius: 16px;
}

.tong-quan-utilities .tong-quan-utilities-slider {
  margin-bottom: 0;
}

.tong-quan-utilities .tong-quan-utilities-slider .owl-stage-outer {
  overflow: hidden;
}

.tong-quan-utilities .utility-item {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}

.tong-quan-utilities .utility-item img {
  display: block;
  width: 100%;
  border-radius: 14px;
  height: 200px;
  object-fit: cover;
}

.tong-quan-utilities .utility-footer--carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 4px;
}

.tong-quan-utilities .utility-progress {
  flex: 1;
  min-width: 0;
}

.tong-quan-utilities .utility-progress__track {
  height: 3px;
  border-radius: 2px;
  background: rgba(26, 60, 52, 0.12);
  overflow: hidden;
}

.tong-quan-utilities .utility-progress__fill {
  height: 100%;
  width: 33%;
  border-radius: 2px;
  background: #1a3c34;
  transition: width 0.35s ease;
}

.tong-quan-utilities .utility-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
}

/* Nút Owl (navText ảnh) — tắt đặt vị trí mặc định của theme owl */
.owl-prev,
.owl-next {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  display: inline-flex!important;
  align-items: center;
  justify-content: center;
  border: solid thin #073E27 !important;
  border-radius: 100% !important;
}
.owl-prev img,
.owl-next img{
  width: 16px !important;
  height: auto !important;
}
.owl-prev:hover,
.owl-next:hover {
  background: transparent !important;
}

/*.tong-quan-utilities .utility-actions .owl-prev img,*/
/*.tong-quan-utilities .utility-actions .owl-next img {*/
/*  display: block;*/
/*  width: 44px;*/
/*  height: auto;*/
/*}*/

.tong-quan-utilities .utility-dots {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.tong-quan-utilities .utility-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7baa0;
  display: block;
}

.tong-quan-utilities .utility-dots .active {
  background: #0f4631;
}

.tong-quan-progress {
  margin-top: 14px;
}


.tong-quan-progress .progress-content p {
  color: #2a5144;
  line-height: 1.6;
}

.banner-container{
  position: relative;
}
.banner-container .banner-text{
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 1;
}
.banner-container .banner-text .container div{
  color: var(--White, #FFF);
  font-family: var(--font-eb-garamond-regular);
  font-size: 48px;
  line-height: 64px;
  text-transform: uppercase;
}
.tong-quan-intro-left .main-title{
  text-align: left;
}
.tong-quan-stats .stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.tong-quan-stats .stats-grid .stat:nth-child(2),
.tong-quan-stats .stats-grid .stat:nth-child(3){
  display: flex;
  height: 184px;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  grid-row: 1 / span 1;
  grid-column: 3 / span 1;
  justify-self: stretch;
  border-radius: 16px;
  background: #90BAA9;
}
.tong-quan-stats .stats-grid .stat:nth-child(3){
  background: var(--Yellow-yellow-500, #D9AC62);
}
.tong-quan-stats .stats-grid .stat:nth-child(2) .num,
.tong-quan-stats .stats-grid .stat:nth-child(3) .num{
  color: #5A683C;
  text-align: center;
  font-size: 36px;
  line-height: 40px;
  font-family: var(--font-eb-garamond-semiBold);
}
.tong-quan-stats .stats-grid .stat:nth-child(3) .num{
  color: #4E3D00;
}
.tong-quan-stats .stats-grid .stat:nth-child(2) .label,
.tong-quan-stats .stats-grid .stat:nth-child(3) .label{
  color: rgba(90, 104, 60, 0.80);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  font-family: var(--font-primary-regular);
  margin: 0;
}
.tong-quan-stats .stats-grid .stat:nth-child(3) .label{
  color: rgba(78, 61, 0, 0.80);
}
.tong-quan-stats .stats-grid .stat:nth-child(2) .icon,
.tong-quan-stats .stats-grid .stat:nth-child(3) .icon{
  text-align: center;
  margin-bottom: 16px;
}
.tong-quan-stats .stats-grid .stat:nth-child(3){
  grid-column-start: 4;
  grid-row-start: 1;
}
.tong-quan-stats .stat-dark .num{
  font-size: 60px;
  line-height: 68px;
  font-family: var(--font-eb-garamond-black);
  margin-bottom: 16px;
}
.tong-quan-stats .stat-dark .num span{
  font-size: 24px;
  line-height: 32px;
  font-family: var(--font-eb-garamond-regular);
}
.tong-quan-stats .stat-dark .label{
  color: var(--White, #FFF);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
}
.tong-quan-stats .stat-wide{
  display: flex;
  padding: 40px;
  align-items: center;
  gap: 32px;
  grid-row: 2 / span 1;
  grid-column: 3 / span 2;
  justify-self: stretch;
  border-radius: 16px;
  background: var(--gray-3, #F0F0F0);
}
.tong-quan-stats .stat-wide .stat-wide-icon{
  border-radius: 12px;
  background: #FCF9F4;
  padding: 16px;
}
.tong-quan-stats .stat-wide .num{
  color: #061B0E;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 5px;
}
.tong-quan-stats .stat-wide .label{
  color: #434843;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
}
.bg-lotus-1{
  position: absolute;
  top: -150px;
  left: 0;
}
.bg-lotus-2{
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 11;
}
.bg-lotus-3{
  position: absolute;
  bottom: 0;
  left: 0;
}
.tong-quan-masterplan-carousel-wrap .owl-nav{
  position: absolute;
  left: 840px;
  bottom: 40px;
}
.tong-quan-stats .stat-dark .num sub{
  font-size: 24px;
  font-family: var(--font-eb-garamond-regular);
  position: relative;
  left: -10px;
}

/* --------------------------------------------------------------------------
   Trang Vị trí (vi-tri-static) — toàn bộ style trang tùy chỉnh nằm trong file này
   -------------------------------------------------------------------------- */

.vi-tri-page {
  --vi-tri-green: #1a3c34;
  --vi-tri-green-soft: #2a5144;
  --vi-tri-cream: #fdfaf5;
  --vi-tri-cream-map: #f7f4e9;
  --vi-tri-gold: #d9ac62;
}

.vi-tri-section--gradient {
  line-height: 0;
}

.vi-tri-gradient__img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 72px;
  object-fit: cover;
}

.vi-tri-section--map {
  /*background-color: var(--vi-tri-cream-map);*/
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(26, 60, 52, 0.04) 0%,
    transparent 55%
  );
}

.vi-tri-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 40px;
  align-items: start;
}


.main-secondary {
  font-family: var(--font-SVN-Rosellinda-Alyamore);
  text-align: right;
  color: var(--Yellow-yellow-500, #D9AC62);
  font-size: 64px;
  line-height: 52px;
}

.vi-tri-map__intro {
  text-align: justify;
  color: var(--Green-green-500, #073E27);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  width: 515px;
}

.vi-tri-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vi-tri-features__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.vi-tri-features__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8c77a 0%, #1a5c45 72%);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(26, 60, 52, 0.12);
}

.vi-tri-features__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vi-tri-features__heading {
  font-family: var(--font-primary-semiBold);
  color: var(--Green-green-500, #073E27);
  font-size: 20px;
  line-height: 28px;
}

.vi-tri-features__text {
  font-family: var(--font-primary-regular);
  color: var(--Green-green-500, #073E27);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
}

.vi-tri-map__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 60, 52, 0.08);
}

.vi-tri-map__media img {
  display: block;
  width: 100%;
  height: auto;
}

.vi-tri-infra__header {
  text-align: center;
  margin-bottom: 16px;
}

.vi-tri-infra__title {
  margin: 0 0 8px;
  color: var(--vi-tri-green);
  font-family: var(--font-eb-garamond-bold);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vi-tri-infra__script {
  margin: 0;
  font-family: var(--font-SVN-Rosellinda-Alyamore);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--vi-tri-gold);
  line-height: 1.1;
}

.vi-tri-infra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}

.vi-tri-infra__col-title {
  color: var(--Green-green-500, #073E27);
  text-align: center;
  font-family: var(--font-eb-garamond-medium);
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}

.vi-tri-infra__col-text {
  margin: 0;
  color: var(--vi-tri-green-soft);
  font-family: var(--font-primary-regular);
  font-size: 14px;
  line-height: 1.6;
}

.vi-tri-infra__figure {
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.vi-tri-infra__figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.vi-tri-section--street {
  padding-top: 56px;
  padding-bottom: 48px;
  background: var(--vi-tri-cream);
}

.vi-tri-street__intro {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) 1fr;
  gap: 30px 40px;
  align-items: start;
  margin-bottom: 40px;
}

.vi-tri-street__deco-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  opacity: 0.92;
}

.vi-tri-street__title {
  margin: 0 0 8px;
  color: var(--vi-tri-green);
  font-family: var(--font-eb-garamond-bold);
  font-size: clamp(26px, 3vw, 36px);
  text-transform: uppercase;
}

.vi-tri-street__script {
  margin: 0 0 20px;
  font-family: var(--font-SVN-Rosellinda-Alyamore);
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--vi-tri-gold);
}

.vi-tri-street__text p {
  margin: 0 0 14px;
  color: var(--vi-tri-green);
  font-size: 15px;
  line-height: 1.65;
  text-align: justify;
}

.vi-tri-street__text p:last-child {
  margin-bottom: 0;
}

.vi-tri-street-slider .vi-tri-street-slide img {
  display: block;
  width: 100%;
  /*height: 200px;*/
  object-fit: cover;
  border-radius: 14px;
}

.vi-tri-street-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 4px;
}

.vi-tri-street-progress {
  flex: 1;
  min-width: 0;
}

.vi-tri-street-progress__track {
  height: 3px;
  border-radius: 2px;
  background: rgba(26, 60, 52, 0.12);
  overflow: hidden;
}

.vi-tri-street-progress__fill {
  height: 100%;
  width: 20%;
  border-radius: 2px;
  background: var(--vi-tri-green);
  transition: width 0.35s ease;
}

.vi-tri-street-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.vi-tri-street-carousel-block .owl-prev,
.vi-tri-street-carousel-block .owl-next {
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
}

.vi-tri-street-carousel-block .owl-prev img,
.vi-tri-street-carousel-block .owl-next img {
  display: block;
  width: 44px;
  height: auto;
}

.vi-tri-terrain__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}


.vi-tri-terrain__script {
  margin: 0;
  font-family: var(--font-SVN-Rosellinda-Alyamore);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--vi-tri-gold);
  line-height: 1.1;
}

.vi-tri-terrain__quote {
  margin: 0;
  color: var(--Green-green-500, #073E27);
  text-align: right;
  font-size: 24px;
  line-height: 32px;
  font-family: var(--font-primary-semiBold);
}

.vi-tri-terrain-carousel-block {
  background: transparent;
}

.vi-tri-terrain-slider .owl-item {
  min-height: 380px;
}

.vi-tri-terrain-slider .vi-tri-terrain-card {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.vi-tri-terrain-card__img {
  /*position: absolute;*/
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vi-tri-terrain-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(42, 38, 35, 0.00) 0.03%, rgba(147, 134, 124, 0.00) 23.14%, rgba(42, 38, 35, 0.00) 56.26%, #2A2623 90.11%);
  mix-blend-mode: multiply;
}

.vi-tri-terrain-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
  color: var(--White, #FFF);
  font-family: var(--font-eb-garamond-regular);
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
}

.vi-tri-terrain-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.vi-tri-terrain-progress {
  flex: 1;
  min-width: 0;
}

.vi-tri-terrain-progress__track {
  height: 3px;
  border-radius: 2px;
  background: rgba(26, 60, 52, 0.12);
  overflow: hidden;
}

.vi-tri-terrain-progress__fill {
  height: 100%;
  width: 20%;
  border-radius: 2px;
  background: var(--vi-tri-green);
  transition: width 0.35s ease;
}

.vi-tri-terrain-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}


.vi-tri-terrain-carousel-block .owl-prev img,
.vi-tri-terrain-carousel-block .owl-next img {
  display: block;
  width: 44px;
  height: auto;
}

@media (max-width: 991px) {
  .vi-tri-map {
    grid-template-columns: 1fr;
  }

  .vi-tri-map__media {
    order: -1;
  }

  .vi-tri-infra__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vi-tri-street__intro {
    grid-template-columns: 1fr;
  }

  .vi-tri-street__deco {
    max-width: 280px;
    margin: 0 auto;
  }

  .vi-tri-terrain__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .vi-tri-terrain__quote {
    text-align: left;
    max-width: none;
  }

  .vi-tri-street-footer,
  .vi-tri-terrain-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .vi-tri-street-slider .vi-tri-street-slide img {
    height: 180px;
  }
}
.vi-tri-section{
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
.vi-tri-section .img-map{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
}
.vi-tri-section .img-map img{
  height: 100%;
}
.vi-tri-map__intro{
  width: 515px;
}
.vi-tri-street__text{
  color: var(--Green-green-500, #073E27);
  text-align: justify;
  font-size: 16px;
  line-height: 24px;
}
.vi-tri-infra__col{
  padding-top: 24px;
  border-top: solid thin #D8D8D8;
}
.vi-tri-section--map{
  height: 800px;
}

/* --------------------------------------------------------------------------
   Trang Sản phẩm (san-pham-static)
   -------------------------------------------------------------------------- */

.san-pham-section--intro {
  padding-top: 56px;
  padding-bottom: 48px;
  background: #fffdf3;
}

.san-pham-section--intro .main-title {
  margin-bottom: 12px;
}

.san-pham-intro__script.main-secondary {
  display: block;
  margin-bottom: 28px;
}

.san-pham-intro__body {
  max-width: 920px;
}

.san-pham-intro__body p {
  margin: 0 0 16px;
  color: #434843;
  font-family: var(--font-primary-regular);
  font-size: 16px;
  line-height: 1.65;
  text-align: justify;
}

.san-pham-intro__body p:last-child {
  margin-bottom: 0;
}

.san-pham-section--hero-media {
  line-height: 0;
  background: #e8e4dc;
}

.san-pham-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Vị trí đỉnh đồi */

.san-pham-dinh-doi__grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.396fr) 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 40px;
}

.san-pham-dinh-doi__deco-img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
}

.san-pham-dinh-doi__script.main-secondary {
  display: block;
  margin-bottom: 24px;
}

.san-pham-dinh-doi__body p {
  margin: 0 0 14px;
  color: var(--Green-green-500, #073e27);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  line-height: 1.65;
  text-align: justify;
}

.san-pham-dinh-doi__body p:last-child {
  margin-bottom: 0;
}

.san-pham-dinh-doi__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.san-pham-dinh-doi__gallery-item {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.san-pham-dinh-doi__gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Kiến trúc + slider */
.san-pham-arch__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.258fr);
  gap: 30px;
  align-items: center;
}

.san-pham-arch__text p {
  font-size: 16px;
  line-height: 1.65;
  text-align: justify;
}

.san-pham-arch__slider-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.san-pham-arch-slider .san-pham-arch-slide img {
  display: block;
  width: 100%;
  height: min(420px, 56vw);
  object-fit: cover;
}

.san-pham-arch-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  margin: 0;
  pointer-events: none;
}

.san-pham-arch-slider .owl-nav button {
  pointer-events: auto;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  margin: 0 !important;
  border-color: white !important;
}

.san-pham-arch-slider .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.52) !important;
}

/* Owl bọc navText trong span; ảnh mũi tên → trắng bằng filter */
.san-pham-arch-slider .owl-prev span,
.san-pham-arch-slider .owl-next span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  border: none;
  transform: none;
}

.san-pham-arch-slider .owl-nav img {
  display: block;
  width: 22px;
  height: auto;
  filter: brightness(0) invert(1);
}

.san-pham-arch-slider .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 !important;
  text-align: center;
}

.san-pham-arch-slider .owl-dot span {
  background: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.san-pham-arch-slider .owl-dot.active span {
  background: #fff !important;
}

/* Thông tin sản phẩm + mặt bằng */

.san-pham-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 12px;
  padding: 16px 0px;
  margin-bottom: 32px;
  border-top: 1px solid #073E27;
  border-bottom: 1px solid #073E27;
  margin-top: 16px;
}
.san-pham-specs__item:last-child {
  border-right: none;
}

.san-pham-specs__label {
  font-family: var(--font-eb-garamond-regular);
  color: var(--Green-green-500, #073E27);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.san-pham-specs__value {
  color: var(--Green-green-500, #073E27);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--font-primary-semiBold);
  display: block;
}

.san-pham-floor {
  display: grid;
  grid-template-columns: 3.86fr 1fr;
  align-items: stretch;
  background: #F7F4E7;
  border-radius: 12px;
}

.san-pham-floor__stage {
  position: relative;
  flex: 1 1 520px;
  min-width: 280px;
}

.san-pham-floor-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 47.766px;
  border-radius: 4px;
  background: var(--Green-green-500, #073E27);
  color:white;
  font-family: var(--font-primary-medium);
}
.san-pham-floor-slide{
  display: flex;
  justify-content: center;
  padding: 24px;
}
.san-pham-floor-slider .san-pham-floor-slide img {
  display: block;
  width: unset;
  height: auto;
  vertical-align: middle;
}

.san-pham-floor-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  margin: 0;
  pointer-events: none;
}

.san-pham-floor-slider .owl-nav button {
  pointer-events: auto;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  margin: 0 !important;
}

.san-pham-floor-slider .owl-prev img,
.san-pham-floor-slider .owl-next img {
  width: 22px;
  height: auto;
}

.san-pham-floor-tabs {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 61, 43, 0.2);
}

.san-pham-floor-tab {
  /*padding: 16px 18px;*/
  border: none;
  border-bottom: 1px solid rgba(0, 61, 43, 0.12);
  background: transparent;
  color: #003d2b;
  /*font-size: 18px;*/
  /*text-align: left;*/
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 54px 32px;
  /*color: #FFF;*/
  text-align: center;
  font-family: var(--font-eb-garamond-medium);
  font-size: 24px;
  line-height: 32px;
}

.san-pham-floor-tab:last-child {
  border-bottom: none;
}

.san-pham-floor-tab:hover {
  background: rgba(0, 61, 43, 0.06);
}

.san-pham-floor-tab.is-active {
  background: #003d2b;
  color: #fff;
}
.san-pham-section--dinh-doi{
  background: linear-gradient(180deg, #F6F3E6 0%, #FFFDF3 100%);
}

/* --------------------------------------------------------------------------
   Trang Tiện ích (tien-ich-static)
   -------------------------------------------------------------------------- */

/* Section 1 — Thiên đường tiện ích */


.tien-ich-paradise__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 476px 1fr;
}

.tien-ich-paradise__body p {
  font-size: 16px;
  line-height: 1.65;
  text-align: justify;
}

.tien-ich-paradise__visual {
  position: relative;
  min-height: 380px;
}

.tien-ich-paradise__photo {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  /*box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);*/
}

.tien-ich-paradise__photo--main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 696px;
  margin-left: auto;
}

.tien-ich-paradise__photo--main img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

.tien-ich-paradise__photo--overlap {
  z-index: 2;
  max-width: 239px;
  border-radius: 20px;
  position: relative;
  top: -120px;
}

.tien-ich-paradise__photo--overlap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section 2 — Hệ sinh thái + slider */


.tien-ich-eco__layout {
  display: grid;
  grid-template-columns: 944px 1fr;
}

.tien-ich-eco__slider-wrap {
  position: relative;
  flex: 1 1 58%;
  min-width: 280px;
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}

.tien-ich-eco-slider .tien-ich-eco-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tien-ich-eco-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 14px;
  margin: 0;
  pointer-events: none;
  z-index: 2;
}

.tien-ich-eco-slider .owl-nav button {
  pointer-events: auto;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #003d2b !important;
  border: none !important;
  margin: 0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.tien-ich-eco-slider .owl-nav button:hover {
  background: #025a40 !important;
}

.tien-ich-eco-slider .owl-prev span,
.tien-ich-eco-slider .owl-next span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  border: none;
  transform: none;
}

.tien-ich-eco-slider .owl-nav img {
  display: block;
  width: 22px;
  height: auto;
}

.tien-ich-eco-slider .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 !important;
  text-align: center;
  z-index: 2;
}

.tien-ich-eco-slider .owl-dot span {
  background: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.tien-ich-eco-slider .owl-dot.active span {
  background: #fff !important;
}

.tien-ich-eco-tabs {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  border-radius: 0px 10px 10px 0px;
  overflow: hidden;
  border: none;
  background: #F7F4E7;
}

.tien-ich-eco-tab {
  border: none;
  border-bottom: 1px solid rgba(0, 61, 43, 0.12);
  font-family: var(--font-primary-medium);
  transition: background 0.2s, color 0.2s;
  height: calc(100% / 6);
  padding: 20px 32px;
  background: #F7F4E7;
  color: var(--gray-8, #434343);
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.tien-ich-eco-tab:last-child {
  border-bottom: none;
}

.tien-ich-eco-tab:hover {
  background: rgba(0, 61, 43, 0.06);
}

.tien-ich-eco-tab.is-active {
  background: #003d2b;
  color: #fff;
}

/* Section 3 — Bản đồ */


.tien-ich-map__title {
  margin-bottom: 0;
}

.tien-ich-map__media {
  line-height: 0;
  width: 100%;
}

.tien-ich-map__media img {
  display: block;
  width: 100%;
  height: auto;
}
.glass-1{
  position: absolute;
  width: 335px;
  height: auto;
  right: 0;
  bottom: 0;
}

/* --------------------------------------------------------------------------
   Trang Pháp lý (phap-ly-static)
   -------------------------------------------------------------------------- */

.phap-ly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.phap-ly-card {
  display: block;
  text-decoration: none;
  color: inherit;
  /*text-align: center;*/
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phap-ly-card:hover {
  transform: translateY(-4px);
}

.phap-ly-card:focus-visible {
  outline: 2px solid #003d2b;
  outline-offset: 4px;
  border-radius: 8px;
}

.phap-ly-card__box {
  position: relative;
  margin: 0 auto;
  /*max-width: 340px;*/
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #f0ebe2;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.phap-ly-card__corner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 96px;
  height: 96px;
  background: #003d2b;
  border-radius: 0 0 100% 0;
}

.phap-ly-card__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 44%;
  background-image: url("../img/home-box-1-img.webp");
  background-size: cover;
  background-position: center bottom;
  border-radius: 52% 52% 0 0 / 28% 28% 0 0;
}

.phap-ly-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #003d2b;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.phap-ly-card__label {
  display: block;
  margin-top: 16px;
  padding: 0 8px;
  font-family: var(--font-eb-garamond-semiBold);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Trang Chi tiết pháp lý (chi-tiet-phap-ly-static)
   -------------------------------------------------------------------------- */

.chitiet-pl-section {
  padding-top: 120px;
  padding-bottom: 64px;
}


.chitiet-pl-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chitiet-pl-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E6ECE9;
}

.chitiet-pl-row:last-child {
  border-bottom: none;
}

.chitiet-pl-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 8px;
  background: #e02b20;
  color: #fff;
  font-family: var(--font-primary-semiBold);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.chitiet-pl-meta {
  flex: 1 1 200px;
  min-width: 0;
}

.chitiet-pl-date {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-primary-regular);
  color: var(--gray-6---subtle-text, #8C8C8C);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
}

.chitiet-pl-title {
  margin: 0;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  line-height: 1.55;
  color: #1a2e28;
}

.chitiet-pl-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.chitiet-pl-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #003322;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.chitiet-pl-action:first-child {
  border-right: 1px solid rgba(0, 51, 34, 0.2);
}

.chitiet-pl-action:hover {
  color: #0d4a38;
  background: rgba(0, 51, 34, 0.06);
}

.chitiet-pl-action:focus-visible {
  outline: 2px solid #003322;
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Trang Tin tức (tin-tuc-static)
   -------------------------------------------------------------------------- */

.tin-tuc-section--head {
  background: #fffdf3;
}

.tin-tuc-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  padding-top: 120px;
  padding-bottom: 8px;
}

.tin-tuc-head__title {
  margin: 0;
  flex: 1 1 280px;
}

.tin-tuc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tin-tuc-filter-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #0f3f31;
  background: #fffdf3;
  color: #0f3f31;
  font-family: var(--font-primary-medium);
  /*font-size: 14px;*/
  /*line-height: 1.2;*/
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: justify;
  font-size: 16px;
  line-height: 24px;
}

.tin-tuc-filter-btn:hover {
  background: rgba(15, 63, 49, 0.08);
}

.tin-tuc-filter-btn.is-active {
  background: #0f3f31;
  color: #fff;
  border-color: #0f3f31;
}

.tin-tuc-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: solid thin #D8D8D8;
}

.tin-tuc-featured-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.tin-tuc-featured-card__link:hover .tin-tuc-featured-card__title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tin-tuc-featured-card__media {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 16px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.tin-tuc-featured-card__media img {
  display: block;
  width: 100%;
  height: 256px;
  object-fit: cover;
}

.tin-tuc-cat {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  color: var(--Yellow-yellow-500, #D9AC62);
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  font-family: var(--font-eb-garamond-semiBold);
}

.tin-tuc-featured-card__title {
  overflow: hidden;
  color: var(--Green-green-500, #073E27);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  font-family: var(--font-eb-garamond-medium);
  margin-bottom: 8px !important;
}

.tin-tuc-date {
  font-family: var(--font-primary-regular);
  overflow: hidden;
  color: var(--Green-green-500, #073E27);
  text-align: justify;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
}

.tin-tuc-section--list {
  padding-bottom: 56px;
  background: #fffdf3;
}

.tin-tuc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 64px;
  margin-bottom: 40px;
}

.tin-tuc-grid-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e0d6;
  height: 100%;
}

.tin-tuc-grid-card__link:hover .tin-tuc-grid-card__title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tin-tuc-grid-card__title {
  color: var(--Green-green-500, #073E27);
  font-family: var(--font-eb-garamond-medium);
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px !important;
}

.tin-tuc-grid-card__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.tin-tuc-grid-card__thumb {
  flex-shrink: 0;
  /*width: 120px;*/
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.tin-tuc-grid-card__thumb img {
  display: block;
  width: 100%;
  /*height: 88px;*/
  object-fit: cover;
}

.tin-tuc-grid-card__excerpt {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  line-height: 1.55;
  color: #434843;
  text-align: justify;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tin-tuc-grid-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.tin-tuc-grid-card__meta .tin-tuc-cat {
  margin-bottom: 0;
}

.tin-tuc-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.tin-tuc-page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d8d4cc;
  background: #fff;
  color: #0f3f31;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.tin-tuc-page-nav:hover {
  background: rgba(15, 63, 49, 0.06);
}

.tin-tuc-page-nums {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tin-tuc-page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 50%;
  border: 1px solid #d8d4cc;
  background: #fff;
  color: #434843;
  font-family: var(--font-primary-medium);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tin-tuc-page-num:hover {
  border-color: #0f3f31;
  color: #0f3f31;
}

.tin-tuc-page-num.is-active {
  background: #0f3f31;
  color: #fff;
  border-color: #0f3f31;
}
.tin-tuc-grid-card__excerpt_content{
  color: var(--Green-green-500, #073E27);
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* --------------------------------------------------------------------------
   Trang Chi tiết tin tức (chi-tiet-tin-tuc-static)
   -------------------------------------------------------------------------- */

.chi-tiet-tin-tuc-page .main-container {
  background-color: #fdfbf5;
  background-image: url("../img/bg-lotus-1.png"), url("../img/bg-lotus-2.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right -20% top 8%, left -15% bottom 5%;
  background-size: min(380px, 45vw) auto, min(320px, 40vw) auto;
}

.ct-tin-detail {
  padding-top: 120px;
  padding-bottom: 56px;
}

.ct-tin-layout {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 28px 32px;
  align-items: start;
}

.ct-tin-share {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.ct-tin-share__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-primary-medium);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #434843;
}

.ct-tin-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(7, 62, 39, 0.25);
  background: #fff;
  color: #073e27;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ct-tin-share__btn:hover {
  background: #073e27;
  color: #fff;
  border-color: #073e27;
}

.ct-tin-article__title {
  max-width: 840px;
  color: var(--Grey-9, #090C13);
  font-family: var(--font-eb-garamond-medium);
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 16px !important;
}

.ct-tin-article__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-family: var(--font-primary-regular);
  color: var(--gray-7, #595959);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  margin-bottom: 24px;
}

.ct-tin-article__meta i {
  color: #aaa;
}

.ct-tin-article__body {
  max-width: 920px;
}

.ct-tin-article__body > p {
  margin: 0 0 18px;
  font-family: var(--font-primary-regular);
  font-size: 16px;
  line-height: 1.7;
  color: #3a403e;
  text-align: justify;
}

.ct-tin-article__lead {
  margin-bottom: 22px;
}

.ct-tin-article__figure {
  margin: 28px 0 32px;
  line-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.ct-tin-article__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.ct-tin-article__subhead {
  margin: 32px 0 16px;
  font-family: var(--font-eb-garamond-medium);
  font-size: 26px;
  line-height: 1.3;
  color: #073e27;
}

.ct-tin-comments {
  margin-top: 8px;
}

.ct-tin-comments__box {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-4---stroke, #D8D8D8);
  background: #F6F3E6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ct-tin-comments__title {
  color: var(--gray-9---body-text, #1C1C1C);
  font-family: var(--font-eb-garamond-semiBold);
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}

.ct-tin-comment-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 8px;
  border-left: solid 10px var(--Yellow-yellow-500, #D9AC62);
  background: #FFF;
  overflow: hidden;
  border: solid thin #D9AC62;
}

.ct-tin-comment-form__input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-primary-regular);
  font-size: 15px;
  outline: none;
  border-left: solid 2px #D9AC62;
  border-radius: 8px;
}

.ct-tin-comment-form__input::placeholder {
  color: #9a9a9a;
}

.ct-tin-comment-form__submit {
  flex-shrink: 0;
  border: none;
  color: #fff;
  transition: background 0.2s;
  border-radius: 32px;
  background: var(--Green-green-500, #073E27);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  width: 32px;
  height: 32px;
  top: 11px;
  position: relative;
  right: 15px;
}

.ct-tin-comment-form__submit:hover {
  background: #0a5238;
}

.ct-tin-comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ct-tin-comment {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-tin-comment:last-child {
  border-bottom: none;
}

.ct-tin-comment__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ct-tin-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.ct-tin-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4dc;
  font-family: var(--font-primary-semiBold);
  font-size: 13px;
  color: #073e27;
}

.ct-tin-avatar--logo {
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(7, 62, 39, 0.12);
}

.ct-tin-comment__content {
  flex: 1;
  min-width: 0;
}

.ct-tin-comment__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 8px;
}

.ct-tin-comment__author {
  font-family: var(--font-primary-semiBold);
  font-size: 15px;
  color: #1a1a1a;
}

.ct-tin-comment__time {
  font-size: 13px;
  color: #999;
}

.ct-tin-comment__text {
  margin: 0 0 10px;
  font-family: var(--font-primary-regular);
  font-size: 15px;
  line-height: 1.65;
  color: #434843;
}

.ct-tin-comment__reply-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-primary-medium);
  font-size: 13px;
  color: #073e27;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ct-tin-comment__reply-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 14px 0 16px;
  max-width: 520px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(7, 62, 39, 0.15);
  background: #fff;
}

.ct-tin-reply-input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}

.ct-tin-reply-send {
  width: 44px;
  flex-shrink: 0;
  border: none;
  background: #073e27;
  color: #fff;
  cursor: pointer;
}

.ct-tin-comment__replies {
  margin: 8px 0 0;
  padding: 0 0 0 12px;
  list-style: none;
  border-left: 2px solid rgba(7, 62, 39, 0.12);
}

.ct-tin-comment--nested {
  padding: 16px 0 0;
  border-bottom: none;
}
.paragraph--type--banner-item img{
  max-width:100%;
  height: auto;
}
.tien-ich-paradise__copy{
  padding-right: 32px;
}
