@charset "UTF-8";
.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.text-justify {
  text-align: justify;
}

.color-primary {
  color: #003767;
}

.color-white {
  color: #ffffff;
}

.color-gardient-gold {
  background: linear-gradient(90deg, #ffd366 0%, #f3a814 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f3a814;
}

.paragraph {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -5%;
}

.highlight {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -5%;
}

.section-heading {
  font-weight: 800;
  letter-spacing: -5%;
  line-height: 120%;
}

.heading-1 {
  font-size: clamp(5.4rem, 6.8vw, 7.2rem);
}

.heading-2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.heading-3 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.heading-4 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23434343' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 12px 12px;
  background-position: right 10px center;
  background-repeat: no-repeat;
  padding-right: 30px;
}

@media screen and (min-width: 1024px) {
  .mw-50 {
    max-width: 50%;
  }
  .mw-75 {
    max-width: 75%;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  min-width: 25rem;
  height: 4.5rem;
  letter-spacing: -5%;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 120%;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  background: transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background-color: #bf5427;
  transition: width 0.4s ease-in-out;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #003767;
  transition: all 0.3s ease;
}
.btn:hover, .btn:focus {
  color: #ffffff;
}
.btn:hover::after, .btn:focus::after {
  width: 300%;
}
.btn .icon-arrow {
  position: absolute;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 0.5rem;
}
.btn .icon-arrow svg {
  width: 16px;
  height: 16px;
}
.btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3.5rem;
}
.btn--with-icon .btn-text {
  transition: transform 0.3s ease;
}
.btn--with-icon .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.btn--with-icon .btn-icon svg {
  width: 100%;
  height: auto;
}
.btn--with-icon .btn-icon svg path {
  transition: fill 0.3s ease;
}
.btn--with-icon:hover .btn-text {
  transform: translateX(-5px);
}
.btn--with-icon:hover .btn-icon {
  transform: translateX(5px);
}
.btn__primary::before {
  background-color: #003767;
}
.btn__primary::after {
  background-color: #bf5427;
}
.btn__primary:hover, .btn__primary:focus {
  color: #ffffff;
}
.btn__gardient::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.btn__gardient::after {
  background-color: #003767;
}
.btn__gardient:hover, .btn__gardient:focus {
  color: #ffffff;
}
.btn__gardient:hover svg path, .btn__gardient:focus svg path {
  fill: #ffffff;
}
.btn__gardient--light::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.btn__gardient--light:hover,
.btn__gardient--light shade:focus {
  color: #bf5427;
}
.btn__gardient--light:hover::after,
.btn__gardient--light shade:focus::after {
  background-color: #ffffff;
}
.btn__gardient--light:hover svg path,
.btn__gardient--light shade:focus svg path {
  fill: #bf5427;
  animation: slide-right 0.5s ease;
  transition: animation 1s ease;
}
.btn__vr360 {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 20px rgba(235, 88, 48, 0.4);
}
.btn__vr360 .icon-vr360 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  animation: vrPulse 2s infinite;
}
.btn__vr360:hover {
  background: linear-gradient(90deg, #f4963d 0%, #eb5830 100%);
  box-shadow: 0 8px 25px rgba(235, 88, 48, 0.6);
  transform: translateX(-50%) scale(1.05);
  color: #eb5830;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 1.5rem !important;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease-in-out;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
}
.form-control::-moz-placeholder {
  color: #000000;
}
.form-control::placeholder {
  color: #000000;
}
.form-control:hover, .form-control:focus, .form-control:active {
  box-shadow: none;
  outline: none;
}

/* --- Consultation Popup Modal --- */
.noxh-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 55, 103, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.noxh-modal-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 55, 103, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: noxh-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 1.5rem;
}

.noxh-modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f4f6f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  color: #808080;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noxh-modal-close-btn:hover {
  background: #ad0b03;
  color: #ffffff;
}

.noxh-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #003767;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center;
}

.noxh-modal-desc {
  font-size: 14px;
  color: #003767;
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: center;
}

.noxh-modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
  width: 100%;
}
.noxh-modal-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #003767;
}

.noxh-modal-input {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #003767;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.noxh-modal-input::-moz-placeholder {
  color: #b3b3b3;
}
.noxh-modal-input::placeholder {
  color: #b3b3b3;
}
.noxh-modal-input:focus {
  border-color: #003767;
  box-shadow: 0 0 0 3px rgba(0, 55, 103, 0.1);
}
.noxh-modal-input.has-error {
  border-color: #ad0b03;
  background-color: #fffafb;
}
.noxh-modal-input.has-error:focus {
  box-shadow: 0 0 0 3px rgba(173, 11, 3, 0.1);
}

.noxh-modal-select {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #003767;
  outline: none;
  background: #ffffff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23003767' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat right 16px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.noxh-modal-select:focus {
  border-color: #003767;
}
.noxh-modal-select.has-error {
  border-color: #ad0b03;
  background-color: #fffafb;
}

.noxh-error-msg {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: #ad0b03;
  margin-top: 2px;
}

.noxh-modal-input.has-error ~ .noxh-error-msg,
.noxh-modal-select.has-error ~ .noxh-error-msg {
  display: block;
}

.noxh-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.noxh-btn-secondary {
  background: #ffffff;
  border: 2px solid #003767;
  color: #003767;
  height: 48px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noxh-btn-secondary:hover {
  background: #003767;
  color: #ffffff;
}

.noxh-btn-primary {
  background: linear-gradient(135deg, #eb5830 0%, #d03d15 100%);
  color: #ffffff;
  border: none;
  height: 48px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(235, 88, 48, 0.2);
  outline: none;
}
.noxh-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(235, 88, 48, 0.35);
}
.noxh-btn-primary:active {
  transform: translateY(0);
}

@keyframes noxh-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Select2 custom styling inside the modal --- */
.noxh-modal-card .select2-container--default {
  width: 100% !important;
}
.noxh-modal-card .select2-container--default .select2-selection--single {
  background-color: #ffffff;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
.noxh-modal-card .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #003767 !important;
  padding-left: 0 !important;
  padding-right: 25px !important;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.noxh-modal-card .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #b3b3b3 !important;
}
.noxh-modal-card .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
  right: 16px !important;
  width: 12px !important;
  height: 12px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23003767' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") !important;
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.noxh-modal-card .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}
.noxh-modal-card .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #003767 !important;
}
.noxh-modal-card .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg) !important;
}
.noxh-modal-card .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #003767 !important;
  box-shadow: 0 0 0 3px rgba(0, 55, 103, 0.1);
}

