/* =============================== begin header =============================== */
/* Header Styles */
.font-weight-700 {
  font-weight: 700 !important;
}
.top-header {
  background-color: #fcfcfc;
  border-bottom: 1px solid #dcdcdc;
  padding: 21.5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1920px;
  max-height: 100px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

a.logo-wrapper {
  text-decoration: none;
  color: inherit;
}

a.logo-wrapper:hover {
  text-decoration: none;
  opacity: 0.9;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 50px;
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-title {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  color: #14722a;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.site-subtitle {
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: #515151;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: 500;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
}

.nav-link {
  font-family: "Noto Sans JP";
  font-size: 18px;
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.5;
}

.nav-link:hover {
  color: #2681c4;
}

.nav-item.active {
  position: relative;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #2681c4;
  border-radius: 1px;
  display: block;
}

.nav-item.active .nav-link {
  color: #2681c4;
  font-weight: 600;
}

.nav-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #2681c4;
  vertical-align: middle;
  user-select: none;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}

/* General Body Styles */
body {
  font-family: "Noto Serif JP";
  margin: 0;
  padding: 0;
  line-height: 150%;
}

/* =============================== Notification Popup =============================== */
.notification-popup {
  position: fixed;
  bottom: 112px;
  right: 10px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
}

.notification-popup.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.notification-popup-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 340px;
  max-width: 480px;
  position: relative;
}

.notification-medal {
  flex-shrink: 0;
}

.medal-icon-popup {
  width: 24px;
  height: 20px;
  object-fit: contain;
  transform: rotate(15deg);
}

.notification-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notification-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #1C1C1C;
  font-weight: 400;
  margin: 0;
}

.notification-link {
  color: #0070c9;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 12px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.notification-highlight {
  color: #c5b100;
  font-weight: 700;
}

.notification-phone-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.notification-link:hover {
  color: #045a54;
  text-decoration: underline;
}

/* breacum */
.contact-section-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.contact-section-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contact-section-banner-content .section-title {
  color: #ffffff;
}

.contact-section-breadcrumb {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Breadcrumb */
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 100px;
  max-width: 1200px;
}