.noxh-modal-overlay .select2-dropdown {
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid rgba(0, 55, 103, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 55, 103, 0.12) !important;
  z-index: 9999999 !important;
}
.noxh-modal-overlay .select2-dropdown .select2-results__option {
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 16px !important;
  color: #003767 !important;
  background-color: transparent !important;
  transition: all 0.2s ease;
}
.noxh-modal-overlay .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(235, 88, 48, 0.1) !important;
  color: #eb5830 !important;
}
.noxh-modal-overlay .select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #eb5830 !important;
  color: #ffffff !important;
}

.section-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}
.section-slider.slider-height-90vh {
  height: 90vh;
  height: 90dvh;
  height: 90svh;
}
.section-slider.slider-height-90vh .swiper-wrapper,
.section-slider.slider-height-90vh .swiper-slide {
  height: 90vh;
  height: 90dvh;
  height: 90svh;
}
.section-slider.slider-height-100vh {
  height: 100vh;
  height: 100dvh;
  height: 100svh;
}
.section-slider.slider-height-100vh .swiper-wrapper,
.section-slider.slider-height-100vh .swiper-slide {
  height: 100vh;
  height: 100dvh;
  height: 100svh;
}
.section-slider.slider-height-600px {
  height: 600px;
}
.section-slider.slider-height-600px .swiper-wrapper,
.section-slider.slider-height-600px .swiper-slide {
  height: 600px;
}
.section-slider .swiper-home {
  width: 100%;
  height: 100%;
  position: relative;
}
.section-slider .swiper-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@keyframes kenBurnsZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.section-slider .slide-bg {
  position: absolute;
  inset: 0 0;
  z-index: 1;
  overflow: hidden;
}
.section-slider .slide-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.section-slider .slide-content-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-slider .slide-text-box {
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}
.section-slider .slide-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 768px) {
  .section-slider .slide-title {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .section-slider .slide-title {
    font-size: 5.5rem;
  }
}
.section-slider .slide-description {
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #f1f1f1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 768px) {
  .section-slider .slide-description {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .section-slider .slide-description {
    font-size: 2.2rem;
  }
}
.section-slider .slide-cta-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.section-slider .swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}
.section-slider .swiper-slide-active .slide-description {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, opacity 1.2s ease 0.2s;
}
.section-slider .swiper-slide-active .slide-cta-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, opacity 1.2s ease 0.4s;
}
.section-slider .btn-orange {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eb5830 0%, #bf5427 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(235, 88, 48, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.2rem 2.8rem !important;
}
.section-slider .btn-orange .btn-text {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.section-slider .btn-orange .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.section-slider .btn-orange::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}
.section-slider .btn-orange:hover, .section-slider .btn-orange:focus {
  background: linear-gradient(135deg, rgb(237.2466960352, 106.7599118943, 71.2533039648) 0%, rgb(211.8456521739, 93.447826087, 43.6543478261) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(235, 88, 48, 0.5);
}
.section-slider .btn-orange:hover .btn-icon, .section-slider .btn-orange:focus .btn-icon {
  transform: translateX(2px) scale(1.05);
}
.section-slider .btn-orange:hover::after, .section-slider .btn-orange:focus::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}
.section-slider .btn-orange:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(235, 88, 48, 0.3);
}
.section-slider .btn__outline {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem 2.6rem !important;
}
.section-slider .btn__outline .btn-text {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.section-slider .btn__outline .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}
.section-slider .btn__outline:hover, .section-slider .btn__outline:focus {
  background: #ffffff;
  color: #003767 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}
.section-slider .btn__outline:hover .btn-icon, .section-slider .btn__outline:focus .btn-icon {
  transform: translateX(2px) scale(1.05);
  color: #003767;
}
.section-slider .btn__outline:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.section-slider .swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.section-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin: 0 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section-slider .swiper-pagination .swiper-pagination-bullet span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background-color: #eb5830;
  transition: width 0.1s linear;
}
.section-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.45);
  width: 60px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.section-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  animation: bulletProgress 4s linear forwards;
}