.breadcrumb-home {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.breadcrumb-home svg {
  display: block;
  width: 20px;
  height: 20px;
}

.breadcrumb-separator {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #999999;
  font-weight: 400;
  flex-shrink: 0;
}

.breadcrumb-title {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 400;
}

/* Hero Section */
.hero-section {
  background-color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  padding: 0 360px;
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(165deg, #ea9c4d 0%, #feda8a 40%, #c0714b 100%);
  border-radius: 90px;
  padding: 7px 24px;
  gap: 10px;
  /* box-shadow: 0 2px 4px rgba(255, 149, 0, 0.2); */
}

.badge-text {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  line-height: 150%;
}

.hero-title {
  display: flex;
  font-family: "Noto Sans JP";
  font-size: 64px;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
}

.hero-subtitle {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  color: #14722a;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Intro Section */
.intro-section {
  position: relative;
  background: url("../images/banner.webp") center/cover no-repeat;
  padding: 56px 360px;
  overflow: hidden;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.intro-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.8;
}

.intro-text {
  margin: 0;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}

.intro-check {
  margin: 0;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  padding: 16px;
  background: linear-gradient(
    165deg,
    rgba(153, 153, 153, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24.5px;
  height: 24.5px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

/* Ranking Section */
.ranking-section {
  padding: 60px 360px;
  background: #fafafa;
}

.ranking-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.ranking-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
  z-index: 2;
  gap: 24px;
  transition: overflow-y 0.3s;
  max-height: calc(100vh - 100px); /* Trừ thêm chiều cao title */
  overflow-y: auto;
}

/* Custom scrollbar */
.ranking-sidebar::-webkit-scrollbar {
  width: 1px;
}

.ranking-sidebar::-webkit-scrollbar-track {
  background: #ffffff;
  /* border-radius: 1px; */
}

.ranking-sidebar::-webkit-scrollbar-thumb {
  background: #ffffff;
  /* border-radius: 3px; */
}

.ranking-sidebar::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.ranking-side {
  background: #fafafa;
  position: relative;
}

.ranking-side-title {
  margin: 0 0 24px 0;
  font-family: "Noto Sans JP";
  font-size: 48px;
  line-height: 1.5;
  color: #1c1c1c;
  font-weight: 700;
}

.ranking-side-list {
  margin: 0;
  padding: 0;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "Noto Sans JP";
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.ranking-side-list span{
  color: #14722A;
}

.ranking-side-list li {
  display: grid;
  grid-template-columns: 35px 1fr; /* Cột số cố định, cột text tự động */
  align-items: flex-start;
  gap: 12px;
  list-style: none !important;
  list-style-type: none !important;
}



.ranking-side-list a {
  color: #2681c4;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}

.ranking-side-list a:hover {
  color: #2681c4;
  text-decoration: underline;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ranking-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ranking-card__image-img {
  width: 100%;
  border-radius: 6px;
  gap: 10px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.06),
    0 5px 8px -2px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.ranking-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f29f4c 0%, #f7c16a 50%, #c96c3b 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.ranking-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.ranking-card__badge-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 90px;
  background: linear-gradient(135deg, #f29f4c 0%, #f7c16a 50%, #c96c3b 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}

.ranking-card__badge-icon::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -8px;
  width: 28px;
  height: 28px;
  background: url("../images/icons/tiara.svg") center/contain no-repeat;
  transform: rotate(-8deg);
  pointer-events: none;
}

.ranking-card__badge-icon--simple::before {
  display: none;
}

.ranking-card__badge-icon .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ranking-card__badge-icon .ranking-card__badge-icon-text {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

.ranking-card__badge-icon--bg-green {
  background: #438E55;
}

.ranking-card__badge-icon--bg-black{
  background: #1C1C1C;
}

.ranking-card__badge-rank {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP";
  background: #f4f4f4;
  border-radius: 90px;
  padding: 12px;
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
  flex-shrink: 0;
}
.ranking-card__title {
  margin: 0;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  position: relative;
}

.ranking-card__title::before{
  content: "";
  position: absolute;
  top: 4px;
  left: -2px;
  width: 15.2px;
  height: 19px;
  background: url("../images/icons/blink.svg") center/contain no-repeat;
  pointer-events: none;
}
.ranking-card__title::after{
  content: "";
  position: absolute;
  bottom: 5px;
  left: 25px;
  width: 8.55px;
  height: 10.45px;
  background: url("../images/icons/blink.svg") center/contain no-repeat;
  pointer-events: none;
}

.ranking-card__title--simple::before,
.ranking-card__title--simple::after {
  display: none;
}

.ranking-points__title{
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    color: #14722A;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.ranking-points {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP";
  font-size: 20px;
  color: #1C1C1C;
  line-height: 1.5;
  list-style: disc;
  margin: 0;
}

.ranking-points > li {
  margin: 0 0 16px 0;
  padding: 4px 0;
}

.ranking-points > li::marker{
  font-size: 18px;
}

.ranking-card__people-container{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: start;
    align-items: start;
}
.ranking-card__people-container-img{
    object-fit: cover;
    object-position: center;
    border : 1px solid #DCDCDC;
    border-radius: 6px;
    max-width: 55px;
    max-height: 60px;
}

.ranking-desc {
  margin: 0 0 10px 0;
  font-family: "Noto Sans JP";
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.ranking-points__container{
    gap:16px;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.ranking-points__container--border {
    padding-top: 20px;
    border-block: 1px solid #EDEDED;

}

.ranking-icon-green-check {
    list-style: none; /* Bỏ bullet mặc định */
    padding-left: 0 !important;
    font-size: 18px;
}

.ranking-icon-green-check > li {
    position: relative;
    padding-left: 28px; /* Khoảng cách cho icon */
    margin-bottom: 15px;
}

.ranking-icon-green-check > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px; /* Điều chỉnh vị trí dọc */
    width: 18px;
    height: 18px;
    background-image: url('../images/icons/check-icon-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.rankking-points__sub-list{
  list-style-type: disc;
  padding-left: 24px;
}
.rankking-points__sub-list li{
  padding-left: 0;
}
.rankking-points__sub-list li::marker {
  font-size: 12px;
}

.ranking-points__button {
  margin-bottom: 16px;
}
.ranking-points__button{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.ranking-points__btn {
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 6px;
  background: #2681C4;
  padding: 16px;
  cursor: pointer;
  position: relative;
  overflow: visible;
  font-family: "Noto Sans JP";
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  text-shadow: none;
}

.ranking-points__btn-arrow{
  padding-left: 8px;
}
.ranking-card__slider {
  position: relative;
}

.ranking-card__slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.ranking-card__slider-item {
  display: none;
  width: 100%;
  max-height: 282px;
}

.ranking-card__slider-item.active {
  display: block;
}

.ranking-card__slider-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.06),
    0 5px 8px -2px rgba(0, 0, 0, 0.08);
  display: block;
}

.ranking-card__slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.ranking-card__slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #2681C4;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease, height 0.3s ease;
  padding: 0;
}

.ranking-card__slider-dot.active {
  background: #2681C4;
  width: 14px;
  height: 14px;
}

/* Toggler Container Wrapper */
.ranking-card__toggler-container-wrapper {
  display: flex;
  flex-direction: column;
}

/* Toggler Container */
.ranking-card__toggler-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.ranking-card__toggler-container.open {
  transition: max-height 0.4s ease-in;
}

/* Toggler Button */
.ranking-card__toggler-button {
  width: 100%;
  position: relative;
  background: #14722a;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-family: "Noto Sans JP";
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease;
  margin-top: 16px;
}

.ranking-card__toggler-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 0;
}

.ranking-card__toggler-button:hover {
  background: #0f5a1f;
}

.ranking-card__toggler-button-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.ranking-card__toggler-button-arrow {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.ranking-card__toggler-button.active .ranking-card__toggler-button-arrow {
  transform: rotate(180deg);
}

/* Blog Section */
.blog-section {
  padding: 60px 360px;
  background: #ffffff;
}

.blog-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-header {
  margin-bottom: 40px;
}

.blog-title {
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.blog-description {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  color: #1C1C1C;
  line-height: 1.5;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid #EDEDED;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.blog-card:hover {
  border-color: #14722A;
  box-shadow: 0 4px 12px rgba(180, 140, 255, 0.15);
}

.blog-card-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
}

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

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.5;
  margin: 0;
}

.blog-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-name,
.blog-card-department {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  color: #555555;
}

.blog-icon {
  flex-shrink: 0;
}

.blog-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.blog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: #14722a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.blog-more-btn:hover {
  background: #0f5a1f;
}

.blog-more-arrow {
  font-size: 18px;
  font-weight: 700;
}

/* Location Section */
.location-section {
  padding: 60px 24px;
  background: #FAFAFA;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.location-title {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  text-align: left;
  line-height: 1.5;
  margin: 0;
}

.location-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.location-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-link:hover {
  border-color: #2681C4;
  box-shadow: 0 2px 8px rgba(38, 129, 196, 0.1);
}

.location-link-text {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.5;
  flex: 1;
}

.location-link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
}

.location-link-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
}

.location-section .location-more-container {
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 20px 0;
}

.global-floating-slot__btn {
  padding: 0;
  color: #1C1C1C;
  text-decoration: none;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
}

.font-size-14{
  font-size: 14px;
}
.font-size-16{
  font-size: 16px;
}
.font-size-18{
  font-size: 18px;
}
.font-size-20{
  font-size: 20px;
}
/* =============================== begin footer =============================== */
/* Sticky Footer Bar */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #dcdcdc;
  padding: 16px 0;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-footer-bar.show {
  transform: translateY(0);
}

.sticky-footer-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.sticky-footer-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-footer-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-footer-bar__icon svg {
  display: block;
}

.sticky-footer-bar__text {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  color: #828282;
  line-height: 1.5;
}

.sticky-footer-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: #2681C4;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.sticky-footer-bar__btn:hover {
  background-color: #14722A;
}

.sticky-footer-bar__arrow {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 700;
}

/* Footer Styles */
.main-footer {
  background-color: #333333;
  padding: 40px 0px;
  bottom: 0;
  z-index: 100;
  margin-top: auto;
  position: relative;
}

.footer-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-image {
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-site-title {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  color: #14722a;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.footer-site-subtitle {
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.footer-nav-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
}

.footer-nav-link {
  font-family: "Noto Sans JP";
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #2681c4;
}

.footer-nav-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  vertical-align: middle;
  user-select: none;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}

/* Global floating slot (above footer) */
.global-floating-slot {
  position: absolute;
  right: 24px;
  bottom: calc(100% + 16px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  cursor: pointer; /* children can override to capture events */
}

.chosse-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 0px 0px 20px;
  position: relative;
}

.chosse-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
}

.chosse-hero .breadcrumb-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 100px 24px 100px;
  margin: 0;
}

.chosse-hero__content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 360px;

}

.chosse-hero__title {
  font-family: "Noto Sans JP";
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: #1c1c1c;
}

.chosse-hero__eyebrow {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  color: #14722a;
  margin: 0;
  line-height: 1.5;
}

.chosse-hero__text {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.5;
  margin: 0;
}

.chosse-hero__image {
  display: flex;
  justify-content: flex-end;
}

.chosse-hero__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-bottom {
  position: relative;
  margin: 0;
  padding: 60px 0;
  background: url('../images/banner/hero-banner-bottom.webp') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.banner-bottom__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.3) 100%);
}

.banner-bottom__content {
  position: relative;
  margin: 0 auto;
  padding: 0 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.banner-bottom__title {
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  color: #ffffff;
}

.banner-bottom__text {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}

.banner-bottom__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  background: #2681C4;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  box-sizing: border-box;
  max-width: 100%;
}

.banner-bottom__btn:hover {
  background: #14722A;
}

#section-target {
  scroll-margin-top: 80px; /* Chiều cao header */
}

.w--100{
  width: 100% !important;
}

/* =============================== Column Modal Styles =============================== */
/* Modal overlay */
.column-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10001 !important;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.column-modal-overlay:not([hidden])[aria-hidden="false"] {
  opacity: 1 !important;
  visibility: visible !important;
}

.column-modal-box {
  background: #F5F2EB;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 24px 24px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.column-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  background: #E95686;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: background 0.2s;
}

.column-modal-close:hover {
  background: #D1456F;
}

.column-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #252525;
  margin: 0 0 20px 0;
  font-family: 'Noto Sans JP', sans-serif;
  padding-right: 100px;
}

/* Profile modal: image left, content right */
.column-modal-profile-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.column-modal-profile-image-wrap {
  flex-shrink: 0;
  width: 180px;
}

.column-modal-profile-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  border-radius: 8px;
}

.column-modal-profile-content {
  flex: 1;
  min-width: 0;
}

.column-modal-profile-heading {
  font-size: 16px;
  font-weight: 700;
  color: #252525;
  margin: 0 0 12px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.column-modal-profile-intro {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  white-space: pre-line;
  margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}

.column-modal-divider {
  border: none;
  border-top: 1px solid #CB8890;
  margin: 16px 0;
}

.column-modal-profile-detail {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}

.column-modal-profile-detail p {
  margin: 0 0 0.5em 0;
}

/* Office modal */
.column-modal-office-body {
  margin-top: 8px;
}

.column-modal-office-map-wrap {
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.column-modal-office-map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .column-modal-profile-body {
      flex-direction: column;
  }

  .column-modal-profile-image-wrap {
      width: 120px;
  }

  .column-modal-box {
      padding: 20px 16px 24px;
  }

  .column-modal-title {
      font-size: 18px;
  }
}