@keyframes bulletProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.section-about-us {
  position: relative;
  background-color: #f7f7f4;
}
.section-about-us .about-content__wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
  transform: translate(0, 10%);
}
.section-about-us .about-content__left, .section-about-us .about-content__right {
  flex: 0 0 100%;
  max-width: 100%;
}
.section-about-us .about-gallery__img {
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.section-about-us .about-cta .btn {
  min-width: 37rem;
}

@media (min-width: 1024px) {
  .section-about-us .about-content__wrap {
    padding: 4rem 0;
    position: absolute;
    transform: translate(0, 0);
    z-index: 2;
  }
  .section-about-us .about-content__left, .section-about-us .about-content__right {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section-about-us .about-gallery__img {
    height: 100vh;
  }
  .section-about-us .about-cta {
    position: absolute;
    bottom: 12%;
    z-index: 1;
  }
}
.section-location {
  position: relative;
  font-family: "Google Sans", sans-serif;
  background-color: #003767;
}
.section-location__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-location__content {
  padding: 2rem;
}
.section-location__content .text-location {
  width: 32rem;
  height: 16rem;
}
.section-location__map-wrap {
  width: 100%;
  height: auto;
}
.section-location__map {
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .section-location__wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100vh;
    max-width: 30%;
  }
  .section-location__overlay {
    display: block;
    background: linear-gradient(to right, #00325e 31.09%, rgba(12, 115, 204, 0) 43.7%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .section-location__map-wrap {
    height: 100vh;
  }
  .section-location__map {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.section-amenities {
  background-color: #f7f7f4;
}
.section-amenities__wrap {
  margin-bottom: 2rem;
}
.section-amenities .amenities-tabs-nav {
  margin-top: 1.5rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .section-amenities .amenities-tabs-nav {
    gap: 3rem;
  }
}
.section-amenities .amenities-tabs-nav .button {
  color: #003767;
  font-weight: 600;
  min-width: 25%;
  width: 48%;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .section-amenities .amenities-tabs-nav .button {
    font-size: 1.4rem;
    width: auto;
    min-width: auto;
  }
}
.section-amenities .amenities-tabs-nav .button.active, .section-amenities .amenities-tabs-nav .button:hover, .section-amenities .amenities-tabs-nav .button:focus {
  color: #ffffff;
}
.section-amenities .amenities-tabs-nav .button.active::before, .section-amenities .amenities-tabs-nav .button:hover::before, .section-amenities .amenities-tabs-nav .button:focus::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.section-amenities .amenities-tabs-nav .button.active::after, .section-amenities .amenities-tabs-nav .button:hover::after, .section-amenities .amenities-tabs-nav .button:focus::after {
  background: #003767;
}
.section-amenities .amenities-tabs-nav .button::before {
  background: #e0e0e0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.section-amenities .amenities-tabs-nav .button::after {
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.section-amenities .amenities-tab-content {
  margin-top: 2rem;
}
.section-amenities .amenities-tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.section-amenities .amenities-tab-pane.active {
  display: block;
}
.section-amenities .amenities-tab-pane.show {
  opacity: 1;
}
.section-amenities .amenity-card {
  max-width: 85%;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-amenities .amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.section-amenities .amenity-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.section-amenities .amenity-card__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-amenities .amenity-card:hover .section-amenities .amenity-card__image-wrap img {
  transform: scale(1.03);
}

.section-gallery {
  background-color: #f7f7f4;
  font-family: "Google Sans", sans-serif;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section-gallery {
    padding: 6rem 0;
  }
}
.section-gallery .gallery-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #003767;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section-gallery .gallery-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .section-gallery .gallery-title {
    font-size: 3.4rem;
  }
}
.section-gallery .gallery-slider-outer {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .section-gallery .gallery-slider-outer {
    max-width: 80%;
  }
}
.section-gallery .swiper-gallery {
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.section-gallery .swiper-gallery .swiper-slide {
  height: auto !important;
}
.section-gallery .gallery-slide-inner {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f1f1f1;
  position: relative;
  overflow: hidden;
}
.section-gallery .gallery-slide-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-gallery .gallery-slide-inner:hover img {
  transform: scale(1.03);
}
.section-gallery .gallery-poster {
  z-index: 2;
  position: absolute;
  inset: 0;
}
.section-gallery .gallery-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}
.section-gallery .btn-play-trigger {
  width: 7.2rem;
  height: 7.2rem;
  z-index: 3;
  color: #003767;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.section-gallery .btn-play-trigger .play-icon-arrow svg {
  width: 32px;
  height: 32px;
  color: #003767;
  transition: transform 0.3s ease, color 0.3s ease;
}
.section-gallery .btn-play-trigger::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}
.section-gallery .btn-play-trigger:hover {
  transform: translate(-50%, -50%) scale(1.08) !important;
  color: #ffffff !important;
  background-color: #eb5830 !important;
}
.section-gallery .btn-play-trigger:hover .play-icon-arrow svg {
  color: #ffffff !important;
  transform: scale(1.1);
}
.section-gallery .btn-play-trigger:hover::before {
  opacity: 1;
  transform: scale(1);
}
.section-gallery .gallery-video-wrap {
  z-index: 1;
  position: absolute;
  inset: 0;
  background-color: #000000;
}
.section-gallery .gallery-video-wrap iframe,
.section-gallery .gallery-video-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-gallery .swiper-btn {
  width: 65px;
  height: 55px;
  color: #003767;
  background-color: #ffffff;
  transition: all 0.3s ease;
  z-index: 5;
}
.section-gallery .swiper-btn svg {
  width: 55px;
  height: auto;
  transition: transform 0.3s ease;
}
.section-gallery .swiper-btn.swiper-btn-prev {
  left: -65px !important;
}
.section-gallery .swiper-btn.swiper-btn-prev:hover svg {
  transform: translateX(-2px);
}
@media (max-width: 768px) {
  .section-gallery .swiper-btn.swiper-btn-prev {
    left: 10px !important;
  }
}
.section-gallery .swiper-btn.swiper-btn-next {
  right: -65px !important;
}
.section-gallery .swiper-btn.swiper-btn-next:hover svg {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .section-gallery .swiper-btn.swiper-btn-next {
    right: 10px !important;
  }
}
.section-gallery .swiper-pagination {
  bottom: 15px !important;
  z-index: 5;
}
.section-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #003767;
  opacity: 0.3;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.section-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  background-color: #eb5830;
}

.section-apartment {
  background-color: #f7f7f4;
  position: relative;
}
.section-apartment::before {
  content: "";
  position: absolute;
  top: -3%;
  right: 0;
  width: 50%;
  height: 35%;
  background-image: url("../assets/images/bg_hoa_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-180deg);
}
.section-apartment .layouts-tabs-nav {
  margin-top: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section-apartment .layouts-tabs-nav {
    gap: 3rem;
  }
}
.section-apartment .layouts-tabs-nav .button {
  color: #003767;
  font-weight: 600;
  min-width: 25%;
  width: 48%;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .section-apartment .layouts-tabs-nav .button {
    font-size: 1.4rem;
    width: auto;
    min-width: auto;
  }
}
.section-apartment .layouts-tabs-nav .button::before {
  background: #e0e0e0;
}
.section-apartment .layouts-tabs-nav .button.active, .section-apartment .layouts-tabs-nav .button:hover {
  color: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.section-apartment .layouts-tabs-nav .button.active::before, .section-apartment .layouts-tabs-nav .button:hover::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.section-apartment .layouts-tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.section-apartment .layouts-tab-pane.active {
  display: block;
}
.section-apartment .layouts-tab-pane.show {
  opacity: 1;
}
.section-apartment .floor-plan-card {
  max-width: 85%;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-apartment .floor-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.section-apartment .floor-plan-card__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-apartment .floor-plan-card__image-wrap .image-2d {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-apartment .floor-plan-card__vr-wrap iframe {
  background-color: #000000;
}
.section-apartment .floor-plan-card__vr-wrap .btn-close-vr {
  width: 4rem;
  height: 4rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.section-apartment .floor-plan-card__vr-wrap .btn-close-vr svg {
  transition: transform 0.3s ease;
}
.section-apartment .floor-plan-card__vr-wrap .btn-close-vr:hover {
  transform: scale(1.1);
  background-color: #f1f1f1 !important;
}
.section-apartment .floor-plan-card__vr-wrap .btn-close-vr:hover svg {
  transform: rotate(90deg);
}
@keyframes vrPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.section-consultation-form {
  background-color: #013767;
}
.section-consultation-form .consult-guidelines-timeline .timeline-line {
  left: 0;
  width: 1px;
  border-left-style: dashed !important;
}
.section-consultation-form .consult-guidelines-timeline .timeline-marker {
  width: 16px;
  height: 16px;
  left: -47px;
  top: 13px;
  border: 1px solid #013767;
  box-shadow: 0 0 0 3px #ffffff;
  transform: translate(0, -47%);
}
@media (max-width: 767.98px) {
  .section-consultation-form .consult-guidelines-timeline .timeline-marker {
    left: -27px;
    top: 10px;
  }
}
.section-consultation-form .consult-guidelines-timeline .timeline-marker::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-consultation-form .consult-guidelines-timeline .timeline-content li {
  margin-bottom: 1rem;
}
.section-consultation-form .consult-form-wrapper {
  font-size: 1.6rem;
}
.section-consultation-form .consult-form-wrapper .form-control {
  background-color: #ffffff;
  color: #003767;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
}
.section-consultation-form .consult-form-wrapper .form-control::-moz-placeholder {
  color: #003767;
}
.section-consultation-form .consult-form-wrapper .form-control::placeholder {
  color: #003767;
}
.section-consultation-form .consult-form-wrapper .select2-container--default {
  width: 100% !important;
}
.section-consultation-form .consult-form-wrapper .select2-container--default .select2-selection--single {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 1.5rem;
  height: 4.6rem;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.section-consultation-form .consult-form-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #003767 !important;
  padding-left: 0 !important;
  padding-right: 25px !important;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
}
.section-consultation-form .consult-form-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(0, 55, 103, 0.6) !important;
}
.section-consultation-form .consult-form-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
  right: 15px !important;
  width: 12px !important;
  height: 12px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23003767' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.section-consultation-form .consult-form-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}
.section-consultation-form .consult-form-wrapper .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #eb5830 !important;
}
.section-consultation-form .consult-form-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.select2-dropdown {
  border: 1px solid rgba(0, 55, 103, 0.2) !important;
  border-radius: 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 55, 103, 0.08) !important;
  z-index: 99999;
}
.select2-dropdown .select2-results__option {
  padding: 1rem 1.4rem !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #003767 !important;
  background-color: transparent !important;
  transition: all 0.2s ease;
}
.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(235, 88, 48, 0.1) !important;
  color: #eb5830 !important;
}
.select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #eb5830 !important;
  color: #ffffff !important;
}

.section-financial-partners {
  background-color: #fffaee;
  font-family: "Google Sans", sans-serif;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section-financial-partners {
    padding: 5rem 0;
  }
}
.section-financial-partners .partners-title {
  max-width: 60%;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .section-financial-partners .partners-title {
    max-width: 75%;
    margin: 0;
  }
}
.section-financial-partners .partners-list {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .section-financial-partners .partners-list {
    margin-top: 0;
  }
}
.section-financial-partners .partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.section-financial-partners .partner-logo-wrapper {
  height: 70px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.section-financial-partners .partner-logo-wrapper img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-financial-partners .partner-logo-wrapper:hover {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .section-financial-partners .partner-logo-wrapper {
    height: 100px;
  }
}
.section-financial-partners .partner-logo {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-financial-partners .partner-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.section-financial-partners .partner-description {
  font-size: 1.15rem;
  line-height: 1.4;
  color: #434343;
  max-width: 220px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-financial-partners .partner-description {
    font-size: 1.3rem;
    max-width: 260px;
  }
}

.site-footer {
  font-family: "Google Sans", sans-serif;
  border-top: 1px solid #f1f1f1;
}
.site-footer .footer-top {
  background-color: #ffffff;
}
.site-footer .footer-logo {
  max-height: 100px;
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .site-footer .footer-logo {
    max-height: 120px;
  }
}
.site-footer .footer-company-name {
  font-size: 1.6rem;
  color: #003767;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .site-footer .footer-company-name {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-company-name {
    font-size: 2.1rem;
  }
}
.site-footer .footer-info-list {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #434343;
  padding-left: 0;
}
@media (min-width: 768px) {
  .site-footer .footer-info-list {
    font-size: 1.45rem;
  }
}
.site-footer .footer-info-item strong.info-label {
  color: #231f1e;
  font-weight: 700;
}
.site-footer .footer-info-item .info-bullet {
  color: #003767;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  top: 2px;
}
.site-footer .footer-info-item .info-value {
  color: #434343;
}
.site-footer .footer-info-item .info-value-link {
  color: #434343;
  transition: color 0.2s ease;
}
.site-footer .footer-info-item .info-value-link:hover {
  color: #003767;
  text-decoration: underline;
}
.site-footer .footer-bottom {
  background-color: #003767;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    font-size: 1.3rem;
  }
}
.site-footer .footer-bottom .copyright-text {
  color: rgba(255, 255, 255, 0.85);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background: transparent;
}
.site-header .container {
  max-width: 1440px;
}
.site-header .img-logo {
  height: auto;
  max-width: 95px;
  display: block;
}

.menu-mobile {
  display: block;
  z-index: 10001;
}
.menu-mobile__toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}
.menu-mobile__toggle .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #003767;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.menu-mobile__toggle .line:nth-child(2) {
  width: 80%;
  margin-left: auto;
}
.menu-mobile__toggle.is-active .line {
  background-color: #ffffff;
}
.menu-mobile__toggle.is-active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-mobile__toggle.is-active .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-mobile__toggle.is-active .line:nth-child(3) {
  transform: translateY(-19px) rotate(-45deg);
}

.main-header__navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-header__cta {
  display: none;
}

#site-navigation.main-header__navigation {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 55, 103, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#site-navigation.main-header__navigation.is-opened {
  opacity: 1;
  visibility: visible;
}
#site-navigation.main-header__navigation.is-opened .main-menu > li {
  opacity: 1;
  transform: translateY(0);
}
#site-navigation.main-header__navigation.is-closing {
  opacity: 0;
  visibility: hidden;
}
#site-navigation.main-header__navigation.is-closing .main-menu > li {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}
#site-navigation.main-header__navigation .main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: auto 0;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
#site-navigation.main-header__navigation .main-menu::-webkit-scrollbar {
  display: none;
}
#site-navigation.main-header__navigation .main-menu > li {
  margin: 1rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(1) {
  transition-delay: 0.1s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(2) {
  transition-delay: 0.18s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(3) {
  transition-delay: 0.26s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(4) {
  transition-delay: 0.34s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(5) {
  transition-delay: 0.42s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(6) {
  transition-delay: 0.5s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(7) {
  transition-delay: 0.58s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(8) {
  transition-delay: 0.66s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(9) {
  transition-delay: 0.74s;
}
#site-navigation.main-header__navigation .main-menu > li:nth-child(10) {
  transition-delay: 0.82s;
}
#site-navigation.main-header__navigation .main-menu > li > a {
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  line-height: 120%;
  letter-spacing: -5%;
  display: block;
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}
@media (min-width: 768px) {
  #site-navigation.main-header__navigation .main-menu > li > a {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  #site-navigation.main-header__navigation .main-menu > li > a {
    font-size: 3rem;
  }
}
#site-navigation.main-header__navigation .main-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #eb5830;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#site-navigation.main-header__navigation .main-menu > li > a:hover {
  color: #eb5830;
}
#site-navigation.main-header__navigation .main-menu > li > a:hover::after {
  width: 100%;
  left: 0;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .arrow-toggle {
  background: none;
  border: none;
  color: #ffffff;
  padding: 8px;
  margin-top: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .arrow-toggle .arrow {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .arrow-toggle:hover .arrow {
  border-color: #eb5830;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children.is-open .arrow-toggle .arrow {
  transform: rotate(-135deg);
  border-color: #eb5830;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  text-align: center;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li {
  margin: 10px 0;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li a {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  #site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li a {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  #site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li a {
    font-size: 2.2rem;
  }
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li a:hover {
  color: #ffffff;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li a svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#site-navigation.main-header__navigation .main-menu > li.menu-item-has-children .sub-menu li a:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

body.fixed-body {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

@media screen and (min-width: 1024px) {
  .main-header__cta {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .main-header__cta .btn {
    min-width: 19rem;
    font-weight: 600;
  }
}
/* --- 1. GIAO DIỆN BỐ CỤC --- */
.section-interactive-maps {
  background-color: #f7f7f4;
  position: relative;
}
.section-interactive-maps::before {
  content: "";
  position: absolute;
  top: -24%;
  left: -13%;
  width: 50%;
  height: 35%;
  background-image: url("../assets/images/bg_hoa_3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  pointer-events: none;
}

.interactive-map-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #003767; /* Matches maps background color */
}

/* Cột chứa bộ lọc */
.map-sidebar {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 280px;
  max-width: calc(100vw - 60px);
  padding: 24px;
  background: rgba(0, 55, 103, 0.85); /* Theme primary blue with transparency */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .map-sidebar {
    right: 15px;
    top: auto;
    bottom: 30px;
    transform: none;
    width: calc(100% - 30px);
    padding: 16px;
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.map-sidebar .map-sidebar-subtitle {
  flex: 0 0 100%;
}
@media (max-width: 767.98px) {
  .map-sidebar .map-sidebar-subtitle {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
}
.map-sidebar .map-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  background: #eb5830;
  color: #ffffff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(235, 88, 48, 0.3);
}
.map-sidebar .map-cta-btn:hover {
  background: rgb(232.7533039648, 69.2400881057, 24.7466960352);
  box-shadow: 0 6px 20px rgba(235, 88, 48, 0.4);
}
@media (max-width: 767.98px) {
  .map-sidebar .map-cta-btn {
    width: auto;
    min-width: 150px;
    padding: 8px 16px;
    margin-top: 8px !important;
  }
}

/* Nút bấm bộ lọc */
.filter-btn {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-align: left;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}
.filter-btn .icon {
  display: none;
}
@media (min-width: 768px) {
  .filter-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #ffffff;
  }
}
@media (max-width: 767.98px) {
  .filter-btn {
    padding: 8px 12px;
    font-size: 1.2rem;
  }
}
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.filter-btn {
  /* Trạng thái nút đang được chọn */
}
.filter-btn.active {
  background: #eb5830;
  color: #ffffff;
  border-color: #eb5830;
  box-shadow: 0 4px 12px rgba(235, 88, 48, 0.3);
  font-weight: 700;
}

/* Khu vực chứa bản đồ */
.map-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.map-content:active {
  cursor: grabbing;
}

.map-display {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
}

.map-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}

.map-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform-origin: center;
}
.map-layer.poi-hidden {
  opacity: 0;
  transform: scale(0.95);
}
.map-layer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Bộ điều khiển thu phóng (Zoom controls) */
.map-zoom-controls {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
}
@media (max-width: 767.98px) {
  .map-zoom-controls {
    left: 90%;
    bottom: auto;
    top: 25px;
  }
}

.zoom-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 55, 103, 0.85); /* Theme primary blue with transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
}
@media (max-width: 767.98px) {
  .zoom-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
.zoom-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.zoom-btn:active {
  transform: scale(0.95);
}
.zoom-btn.zoom-reset {
  font-size: 18px;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .zoom-btn.zoom-reset {
    font-size: 15px;
  }
}

.button-maps {
  position: absolute;
  z-index: 1000;
  bottom: -10%;
  left: 0;
  right: 0;
}

.tg-hlc-wrapper {
  font-family: "Google Sans", sans-serif;
  color: #003767;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .tg-hlc-wrapper {
    max-width: 80%;
    margin: 0 auto;
  }
}
.tg-hlc-wrapper * {
  box-sizing: border-box;
}
.tg-hlc-wrapper .tg-hlc-card {
  background: #ffffff;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: none;
  border: 0;
}
.tg-hlc-wrapper .tg-hlc-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #003767;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.tg-hlc-wrapper .tg-hlc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
}
@media (max-width: 992px) {
  .tg-hlc-wrapper .tg-hlc-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.tg-hlc-wrapper .tg-hlc-form-group {
  margin-bottom: 1.8rem;
}
.tg-hlc-wrapper .tg-hlc-label-row {
  margin-bottom: 0.8rem;
}
.tg-hlc-wrapper .tg-hlc-label-row label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
}
.tg-hlc-wrapper .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
}
.tg-hlc-wrapper .tg-hlc-input-slider-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tg-hlc-wrapper .tg-hlc-slider-wrap {
  flex-grow: 1;
}
.tg-hlc-wrapper .tg-hlc-range {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(0, 55, 103, 0.08);
  border-radius: 3px;
  outline: none;
  margin: 0;
  padding: 0;
}
.tg-hlc-wrapper .tg-hlc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 3px solid #003767;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 55, 103, 0.15);
  -webkit-transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}
.tg-hlc-wrapper .tg-hlc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  border-color: #eb5830;
  box-shadow: 0 6px 14px rgba(235, 88, 48, 0.25);
}
.tg-hlc-wrapper .tg-hlc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 3px solid #003767;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 55, 103, 0.15);
  -moz-transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}
.tg-hlc-wrapper .tg-hlc-range::-moz-range-thumb:hover {
  transform: scale(1.2);
  border-color: #eb5830;
  box-shadow: 0 6px 14px rgba(235, 88, 48, 0.25);
}
.tg-hlc-wrapper .tg-hlc-number-wrap {
  position: relative;
  width: 120px;
  display: flex;
  align-items: center;
  height: 48px;
  border: 1.5px solid rgba(0, 55, 103, 0.1);
  border-radius: 12px;
  gap: 0.25rem;
  justify-content: center;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tg-hlc-wrapper .tg-hlc-number-wrap:focus-within {
  border-color: #003767;
  box-shadow: 0 0 0 3px rgba(0, 55, 103, 0.08);
}
.tg-hlc-wrapper .tg-hlc-number {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-align: right;
  width: 60px;
  background: transparent;
  outline: none;
}
.tg-hlc-wrapper .tg-hlc-number::-webkit-outer-spin-button, .tg-hlc-wrapper .tg-hlc-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tg-hlc-wrapper .tg-hlc-number {
  -moz-appearance: textfield;
}
.tg-hlc-wrapper .tg-hlc-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  pointer-events: none;
}
.tg-hlc-wrapper .tg-hlc-input-double-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tg-hlc-wrapper .tg-hlc-select-wrap {
  flex-grow: 1;
}
.tg-hlc-wrapper .tg-hlc-select {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border: 1.5px solid rgba(0, 55, 103, 0.1);
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  outline: none;
  background: #ffffff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23003767' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat right 16px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tg-hlc-wrapper .tg-hlc-select:focus {
  border-color: #003767;
  box-shadow: 0 0 0 3px rgba(0, 55, 103, 0.08);
}
.tg-hlc-wrapper .tg-hlc-radio-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-radio-row {
    flex-direction: column;
    gap: 1rem;
  }
}
.tg-hlc-wrapper .tg-hlc-radio-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  color: #003767;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 36px;
  line-height: 1.3;
}
.tg-hlc-wrapper .tg-hlc-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.tg-hlc-wrapper .tg-hlc-radio-container:hover input ~ .tg-hlc-radio-checkmark {
  border-color: #003767;
}
.tg-hlc-wrapper .tg-hlc-radio-container input:checked ~ .tg-hlc-radio-checkmark {
  border-color: #003767;
  border-width: 7px;
}
.tg-hlc-wrapper .tg-hlc-radio-checkmark {
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid rgba(0, 55, 103, 0.15);
  border-radius: 50%;
  background-color: #ffffff;
  transition: border-color 0.2s ease, border-width 0.2s ease;
}
.tg-hlc-wrapper .tg-hlc-results-box {
  background: #f7f7f4;
  border-radius: 0;
  border: 0;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
.tg-hlc-wrapper .tg-hlc-result-heading {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #003767;
  margin-top: 0;
  margin-bottom: 1.8rem;
  border-bottom: 1.5px solid rgba(0, 55, 103, 0.08);
  padding-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.tg-hlc-wrapper .tg-hlc-result-split {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-result-split {
    flex-direction: column;
    text-align: center;
  }
}
.tg-hlc-wrapper .tg-hlc-chart-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.tg-hlc-wrapper .tg-hlc-chart-container {
  position: relative;
  width: 170px;
  height: 170px;
}
.tg-hlc-wrapper .tg-hlc-donut {
  width: 100%;
  height: 100%;
}
.tg-hlc-wrapper .tg-hlc-donut-track {
  stroke: rgba(0, 55, 103, 0.06);
}
.tg-hlc-wrapper .tg-hlc-donut-segment {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1), stroke-dasharray 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.tg-hlc-wrapper .tg-hlc-chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80%;
}
.tg-hlc-wrapper .tg-hlc-chart-total-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #003767;
  line-height: 1.1;
}
.tg-hlc-wrapper .tg-hlc-chart-total-unit {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003767;
  margin-top: 2px;
}
.tg-hlc-wrapper .tg-hlc-details-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.tg-hlc-wrapper .tg-hlc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tg-hlc-wrapper .tg-hlc-detail-label {
  font-size: 1.35rem;
  font-weight: 700;
  color: #003767;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-detail-label {
    justify-content: center;
  }
}
.tg-hlc-wrapper .tg-hlc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.tg-hlc-wrapper .tg-hlc-dot.bg-blue {
  background-color: #003767;
}
.tg-hlc-wrapper .tg-hlc-dot.bg-teal {
  background-color: #3db0bb;
}
.tg-hlc-wrapper .tg-hlc-dot.bg-pink {
  background-color: #eb5830;
}
.tg-hlc-wrapper .color-blue {
  color: #003767 !important;
}
.tg-hlc-wrapper .color-teal {
  color: #3db0bb !important;
}
.tg-hlc-wrapper .color-pink {
  color: #eb5830 !important;
}
.tg-hlc-wrapper .tg-hlc-detail-value {
  font-size: 1.5rem;
  font-weight: 800;
  padding-left: 20px;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-detail-value {
    padding-left: 0;
    text-align: center;
  }
}
.tg-hlc-wrapper .tg-hlc-divider {
  border: 0;
  border-top: 1.5px solid rgba(0, 55, 103, 0.08);
  margin: 1.5rem 0;
}
.tg-hlc-wrapper .tg-hlc-monthly-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-monthly-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.tg-hlc-wrapper .tg-hlc-monthly-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
}
.tg-hlc-wrapper .tg-hlc-monthly-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #003767;
}
.tg-hlc-wrapper .tg-hlc-actions {
  margin-top: auto;
}
.tg-hlc-wrapper .tg-hlc-financial-assessment {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tg-hlc-wrapper .tg-hlc-assessment-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #003767;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-assessment-title {
    justify-content: center;
  }
}
.tg-hlc-wrapper .tg-hlc-assessment-icon {
  display: flex;
  align-items: center;
  color: #003767;
}
.tg-hlc-wrapper .tg-hlc-assessment-icon svg g [id="059---Money-Bag"] {
  fill: #003767;
}
.tg-hlc-wrapper .tg-hlc-assessment-icon svg path {
  fill: #003767 !important;
}
.tg-hlc-wrapper .tg-hlc-dti-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .tg-hlc-wrapper .tg-hlc-dti-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.tg-hlc-wrapper .tg-hlc-dti-label {
  font-size: 1.35rem;
  font-weight: 700;
  color: #003767;
}
.tg-hlc-wrapper .tg-hlc-dti-value {
  font-size: 1.5rem;
  font-weight: 800;
  transition: color 0.3s ease;
}
.tg-hlc-wrapper .tg-hlc-progress-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tg-hlc-wrapper .tg-hlc-progress-track {
  width: 100%;
  height: 12px;
  background: rgba(0, 55, 103, 0.08);
  border-radius: 6px;
  overflow: hidden;
}
.tg-hlc-wrapper .tg-hlc-progress-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.tg-hlc-wrapper .tg-hlc-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #003767;
  opacity: 0.8;
}
.tg-hlc-wrapper .bg-safe {
  background-color: #4fb80a !important;
}
.tg-hlc-wrapper .bg-moderate {
  background-color: #eb5830 !important;
}
.tg-hlc-wrapper .bg-risky {
  background-color: #ad0b03 !important;
}
.tg-hlc-wrapper .text-safe {
  color: #4fb80a !important;
}
.tg-hlc-wrapper .text-moderate {
  color: #eb5830 !important;
}
.tg-hlc-wrapper .text-risky {
  color: #ad0b03 !important;
}
.tg-hlc-wrapper .tg-hlc-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #fff0f2;
  border: 1px solid rgba(235, 88, 48, 0.15);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 0.5rem;
  color: #eb5830;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  animation: tg-hlc-fade-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tg-hlc-wrapper .tg-hlc-warning-icon {
  display: flex;
  align-items: center;
  margin-top: 2px;
  flex-shrink: 0;
  color: #eb5830;
}
.tg-hlc-wrapper .tg-hlc-recommendation-box {
  background-color: #003767;
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 55, 103, 0.15);
}
.tg-hlc-wrapper .tg-hlc-recommend-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}
.tg-hlc-wrapper .tg-hlc-recommend-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.tg-hlc-wrapper .tg-hlc-btn-primary {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
  color: #ffffff;
  border: none;
  height: 52px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(235, 88, 48, 0.25);
  outline: none;
}
.tg-hlc-wrapper .tg-hlc-btn-primary svg,
.tg-hlc-wrapper .tg-hlc-btn-primary svg path {
  stroke: currentColor;
}
.tg-hlc-wrapper .tg-hlc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235, 88, 48, 0.4);
}
.tg-hlc-wrapper .tg-hlc-btn-primary:active {
  transform: translateY(0);
}
.tg-hlc-wrapper .tg-hlc-btn-secondary {
  background: transparent;
  border: 2px solid #003767;
  color: #003767;
  height: 52px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-hlc-wrapper .tg-hlc-btn-secondary:hover {
  background: #003767;
  color: #ffffff;
  transform: translateY(-1px);
}
.tg-hlc-wrapper .tg-hlc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-hlc-wrapper .tg-hlc-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #003767;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.tg-hlc-wrapper .tg-hlc-guide-link:hover {
  color: #003767;
  opacity: 0.85;
  text-decoration: underline;
}
.tg-hlc-wrapper .tg-hlc-icon-doc {
  display: flex;
  align-items: center;
  color: #003767;
}

@media (max-width: 576px) {
  .tg-hlc-inputs-col .tg-hlc-form-group.text-center #tg-hlc-calc-btn {
    width: 100% !important;
  }
}
.tg-hlc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 55, 103, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.tg-hlc-modal-overlay .tg-hlc-modal-card {
  background: #ffffff;
  border-radius: 1.5rem !important;
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 55, 103, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: tg-hlc-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 1.5rem;
  color: #003767;
  font-family: "Google Sans", sans-serif;
}
.tg-hlc-modal-overlay .tg-hlc-modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f1f1;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 300;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  color: #808080;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-hlc-modal-overlay .tg-hlc-modal-close-btn:hover {
  background: #eb5830;
  color: #ffffff;
}
.tg-hlc-modal-overlay .tg-hlc-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #003767;
  margin-top: 0;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.tg-hlc-modal-overlay .tg-hlc-modal-desc {
  font-size: 1.35rem;
  color: #003767;
  opacity: 0.85;
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.tg-hlc-modal-overlay .tg-hlc-modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.tg-hlc-modal-overlay .tg-hlc-modal-form-group label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003767;
}
.tg-hlc-modal-overlay .tg-hlc-modal-input {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border: 1.5px solid rgba(0, 55, 103, 0.1);
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #003767;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tg-hlc-modal-overlay .tg-hlc-modal-input::-moz-placeholder {
  color: rgba(0, 55, 103, 0.35);
}
.tg-hlc-modal-overlay .tg-hlc-modal-input::placeholder {
  color: rgba(0, 55, 103, 0.35);
}
.tg-hlc-modal-overlay .tg-hlc-modal-input:focus {
  border-color: #003767;
  box-shadow: 0 0 0 3px rgba(0, 55, 103, 0.08);
}
.tg-hlc-modal-overlay .tg-hlc-modal-input.has-error {
  border-color: #eb5830;
  background-color: #fffafb;
}
.tg-hlc-modal-overlay .tg-hlc-modal-input.has-error:focus {
  box-shadow: 0 0 0 3px rgba(235, 88, 48, 0.1);
}
.tg-hlc-modal-overlay .tg-hlc-error-msg {
  display: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #eb5830;
  margin-top: 4px;
}
.tg-hlc-modal-overlay .tg-hlc-modal-input.has-error ~ .tg-hlc-error-msg {
  display: block;
}
.tg-hlc-modal-overlay .tg-hlc-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@keyframes tg-hlc-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tg-hlc-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.news-listing-block {
  padding: 4rem 0;
  background-color: #f7f7f4;
  background-image: url(../assets/images/bg_flower-2.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
@media (min-width: 768px) {
  .news-listing-block {
    height: 100vh;
  }
}

.news-item__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-item__image {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.news-item__image:hover img {
  transform: scale(1.08);
}
.news-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-item__meta {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.news-item__category {
  color: #eb5830;
  font-weight: 700;
  text-transform: uppercase;
}
.news-item__meta-separator {
  color: #ccc;
}
.news-item__title {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .news-item__title {
    font-size: 2rem;
  }
}
.news-item__title a {
  display: block;
  text-decoration: none;
  color: #003767;
  transition: color 0.3s ease;
  letter-spacing: -5%;
  line-height: 120%;
}
.news-item__title a:hover {
  color: #eb5830;
}
.news-item__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__link {
  margin-top: auto;
}
.news-item__link .view-details {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #003767;
  border-bottom: 1.5px solid #003767;
  padding-bottom: 0.4rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-item__link .view-details svg {
  transition: transform 0.3s ease;
}
.news-item__link .view-details:hover {
  color: #eb5830;
  border-bottom-color: #eb5830;
}
.news-item__link .view-details:hover svg {
  transform: translate(3px, -3px);
}

.news-grid {
  gap: 4rem 3.2rem;
}

.declared-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  padding: 1.6rem 2.4rem;
  background: linear-gradient(135deg, rgba(0, 55, 103, 0.03) 0%, rgba(235, 88, 48, 0.03) 100%);
  border: 1px solid rgba(0, 55, 103, 0.08);
  border-radius: 1.2rem;
}
.declared-categories.justify-content-center {
  justify-content: center;
}
.declared-categories__label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.declared-categories__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.declared-categories__tag {
  font-size: 1.3rem;
  font-weight: 500;
  color: #eb5830;
  background: rgba(235, 88, 48, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 5rem;
  border: 1px solid rgba(235, 88, 48, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}
.declared-categories__tag:hover {
  background: #eb5830;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(235, 88, 48, 0.25);
}

.load-more-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
  width: 100%;
}

#ttc-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #003767;
  border: 1px solid #003767;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 55, 103, 0.12);
  text-decoration: none;
}
#ttc-load-more-btn svg {
  transition: transform 0.3s ease;
}
#ttc-load-more-btn:hover {
  background-color: #eb5830;
  border-color: #eb5830;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(235, 88, 48, 0.2);
}
#ttc-load-more-btn:hover svg {
  transform: translate(3px, -3px);
}
#ttc-load-more-btn:active {
  transform: translateY(0);
}

.project-loader .spinner-border {
  color: #eb5830 !important;
}

.news-detail {
  padding: 4rem 0;
}
.news-detail__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.news-detail__sidebar {
  margin-bottom: 2rem;
}
.news-detail__sidebar .news-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news-detail__title {
  color: #003767;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 0;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 55, 103, 0.15);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}
.news-detail__meta .news-detail__category {
  color: #eb5830;
}
.news-detail__meta .news-detail__category a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: -5%;
  line-height: 120%;
}
.news-detail__meta .news-detail__category a:hover {
  color: #003767;
}
.news-detail__meta .news-detail__separator {
  color: #ccc;
}
.news-detail__meta .news-detail__date {
  color: #434343;
  letter-spacing: -5%;
  line-height: 120%;
}
.news-detail__content {
  flex: 1;
}
.news-detail .news-sidebar-link {
  margin-top: 1rem;
}
.news-detail .news-sidebar-link .back-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #003767;
  border-bottom: 1.5px solid #003767;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-detail .news-sidebar-link .back-link svg {
  transition: transform 0.3s ease;
}
.news-detail .news-sidebar-link .back-link:hover {
  color: #eb5830;
  border-bottom-color: #eb5830;
}
.news-detail .news-sidebar-link .back-link:hover svg {
  transform: translate(3px, -3px);
}

.news-content-body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #231f1e;
}
.news-content-body p {
  margin-bottom: 2rem;
  text-align: justify;
}
.news-content-body p:last-child {
  margin-bottom: 0;
}
.news-content-body h2,
.news-content-body h3,
.news-content-body h4,
.news-content-body h5,
.news-content-body h6 {
  color: #003767;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 3.5rem;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}
.news-content-body h2 {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
}
.news-content-body h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
}
.news-content-body h4 {
  font-size: clamp(1.6rem, 2.4vw, 1.8rem);
}
.news-content-body ul,
.news-content-body ol {
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
}
.news-content-body ul li,
.news-content-body ol li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.news-content-body ul li::marker,
.news-content-body ol li::marker {
  color: #eb5830;
}
.news-content-body a {
  color: #eb5830;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.news-content-body a:hover {
  color: #003767;
  text-decoration: none;
}
.news-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem !important;
  display: block;
  margin: 0 auto;
}
.news-content-body .wp-block-image {
  margin: 3.5rem 0;
}
.news-content-body .wp-block-image figcaption {
  font-size: 1.3rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}
.news-content-body .wp-block-gallery {
  margin: 3.5rem 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.news-content-body .wp-block-gallery figure {
  margin: 0;
}
.news-content-body .wp-block-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem !important;
}
.news-content-body .wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3.5rem 0;
}
@media (min-width: 768px) {
  .news-content-body .wp-block-columns {
    flex-direction: row;
  }
  .news-content-body .wp-block-columns .wp-block-column {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .news-detail {
    padding: 8rem 0;
  }
  .news-detail__layout {
    flex-direction: row;
    gap: 8rem;
  }
  .news-detail__sidebar {
    flex: 0 0 35%;
    margin-bottom: 0;
  }
  .news-detail__sidebar .sticky {
    position: sticky;
    top: 10rem;
  }
  .news-detail__content {
    flex: 1;
    max-width: 65%;
  }
  .news-content-body {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .news-content-body p {
    margin-bottom: 2.5rem;
  }
  .news-content-body .wp-block-image {
    margin: 4.5rem 0;
  }
  .news-content-body .wp-block-gallery {
    margin: 4.5rem 0;
    gap: 2rem;
  }
  .news-content-body .wp-block-columns {
    margin: 4.5rem 0;
    gap: 2rem;
  }
}
/*# sourceMappingURL=apps.css.map */
