* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.db-pc {
  display: block !important;
}
.db-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .db-pc {
    display: none !important;
  }
  .db-mobile {
    display: block !important;
  }
}
.fade-in {
  opacity: 0;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.fade-in.animate {
  opacity: 1;
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.slide-in-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.parallax {
  transition: transform 0.3s ease-out;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background-color: #fff9f0;
  min-height: 100vh;
  font-family: "Times Sans Serif";
  color: #ffffff;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.png?v=0.0.1");
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: fixed;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
body > * {
  position: relative;
  z-index: 1;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(144, 43, 43, 0.5);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  backdrop-filter: blur(5px);
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-icon {
  width: 180px;

  height: auto;
  animation: float 2s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}
.loader-text {
  color: #ffffff;
  font-family: "SFU Franklin Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInText 1s ease-in forwards 0.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 10px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  }
}
.loader-icon {
  animation:
    float 2s infinite ease-in-out,
    pulse 2s infinite ease-in-out;
}
@media (min-width: 768.99px) {
  .mobile {
    display: none !important;
  }
  .desktop {
    display: block;
  }
}
@media (max-width: 768px) {
  .mobile {
    display: block !important ;
  }
  .desktop {
    display: none !important ;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.header {
  position: relative;
  width: 100%;
}
.hero {
  position: relative;
  width: 100%;
}
.hero-logo-left {
  position: absolute;
  top: 0;
  left: 10%;
  z-index: 20;
}
.hero-logo-right {
  position: absolute;
  top: 3%;
  right: 6%;
  z-index: 20;
  width: 20%;
}
.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 70vh;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  z-index: 15;
  width: 40%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
.hero-overlay.animation-complete {
  will-change: auto;
  animation: none;
  -webkit-animation: none;
}
.hero-animate-bg {
  opacity: 0;
  transform: scale(1.1);
  animation: heroFadeInScale 1.2s ease-out forwards;
}
.hero-bg-img {
  transition: transform 0.3s ease-out;
}
.hero-image.parallax-active .hero-bg-img {
  transform: scale(1.05);
}
.hero-animate-logo-left {
  opacity: 0;
  transform: translateX(-80px);
  animation: heroSlideInLeft 1s ease-out 0.3s forwards;
}
.hero-animate-logo-right {
  opacity: 0;
  transform: translateX(80px);
  animation: heroSlideInRight 1s ease-out 0.3s forwards;
}
.hero-animate-overlay {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.6);
  animation: heroOverlayFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s
    forwards;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.batchatsongrieng-hero {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: blur(0);
  -webkit-filter: blur(0);
  pointer-events: none;
}
@keyframes heroFadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroOverlayFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  pointer-events: auto;
}
.scroll-indicator-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}
.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.mobile-nav-button-wrapper {
  display: none;
}
.nav-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.scroll-indicator-img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: bounce-down 1s infinite;
  cursor: pointer;
  transition: transform 0.9s ease;
}
.scroll-indicator-img:hover {
  transform: translateY(5px);
}
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  background-image: url("../images/bg-main-menu.png?v=0.0.1");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  position: relative;
  min-height: 60px;
  pointer-events: auto;
  z-index: 2;
}
.nav-list > * {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.nav-link {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #902b2b;
  opacity: 0.4;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  pointer-events: auto;
  z-index: 3;
}
.nav-link:hover {
  opacity: 1;
}
.nav-link.active {
  color: #902b2b;
  opacity: 1;
}
.floating-contact {
  gap: 0px;
  right: 1%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
  position: fixed;
}
@media (max-width: 780px) {
  .floating-contact {
    bottom: 100px;
  }
}
.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
}
.contact-icon {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.contact-icon:hover {
  transform: scale(1.05);
}
.contact-icon.db-mobile {
  position: relative;
  animation: phoneShake 1s ease-in-out infinite;
  transform-origin: center top;
}
.hotline-btn {
  transition: transform 0.3s ease;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  animation: phonePulse 1.2s ease-in-out infinite;
}
.hotline-btn:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}
.hotline-btn img {
  transition: transform 0.3s ease;
  display: block;
}
.section {
  padding: 80px 0;
  position: relative;
}
.section-120 {
  padding: 120px 0 80px 0;
  position: relative;
}
section[id] {
  scroll-margin-top: 150px;
  scroll-padding-top: 150px;
}
.lifestyle-content {
  margin: 0 auto;
}
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
  margin-bottom: 60px;
}
.lifestyle-visuals {
  position: relative;
}
.lifestyle-image-wrapper {
  position: relative;
  width: 100%;
}
.lifestyle-main-img {
  max-width: 100%;
  height: auto;
  display: block;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.lifestyle-circle-overlay {
  position: absolute;
  bottom: -175px;
  right: -160px;
  z-index: 3;
}
.lifestyle-circle-img {
  object-fit: cover;
  display: block;
  max-width: 100%;
}
.lifestyle-text-content {
  padding: 40px 0;
  width: 65%;
}
.lifestyle-title-svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.lifestyle-text {
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
  margin-bottom: 10px;
}
.lifestyle-text-bold {
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-align: center;
  font-weight: 600;
}
.role-section {
  position: relative;
  margin-top: 60px;
}
.role-title-section {
  text-align: center;
  margin-bottom: 20px;
}
.role-title-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.role-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.role-image {
  position: relative;
  width: 100%;
}
.role-image img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.role-sub-image-left {
  position: absolute;
  bottom: -8%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 10;
  width: 31%;
}
.role-sub-image-right {
  position: absolute;
  bottom: -8%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 10;
  width: 31%;
}
.role-sub-image-left img,
.role-sub-image-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.role-sub-image-left.slide-in-left {
  opacity: 0;
  transform: translateY(-50%) translateX(-50px);
}
.role-sub-image-left.slide-in-left.animate {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.role-sub-image-right.slide-in-right {
  opacity: 0;
  transform: translateY(-50%) translateX(50px);
}
.role-sub-image-right.slide-in-right.animate {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.strategic-location-container {
  display: flex;
  gap: 8%;
  align-items: center;
  justify-content: center;
}
.strategic-location-section {
  position: relative;
}
.strategic-location-content {
  margin: 0 auto;
  position: relative;
  left: 10%;
  width: 41%;
}
.strategic-location-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: strategicLocationHeaderFadeIn 1s ease-out forwards;
  opacity: 0;
}
@keyframes strategicLocationHeaderFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.strategic-location-title-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.strategic-location-description {
  margin-bottom: 30px;
  margin-top: 10px;
}
.strategic-location-text {
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
  margin-bottom: 10px;
}
.strategic-location-text-bold {
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
  font-weight: 600;
}
.travel-times-list {
  display: flex;
  flex-direction: column;
}
.travel-times-list.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}
.travel-times-list.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.travel-time-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.travel-time-row {
  display: flex;
  gap: 30px;
  align-items: center;
}
.travel-time-row .travel-time-item {
  flex: 1;
  margin-bottom: 0;
}
.travel-time-number {
  font-size: 3.5rem;
  font-weight: 400;
  color: #2d5016;
  font-family: "SVN Harman Script", cursive;
  line-height: 1;
  min-width: 70px;
}
.travel-time-label {
  font-size: 1.5rem;
  color: #2d5016;
  font-family: "SVN Harman Script", cursive;
  font-weight: 400;
  font-style: italic;
  margin-left: -5px;
}
.travel-time-logos {
  flex: 1;
  display: flex;
  align-items: center;
}
.travel-time-image {
  max-width: 100%;
  height: auto;
  display: block;
}
.strategic-location-map {
  position: relative;
  width: 100%;
  height: 100%;
}
.strategic-location-map.desktop {
  display: block !important;
}
.strategic-location-map.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}
.strategic-location-map.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.map-image {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.clubhouse-section {
  position: relative;
  margin-top: 80px;
}
.clubhouse-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.clubhouse-title-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.clubhouse-description {
  max-width: 720px;
  margin: 0 auto;
}
.clubhouse-text {
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
  margin-bottom: 10px;
}
.clubhouse-showcase {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 40px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.showcase-card.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}
.showcase-card.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-card.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}
.showcase-card.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-image-wrapper img {
  max-width: 100%;
  margin: 0 auto;
}
.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.showcase-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.showcase-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
  transform-origin: center;
  filter: contrast(1) brightness(1);
}
.showcase-card:hover .showcase-image-wrapper img {
  transform: scale(1.01);
  filter: contrast(1.15) brightness(1.05);
}
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
.popup-modal.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10001;
}
.popup-container {
  position: relative;
  max-width: 100%;
  width: 95%;
  max-height: 95vh;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  overflow-y: auto;
  margin: 20px;
  animation: slideUp 0.4s ease;
}
.popup-container > * {
  position: relative;
  z-index: 1;
}
.popup-container > .popup-close {
  position: sticky;
  z-index: 10003;
}
.popup-close {
  position: sticky;
  top: 10px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  align-items: center;
  justify-content: center;
  z-index: 10003;
  transition: all 0.3s ease;
  padding: 0;
  margin-left: auto;
  margin-bottom: -50px;
  right: 10px;
}
.popup-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.popup-close:hover {
  transform: scale(1.1);
}
.popup-banner {
  padding: 50px 40px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: popupBannerFadeIn 0.8s ease-out forwards;
  opacity: 0;
  justify-content: center;
}
@keyframes popupBannerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.popup-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  background-image: url("../images/pattern.png?v=0.0.1");
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: local;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.popup-banner > * {
  position: relative;
  z-index: 1;
}
.popup-banner-text {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.popup-description {
  padding: 20px 40px 0px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: popupDescriptionFadeIn 1s ease-out forwards;
  opacity: 0;
  text-align: justify;
}
.popup-description .title-tab-clubhouse {
  text-align: center;
}
.popup-description .toamancu-description {
  margin-bottom: 30px;
}
@keyframes popupDescriptionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-description p {
  font-size: 18px;
  line-height: 1.2;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.popup-description p.title-tab-clubhouse {
  font-family: "Times Sans Serif";
  font-size: 30px;
  color: #347a64;
  text-transform: uppercase;
}
.club-house-description {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.club-house-description.active {
  opacity: 1;
}
.club-house-description img {
  max-width: 100%;
}
.top-content-description {
  margin-bottom: 40px;
  animation: topContentDescriptionFadeIn 1s ease-out forwards;
  opacity: 0;
}
@keyframes topContentDescriptionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-content-description-park {
  animation: topContentDescriptionParkFadeIn 1.5s ease-in-out forwards;
  opacity: 0;
}
@keyframes topContentDescriptionParkFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.club-house-description {
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.club-house-description.active {
  display: block;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.popup-description.club-house-description.active {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.floor-plan-middle .club-house-description {
  width: 100%;
  order: -1;
  height: 200px;
}
.floor-plan-middle .club-house-description p {
  margin-bottom: 10px;
}
.floor-plan-middle .club-house-description p:last-child {
  margin-bottom: 0;
}
.floor-plan-container {
  width: 100%;
  max-width: 1000px;
  animation: floorPlanContainerFadeIn 1s ease-out forwards;
  opacity: 0;
}
@keyframes floorPlanContainerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.clubhouse-floor-plan {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clubhouse-floor-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  background-image: url("../images/pattern.png?v=0.0.1");
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: local;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.clubhouse-floor-plan > * {
  position: relative;
  z-index: 1;
}
.floor-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: transparent;
}
.floor-tab-button-wrapper,
.floor-tabs-container {
  display: none;
}
.floor-tab {
  padding: 12px 63px;
  background: rgba(238, 211, 119, 0.5);
  color: #902b2b;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: "Times Sans Serif";
  cursor: pointer;
  transition:
    background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  will-change: background-color, color;
}
.floor-tab:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 0px;
}
.floor-tab:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 0px;
}
.floor-tab.active {
  background: #902b2b;
  color: #fff;
  z-index: 2;
}
.floor-tab:hover:not(.active) {
  background: #902b2b;
  color: #fff;
}
.floor-plan-content {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
  background-image:
    url("../images/bg-left-clubhouse-modal.png.png?v=0.0.1"),
    url("../images/bg-right-clubhouse-modal.png?v=0.0.1");
  background-position:
    left center,
    right center;
  background-repeat: no-repeat, no-repeat;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 731px;
}
.floor-plan-middle {
  background-color: #f0eecf;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  margin: 0;
  width: 77%;
  max-width: 100%;
  justify-content: flex-start;
}
.floor-plan-wrapper {
  position: relative;
  min-height: 477px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.floor-plan-item {
  display: none;
  opacity: 0;
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(10px);
}
.floor-plan-item.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes floorPlanItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.floor-plan-item img {
  height: auto;
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.floor-plan-content .legend-label {
  font-size: 16px;
  font-weight: 500;
  color: #58595b;
  font-family: "SFU Franklin Gothic";
}
.clubhouse-legend {
  width: 300px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-10px);
}
.clubhouse-legend.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  animation: none;
}
@keyframes clubhouseLegendFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.floor-plan-middle-content {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
  width: 100%;
}
.legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.legend-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.legend-item:last-child {
  margin-bottom: 0;
}
.legend-number {
  width: 55px;
  height: 28px;
  color: #902b2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  font-family: "SFU Franklin Gothic";
  flex-shrink: 0;
}
.legend-label {
  font-size: 14px;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.4;
  flex: 1;
}
.legend-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.legend-sub-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.legend-sub-item:last-child {
  margin-bottom: 0;
}
.legend-sub-number {
  width: 28px;
  height: 28px;
  background: #902b2b;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #902b2b;
  outline: 1px solid #902b2b;
  outline-offset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "SFU Franklin Gothic";
  flex-shrink: 0;
}
.legend-sub-label {
  font-size: 14px;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.4;
  flex: 1;
}
@media (max-width: 1024px) {
  .clubhouse-legend {
    width: 100%;
  }
  .floor-tabs {
    flex-wrap: wrap;
  }
  .floor-tab {
    flex: 1;
    min-width: 120px;
  }
}
.popup-floor-plan {
  padding: 20px 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.popup-floor-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  background-image: url("../images/pattern.png?v=0.0.1");
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: local;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.popup-floor-plan > * {
  position: relative;
  z-index: 1;
}
.popup-floor-plan img {
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.park-map-container {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 30px;
}
.park-map-wrapper {
  position: relative;
  width: 100%;
  display: inline-block;
  animation: parkMapWrapperFadeIn 1s ease-out forwards;
  opacity: 0;
}
@keyframes parkMapWrapperFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.park-map-wrapper img {
  height: auto;
  display: block;
  max-width: 100%;
}
.master-plan-map-container svg {
  border-radius: 30px;
  filter: drop-shadow(0 10px 0 #902b2b);
  max-width: 100%;
}
.park-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.park-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}
.park-tooltip.hidden {
  display: none;
}
.park-tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.park-tooltip-number {
  font-weight: 700;
  font-size: 16px;
  color: #ffd700;
}
.park-tooltip-name {
  font-size: 14px;
  color: #ffffff;
}
.park-legend {
  margin-top: 30px;
  padding: 20px;
  border-radius: 8px;
}
.park-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.park-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}
.park-legend-number {
  width: 28px;
  height: 28px;
  background: #902b2b;
  color: #fff;
  border-radius: 50%;
  outline: 1px solid #902b2b;
  outline-offset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "SFU Franklin Gothic";
  flex-shrink: 0;
}
.park-legend-label {
  font-size: 14px;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .strategic-location-header {
    margin-top: 50px;
  }
  .strategic-location-map.desktop {
    display: none !important;
  }
  .floor-plan-wrapper {
    justify-content: center;
  }
  .master-plan-map-container .map-wrapper {
    overflow: visible;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    filter: drop-shadow(0 10px 0 #902b2b);
    max-width: 100%;
  }
  .master-plan-map-container .map-wrapper {
    position: relative;
    width: 100%;
  }
  .master-plan-map-container .map-wrapper .container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    max-width: none !important;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .master-plan-map-container .map-wrapper .container::-webkit-scrollbar {
    display: none;
  }
  .master-plan-map-container .map-wrapper svg {
    min-width: 1200px;
    width: 1200px;
    height: auto;
    display: block;
  }
  .master-plan-map-container .nav-scroll-map {
    display: flex !important;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 23px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    width: 100%;
    left: 0;
  }
  .nav-scroll-map > div {
    cursor: pointer;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
    user-select: none;
  }
  .nav-scroll-map img {
    width: auto;
    display: block;
    max-width: 100%;
    width: 60px;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
    user-select: none;
    pointer-events: auto;
  }
  .nav-scroll-map img:hover {
    transform: scale(1.1);
    opacity: 0.8;
  }
  .nav-scroll-map img:active {
    transform: scale(0.95);
  }
  .floor-plan-middle-content {
    display: block;
  }
  .floor-plan-content {
    background-image: none;
    height: auto !important;
    overflow: visible !important;
  }
  .floor-plan-middle {
    width: 100%;
    overflow: visible !important;
  }
  .floor-plan-container {
    overflow: visible !important;
  }
  .clubhouse-legend.active {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5px !important;
    width: 100% !important;
    padding: 30px 15px !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    position: relative !important;
    z-index: 10 !important;
  }
  .clubhouse-legend.active .legend-item {
    margin-bottom: 0 !important;
  }
  #clubhousePopup .clubhouse-legend.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
    padding: 30px 15px;
  }
  #clubhousePopup .clubhouse-legend.active .legend-item {
    margin-bottom: 0;
  }
  #clubhousePopup .floor-plan-container {
    position: relative;
    background: #fff;
    overflow: visible;
  }
  #clubhousePopup .floor-plan-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background-color: #fff;
    background-image: url("../images/pattern.png?v=0.0.1");
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
  }
  #clubhousePopup .floor-tabs {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    background: transparent;
    overflow: visible;
  }
  #clubhousePopup .floor-tabs > .floor-tab {
    display: none !important;
  }
  #clubhousePopup .floor-tab-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 12;
  }
  #clubhousePopup .floor-tab-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 16px 40px;
    background: #902b2b;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px 25px 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Times Sans Serif";
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 12;
    min-width: 200px;
    pointer-events: auto;
    outline-offset: -7px;
    outline: 2px solid #fff;
  }
  #clubhousePopup .floor-tab-text {
    position: relative;
    z-index: 2;
  }
  #clubhousePopup .floor-tab-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
  }
  #clubhousePopup
    .floor-tabs.dropdown-open
    .floor-tab-button.active
    .floor-tab-arrow {
    transform: rotate(180deg);
  }
  #clubhousePopup .floor-tabs-container {
    display: none;
  }
  #clubhousePopup .floor-tabs.dropdown-open .floor-tabs-container {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    gap: 5px;
    background-color: rgba(255, 249, 240, 0.95);
    border-radius: 8px;
    margin: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 47px;
    left: 45%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 240px;
    z-index: 11;
  }
  #clubhousePopup .floor-tabs-container .floor-tab {
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    font-size: 14px;
    color: #902b2b;
    font-weight: 500;
    font-family: "SFU Franklin Gothic", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(139, 26, 26, 0.1);
    border-radius: 0;
  }
  #clubhousePopup .floor-tabs-container .floor-tab:last-child {
    border-bottom: none;
  }
  #clubhousePopup .floor-tabs-container .floor-tab:hover {
    background-color: rgba(144, 43, 43, 0.05);
  }
  #clubhousePopup .floor-plan-container {
    overflow: visible;
  }
  #clubhousePopup .popup-container {
    overflow: visible;
  }
  #clubhousePopup .floor-plan-content {
    position: relative;
    z-index: 1;
    background: #f0eecf;
    min-height: auto;
    overflow: visible;
  }
  #clubhousePopup .floor-plan-middle {
    background: #f0eecf;
  }
  #clubhousePopup .popup-description p.title-tab-clubhouse {
    color: #347a64;
    font-weight: 600;
  }
  .role-sub-image-left {
    left: 0 !important;
    bottom: 40%;
    transform: translateX(-50%);
    right: 0;
    width: 100% !important;
  }
  .role-sub-image-right {
    right: 0;
    bottom: -17%;
    left: 0;
    transform: translateX(50%);
    width: 100% !important;
  }
  .park-legend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .park-legend-item {
    padding: 8px;
  }
  .park-legend-number {
    width: 18px;
    height: 18px;
    font-size: 12px;
    align-items: unset;
  }
  .park-legend-label {
    font-size: 12px;
    text-align: left;
  }
  .popup-floor-plan {
    padding: 15px;
  }
  .park-legend {
    padding: 0;
  }
}
.popup-container .clubhouse-slider {
  margin: 0;
  padding: 40px 0;
  max-width: 100%;
  position: relative;
  background: #fff;
}
.popup-container .clubhouse-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  background-image: url("../images/pattern.png?v=0.0.1");
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: local;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.popup-container .clubhouse-slider > * {
  position: relative;
  z-index: 1;
}
.popup-container .clubhouse-slider .slider-container {
  max-width: 100%;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.clubhouse-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 40px;
}
.clubhouse-slider .slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.clubhouse-slider .panel-item {
  position: absolute;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 61, 61, 0.95) 0%,
    rgba(13, 61, 61, 0.85) 100%
  );
  backdrop-filter: blur(10px);
  width: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  opacity: 0.85;
  z-index: 10;
  transition:
    left 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  border-right: 2px solid #fff;
  cursor: pointer;
  text-align: center;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}
.clubhouse-slider .panel-item.active {
  right: 0;
  left: auto;
  border-right: 2px solid #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0.85;
  background: linear-gradient(
    180deg,
    rgba(13, 61, 61, 0.95) 0%,
    rgba(13, 61, 61, 0.85) 100%
  );
}
.clubhouse-slider .panel-item:hover {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 61, 61, 1) 0%,
    rgba(13, 61, 61, 0.95) 100%
  );
  border-right-color: rgba(212, 175, 55, 0.5);
}
.clubhouse-slider .panel-item.active:hover {
  border-left-color: rgba(212, 175, 55, 0.5);
}
.clubhouse-slider .panel-item .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 15px 5px;
  border-radius: 6px;
  pointer-events: none;
  transform: rotate(-180deg);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.clubhouse-slider .panel-item .vertical-text:hover {
  color: #d4af37;
}
.clubhouse-slider .panel-item .vertical-text.active {
  color: #d4af37;
  font-weight: 700;
}
.clubhouse-slider .slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.clubhouse-slider .slider-wrapper.scale-in {
  opacity: 0;
  transform: scale(0.9);
}
.clubhouse-slider .slider-wrapper.scale-in.animate {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.clubhouse-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubhouse-slider .slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.clubhouse-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clubhouse-slider .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.clubhouse-slider .nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}
.clubhouse-slider .nav-arrow.prev {
  left: 180px;
}
.clubhouse-slider .nav-arrow.next {
  right: 180px;
}
.clubhouse-slider .nav-arrow img {
  width: 100%;
  display: block;
}
.clubhouse-slider .clubhouse-dot-navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  z-index: 20;
  padding: 10px;
}
.clubhouse-slider .clubhouse-dot-navigation .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
  background: transparent;
}
.clubhouse-slider .clubhouse-dot-navigation .dot.active {
  background: #fff;
  border-color: #fff;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  outline: 1px solid #fff;
  outline-offset: 2px;
}
.clubhouse-slider .slide-description {
  max-width: 850px;
  margin: 20px auto 0;
  text-align: center;
  padding: 0 40px;
  display: none;
}
.clubhouse-slider .slide-description.active {
  display: block;
}
.clubhouse-slider .slide-description.fade-in {
  opacity: 0;
  transform: translateY(20px);
}
.clubhouse-slider .slide-description.fade-in.active {
  opacity: 1;
}
.clubhouse-slider .slide-description.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.clubhouse-slider .slide-title {
  font-size: 30px;
  font-weight: 600;
  color: #111111;
  font-family: "Times Sans Serif";
  text-transform: uppercase;
}
.clubhouse-slider .slide-text {
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
}
.perfect-arrangement-section {
  padding: 70px 0 40px 0;
  position: relative;
  background-color: #476e62;
  overflow: hidden;
}
.perfect-arrangement-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 435px;
  height: 100%;
  background-image: url("../images/bg-red.png?v=0.0.1");
  background-repeat: repeat-y;
  background-position: left top;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.perfect-arrangement-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 435px;
  height: 100%;
  background-image: url("../images/bg-red.png?v=0.0.1");
  background-repeat: repeat-y;
  background-position: right top;
  transform: scaleX(-1);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.perfect-arrangement-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.perfect-arrangement-title-section {
  margin-bottom: 30px;
}
.perfect-arrangement-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.perfect-arrangement-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  font-style: italic;
  letter-spacing: 2px;
  margin: 0;
}
.perfect-arrangement-description {
  max-width: 900px;
  margin: 0 auto;
}
.perfect-arrangement-text {
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-align: center;
  margin: 0;
}
.perfect-arrangement-map-container {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.master-plan-map-wrapper {
  position: relative;
  width: 100%;
}
.master-plan-map-container .nav-scroll-map {
  display: none;
}
@media (max-width: 768px) {
  .master-plan-map-container .nav-scroll-map {
    display: flex;
  }
}
.master-plan-border {
  position: relative;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #902b2b 0%, #6b1f1f 100%);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.master-plan-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.perfect-arrangement-legend {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px 0 40px;
  position: relative;
  z-index: 2;
}
.legend-grid {
  display: grid;
  gap: 5px;
  justify-items: start;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 3px 10px;
}
.legend-item-greenline-second {
  grid-column: 2 / 3;
}
@media (max-width: 768px) {
  .legend-item-greenline-second {
    grid-column: 1 / 2;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .legend-item-greenline-second {
    grid-column: 2 / 3;
  }
}
@media (min-width: 1025px) {
  .legend-item-greenline-second {
    grid-column: 4 / 4;
  }
}
.legend-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-icon-shop {
  background-color: #902b2b;
}
.legend-icon-town {
  background-color: #8b7355;
}
.legend-icon-clubhouse {
  background-color: #cde092;
}
.legend-icon-park {
  background-color: #d1e8ed;
}
.legend-icon-garden-aura {
  background-color: #b3bc3b;
}
.legend-icon-garden {
  background-color: #b3bc3b;
}
.legend-icon-lightwalk {
  background-color: #a3d6b7;
}
.legend-icon-starwalk {
  background-color: #f8af82;
}
.legend-icon-greenline {
  background-color: #eeaca8;
}
.legend-label {
  font-size: 16px;
  color: #fff;
  font-family: "SFU Franklin Gothic";
  line-height: 1.2;
}
.master-plan-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.master-plan-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 264px;
  background-image: url("../images/shape-top.png?v=0.0.1");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.master-plan-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 272px;
  background-image: url("../images/shape-bottom.png?v=0.0.1");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.master-plan-container {
  background-color: #d3d59f;
}
.master-plan-header {
  text-align: center;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.master-plan-title-section {
  position: relative;
  z-index: 2;
}
.master-plan-title-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.master-plan-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d5016;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.master-plan-title {
  font-size: 3rem;
  font-weight: 900;
  color: #902b2b;
  font-family: "SVN Harman Script", serif;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}
.master-plan-description {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.master-plan-text {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
  margin-bottom: 10px;
}
.plan-tabs-container {
  position: relative;
  z-index: 2;
}
.plan-tabs-container.slide-in-bottom {
  opacity: 0;
  transform: translateY(30px);
}
.plan-tabs-container.slide-in-bottom.animate {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.plan-tabs {
  display: flex;
  justify-content: center;
  border: 2px solid #902b2b;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  margin-bottom: -2px;
}
.plan-tab {
  flex: 1;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Times Sans Serif";
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-right: 2px solid #902b2b;
  background-color: transparent;
  color: #902b2b;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.plan-tab:last-child {
  border-right: none;
}
.plan-tab:hover:not(.active) {
  background-color: #fff;
}
.plan-tab.active {
  background-color: #902b2b;
  color: #ffffff;
  opacity: 1;
}
.plan-tab.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(45, 80, 22, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.plan-twist-bg {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
.plan-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.plan-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.plan-image-wrapper.scale-in {
  opacity: 0;
  transform: scale(0.95);
}
.plan-image-wrapper.scale-in.animate {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.plan-image {
  position: relative;
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.plan-image.active {
  display: block;
}
.plan-legend {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 800px;
  margin: 30px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  margin-bottom: 130px;
}
.plan-legend.fade-in {
  opacity: 0;
  transform: translateY(20px);
}
.plan-legend.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.legend-item-text {
  display: flex;
  flex-direction: column;
  line-height: 30px;
}
.legend-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-icon-shop {
  background-color: #902b2b;
}
.legend-icon-town {
  background-color: #fad578;
}
.legend-label {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: "SFU Franklin Gothic";
}
.legend-count {
  font-size: 24px;
  color: #666666;
  font-family: "SFU Franklin Gothic";
}
@media (max-width: 1024px) {
  .hero-animate-logo-left {
    animation: heroSlideInLeft 0.8s ease-out 0.2s forwards;
  }
  .hero-animate-logo-right {
    animation: heroSlideInRight 0.8s ease-out 0.2s forwards;
  }
  .hero-animate-overlay {
    animation: heroOverlayFadeIn 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s
      forwards;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
  }
  .nav-container {
    padding: 0 30px;
    gap: 20px;
  }
  .nav-link {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  .role-title-img {
    max-width: 600px;
  }
  .clubhouse-showcase {
    padding: 0 30px;
  }
  .showcase-grid {
    gap: 25px;
  }
  .showcase-banner-text {
    font-size: 28px;
  }
  .clubhouse-slider {
    padding: 0 30px;
  }
  .slider-slide {
    grid-template-columns: 100px 1fr 100px;
    gap: 20px;
  }
  .amenity-item {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .slider-arrow {
    width: 50px;
    height: 50px;
  }
  .strategic-location-content {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .legend-number {
    width: 35px;
  }
  .hero-logo-left {
    top: 0;
  }
  .hero-logo-right {
    top: 15px;
  }
  .hero-logo-left {
    left: 15px;
  }
  .hero-logo-right {
    right: 15px;
  }
  .hero-animate-logo-left {
    transform: translateX(-40px);
    animation: heroSlideInLeft 0.7s ease-out 0.2s forwards;
  }
  .hero-animate-logo-right {
    transform: translateX(40px);
    animation: heroSlideInRight 0.7s ease-out 0.2s forwards;
  }
  .hero-animate-overlay {
    animation: heroOverlayFadeIn 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s
      forwards;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
  }
  .hero-animate-bg {
    animation: heroFadeInScale 1s ease-out forwards;
  }
  .hero-overlay {
    top: 25% !important;
    width: 100% !important;
    max-width: 100%;
    padding: 0 20px;
  }
  .main-nav {
    padding: 0;
  }
  .scroll-indicator {
    max-width: 250px;
  }
  .scroll-indicator-img {
    max-width: 100%;
  }
  .nav-container {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }
  .nav-list {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .nav-link {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .nav-contact {
    right: 10px;
    padding: 15px 10px;
    gap: 12px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  .hotline-btn {
    padding: 10px 12px;
    min-width: 70px;
  }
  .section {
    padding: 50px 0;
  }
  .lifestyle-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lifestyle-circle-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 30px auto 0;
  }
  .lifestyle-text-content {
    padding: 20px;
  }
  .lifestyle-title-svg {
    max-width: 100%;
    margin: 0 auto;
  }
  .contact-form-title-section {
    text-align: center;
  }
  .lifestyle-content {
    margin: 0 auto 30px !important;
  }
  .lifestyle-text {
    font-size: 1rem;
  }
  .strategic-location-section {
    padding: 60px 0;
  }
  .strategic-location-content {
    padding: 0 20px;
  }
  .strategic-location-title-img {
    max-width: 100%;
  }
  .strategic-location-text {
    font-size: 16px;
  }
  .travel-time-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .travel-time-row .travel-time-item {
    width: 100%;
  }
  .travel-time-number {
    font-size: 2.5rem;
    color: #2d5016;
  }
  .travel-time-label {
    font-size: 1.3rem;
    color: #2d5016;
  }
  .travel-time-logos {
    width: 100%;
  }
  .role-section {
    padding: 60px 0;
  }
  .role-title-section {
    margin-bottom: 40px;
  }
  .role-title-img {
    max-width: 100%;
  }
  .role-sub-image-left {
    left: 10%;
  }
  .role-sub-image-right {
    right: 10%;
  }
  .clubhouse-section {
    padding: 60px 0;
  }
  .clubhouse-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .clubhouse-title-img {
    max-width: 100%;
  }
  .clubhouse-text {
    font-size: 16px;
  }
  .clubhouse-showcase {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .showcase-banner {
    padding: 15px 20px;
  }
  .showcase-banner-text {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .perfect-arrangement-section {
    padding: 60px 0;
  }
  .perfect-arrangement-section::before,
  .perfect-arrangement-section::after {
    width: 120px;
    background-size: 120px auto;
  }
  .perfect-arrangement-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .perfect-arrangement-title {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .perfect-arrangement-subtitle {
    font-size: 24px;
  }
  .perfect-arrangement-text {
    font-size: 16px;
    line-height: 24px;
  }
  .perfect-arrangement-map-container {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .master-plan-border {
    padding: 15px;
  }
  .perfect-arrangement-legend {
    padding: 0 20px;
  }
  .perfect-arrangement-legend .legend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .legend-label {
    font-size: 14px;
  }
  .popup-container {
    width: 98%;
    max-height: 95vh;
    margin: 10px;
  }
  .popup-banner-text {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .clubhouse-slider {
    padding: 0 20px;
  }
  .popup-container .clubhouse-slider {
    padding: 20px 0;
  }
  .clubhouse-slider .slider-container {
    padding: 0px;
  }
  #clubhousePopup .clubhouse-slider .panel-item {
    display: none !important;
  }
  #clubhousePopup .clubhouse-slider .nav-arrow {
    display: flex !important;
    width: 50px;
    height: 50px;
    z-index: 9999;
  }
  #clubhousePopup .clubhouse-slider .nav-arrow.prev {
    left: 10px;
  }
  #clubhousePopup .clubhouse-slider .nav-arrow.next {
    right: 10px;
  }
  #congVienPopup .clubhouse-slider .panel-item {
    display: none !important;
  }
  #congVienPopup .clubhouse-slider .nav-arrow {
    display: flex !important;
    width: 50px;
    height: 50px;
    z-index: 9999;
  }
  #congVienPopup .clubhouse-slider .nav-arrow.prev {
    left: 10px;
  }
  #congVienPopup .clubhouse-slider .nav-arrow.next {
    right: 10px;
  }
  .clubhouse-slider .slide-description {
    padding: 0 20px;
    margin-top: 30px;
  }
  .clubhouse-slider .slide-title {
    font-size: 1.5rem;
  }
  .clubhouse-slider .slide-text {
    font-size: 16px;
  }
  .amenity-panel {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    order: 1;
  }
  .amenity-panel-left {
    order: 1;
  }
  .amenity-panel-right {
    order: 3;
  }
  .clubhouse-main-image {
    order: 2;
  }
  .amenity-list {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .amenity-item {
    font-size: 0.85rem;
    padding: 10px 15px;
    white-space: normal;
  }
  .slider-arrow {
    width: 50px;
    height: 50px;
  }
  .slide-description {
    order: 4;
    margin-top: 30px;
    padding: 0 20px;
  }
  .slide-title {
    font-size: 1.5rem;
  }
  .slide-text {
    font-size: 16px;
  }
  .master-plan-section {
    padding: 60px 0;
  }
  .master-plan-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .master-plan-title {
    font-size: 2rem;
  }
  .master-plan-text {
    font-size: 16px;
  }
  .plan-tabs {
    padding: 0 20px;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .plan-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .plan-content-wrapper {
    margin-bottom: 30px;
  }
  .plan-content {
    padding: 0 20px;
  }
  .plan-legend {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
}
@media (max-width: 560px) {
  .nav-contact.group-1 {
    bottom: 9%;
  }
  .nav-contact {
    right: 0;
    padding: 0;
  }
  .master-plan-map-container svg {
    border-radius: 0;
  }
  .master-plan-map-container .nav-scroll-map {
    display: flex;
    gap: 30px;
    justify-content: start;
    align-items: start;
    margin-top: 23px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    left: 33%;
  }
  .optimal-floor-plan-content {
    flex-direction: column !important;
    gap: 20px !important;
    display: flex !important;
  }
  .optimal-floor-plan-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-content: center;
    justify-content: center;
  }
  .optimal-floor-plan-section {
    padding: 40px 15px !important;
  }
  .optimal-floor-right-item img {
    max-width: 100% !important;
  }
  .optimal-floor-left-item img {
    max-width: 100% !important;
  }
  .optimal-floor-plan-left,
  .optimal-floor-plan-right {
    flex: unset !important;
  }
  .optimal-floor-plan-header,
  .optimal-floor-plan-content {
    margin-bottom: 20px !important;
  }
  .popup-close:not(.popup-close-mobile):not(.popup-close-desktop) {
    background: #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    right: 10px !important;
    top: 10px !important;
    z-index: 100000 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 40px;
    align-items: center;
    justify-content: center;
  }
  .scroll-indicator-wrapper {
    margin-top: -40px !important;
    padding-bottom: 20px;
  }
  .lifestyle-text-content {
    padding: 80px 15px 0 15px !important;
    width: 100% !important;
  }
  .clubhouse-slider .slider-container {
    padding: 0;
  }
  .role-section {
    margin: 0;
  }
  .clubhouse-section {
    margin-top: 0;
  }
  #clubhousePopup .popup-container .clubhouse-slider {
    padding: 30px 0;
  }
  #congVienPopup .popup-container .clubhouse-slider {
    padding: 0;
  }
  .floor-plan-content {
    height: auto;
    background-image: none;
  }
  .floor-plan-middle {
    width: 100%;
  }
  .section-120 {
    padding: 0;
  }
  .hero-logo-right {
    width: 35% !important;
  }
  .logo-phulong-hero {
    width: 100% !important;
    max-width: 100%;
  }
  .hero-animate-logo-left {
    transform: translateX(-30px);
    animation: heroSlideInLeft 0.6s ease-out 0.1s forwards;
  }
  .hero-animate-logo-right {
    transform: translateX(30px);
    animation: heroSlideInRight 0.6s ease-out 0.1s forwards;
  }
  .hero-animate-overlay {
    animation: heroOverlayFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s
      forwards;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
  }
  .hero-animate-bg {
    animation: heroFadeInScale 0.9s ease-out forwards;
  }
  .scroll-indicator-img {
    max-width: 100%;
  }
  .nav-link {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
  .nav-contact {
    right: 8px;
    padding: 12px 0px;
    gap: 5px;
    border-radius: 40px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  .contact-icon img {
    width: 40px;
    height: 40px;
  }
  .hotline-btn {
    padding: 8px 10px;
    max-width: 40px;
    border-radius: 20px;
  }
  .lifestyle-split {
    gap: 30px;
  }
  .lifestyle-circle-overlay {
    max-width: 250px;
    height: 250px;
  }
  .lifestyle-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .role-section {
    padding-bottom: 40px;
    padding-top: 0;
  }
  .role-title-section {
    margin-bottom: 30px;
  }
  .role-sub-image-left {
    left: 0;
    bottom: 40%;
    transform: translateX(-50%);
    right: 0;
    width: 100% !important;
  }
  .role-sub-image-right {
    right: 0;
    bottom: -17%;
    left: 0;
    transform: translateX(50%);
    width: 100% !important;
  }
  .clubhouse-section {
    padding: 40px 0;
  }
  .clubhouse-header {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .clubhouse-text {
    font-size: 14px;
  }
  .clubhouse-showcase {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .showcase-grid {
    gap: 30px;
  }
  .showcase-image-wrapper {
    padding-bottom: 0;
    border-width: 5px;
  }
  .showcase-banner {
    padding: 12px 15px;
  }
  .showcase-banner-text {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .perfect-arrangement-section {
    padding: 40px 0;
  }
  .perfect-arrangement-section::before,
  .perfect-arrangement-section::after {
    width: 80px;
    background-size: 80px auto;
  }
  .perfect-arrangement-header {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .perfect-arrangement-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .perfect-arrangement-subtitle {
    font-size: 18px;
  }
  .perfect-arrangement-text {
    font-size: 14px;
    line-height: 22px;
  }
  .perfect-arrangement-map-container {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .master-plan-border {
    padding: 10px;
  }
  .perfect-arrangement-legend {
    padding: 0 15px;
  }
  .perfect-arrangement-legend .legend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .legend-icon {
    width: 20px;
    height: 20px;
  }
  .legend-label {
    font-size: 13px;
  }
  .popup-container {
    width: 100%;
    max-height: 95vh;
    margin: 0;
    border-radius: 0;
  }
  .popup-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  .popup-banner {
    padding: 15px 20px;
    border-radius: 0;
  }
  .popup-banner-text {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .clubhouse-slider {
    padding: 0 15px;
  }
  .slider-slide {
    gap: 20px;
  }
  .amenity-item {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slide-description {
    padding: 0 15px;
    margin-top: 20px;
  }
  .slide-title {
    font-size: 1.2rem;
  }
  .slide-text {
    font-size: 14px;
  }
  .strategic-location-section {
    padding: 40px 0;
  }
  .strategic-location-text {
    font-size: 14px;
  }
  .travel-time-number {
    font-size: 2rem;
    color: #2d5016;
  }
  .travel-time-label {
    font-size: 1rem;
    color: #2d5016;
  }
}
.frame-depiction-section {
  position: relative;
  overflow: hidden;
}
.frame-depiction-header {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
}
.frame-depiction-section .container {
  max-width: 100%;
  padding: 0;
}
.frame-depiction-label {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.frame-depiction-title {
  font-size: 48px;
  font-weight: 700;
  color: #902b2b;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  font-style: italic;
  letter-spacing: 3px;
  margin: 0;
  line-height: 1.2;
}
.frame-depiction-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.frame-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 500px;
  background-color: #f5f0e8;
}
.frame-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.frame-slider-track:active {
  cursor: grabbing;
}
.frame-depiction-section .frame-slider-track img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.frame-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.frame-slide picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5; /* mobile */
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .frame-slide picture {
    aspect-ratio: 24 / 11; /* desktop giữ tỉ lệ của bạn */
  }
}
.frame-slide picture img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-slide-image {
  display: block;
  object-fit: cover;
}
.frame-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  background: transparent;
}
.frame-slider-prev {
  left: 20px;
}
.frame-slider-next {
  right: 20px;
}
.frame-tab-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: -52px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 30px 30px 0 0;
  z-index: 9999;
  position: relative;
}
.frame-tab-button-wrapper,
.frame-tabs-container {
  display: none;
}
.frame-tab {
  flex: 1;
  min-width: 120px;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Times Sans Serif";
  text-transform: uppercase;
  border: none;
  background-color: transparent;
  color: #902b2b;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
  font-weight: 500;
}
.frame-tab:first-child {
  border-radius: 25px 0 0 0;
}
.frame-tab:last-child {
  border-radius: 0 25px 0 0;
}
.frame-tab:hover {
  opacity: 0.8;
}
.frame-tab.active {
  background-color: #902b2b;
  color: #ffffff;
  opacity: 1;
}
.developer-partners-section {
  padding: 100px 0;
  position: relative;
}
.developer-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
}
.developer-logo-wrapper {
  margin-bottom: 30px;
}
.developer-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.developer-title-section {
  margin-bottom: 40px;
}
.developer-label {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.developer-name {
  font-size: 56px;
  font-weight: 700;
  color: #2d7a2d;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.developer-name sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
}
.developer-tagline {
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.4;
}
.developer-description {
  max-width: 950px;
  margin: 0 auto;
}
.developer-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  font-family: "SFU Franklin Gothic";
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.5px;
}
.developer-title {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  font-family: "Times Sans Serif";
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.developer-text {
  font-size: 18px;
  font-weight: 400;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: justify;
}
.developer-description > p {
  font-size: 18px;
  font-weight: 400;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: justify;
}
.developer-text:last-child {
  margin-bottom: 0;
}
.partners-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.partners-title {
  font-size: 36px;
  font-weight: 500;
  color: #486e62;
  font-family: "Times Sans Serif";
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  align-items: start;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.partner-logo-wrapper {
  width: 100%;
  max-width: 250px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-description {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  font-family: "SFU Franklin Gothic";
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .developer-partners-section {
    padding: 80px 0;
  }
  .developer-name {
    font-size: 48px;
  }
  .partners-title {
    font-size: 36px;
  }
  .partners-grid {
    gap: 50px 30px;
  }
  .partner-logo-wrapper {
    max-width: 200px;
    height: 100px;
  }
}
.hamburger-btn {
  position: fixed !important;
  top: 30px;
  right: 30px;
  z-index: 2100;
  width: 50px;
  height: 50px;
  background: #902b2b;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(144, 43, 43, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid rgba(238, 211, 119, 0.3);
}
.hamburger-btn:hover {
  transform: scale(1.1);
  background: #a53232;
  box-shadow: 0 8px 25px rgba(144, 43, 43, 0.4);
  border-color: rgba(238, 211, 119, 0.8);
}
.hamburger-icon {
  width: 24px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger-btn.active {
  background: #fff9f0;
  border-color: #902b2b;
}
.hamburger-btn.active .hamburger-icon span {
  background: #902b2b;
}
.hamburger-btn.active .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.hamburger-btn.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  overflow: hidden;
}
.mobile-nav-panel.active {
  visibility: visible;
}
.mobile-nav-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(18, 51, 41, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.mobile-nav-panel.active .mobile-nav-overlay {
  opacity: 1;
}
.mobile-nav-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 85%;
  height: 100%;
  background: #fff9f0;
  display: flex;
  flex-direction: column;
  padding: 80px 50px;
  transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(144, 43, 43, 0.1);
}
.mobile-nav-panel.active .mobile-nav-content {
  right: 0;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  flex-grow: 1;
}
.mobile-nav-list li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-nav-panel.active .mobile-nav-list li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav-panel.active .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav-panel.active .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-nav-panel.active .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-nav-panel.active .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-nav-panel.active .mobile-nav-list li:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-nav-panel.active .mobile-nav-list li:nth-child(6) {
  transition-delay: 0.35s;
}
.mobile-nav-list a {
  text-decoration: none;
  color: #902b2b;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Times Sans Serif", serif;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #902b2b;
  transition: width 0.3s ease;
}
.mobile-nav-list a:hover {
  color: #c48c3d;
}
.mobile-nav-list a:hover::after {
  width: 100%;
}
.mobile-nav-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.6;
}
.mobile-nav-footer img {
  width: 100%;
  display: block;
  mask-image: linear-gradient(to top, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
}
@media (max-width: 768px) {
  .hamburger-btn {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .mobile-nav-content {
    width: 80%;
    padding: 60px 30px;
  }
  .mobile-nav-list a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .popup-description p.title-tab-clubhouse {
    font-size: 25px;
    margin-top: 20px;
  }
  .lifestyle-text-content {
    padding: 80px 15px 0 15px !important;
    width: 100% !important;
  }
  .scroll-indicator-wrapper {
    margin-top: -40px !important;
  }
  .logo-phulong-hero {
    width: 100% !important;
  }
  .developer-partners-section {
    padding: 0;
  }
  .developer-section {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .developer-logo {
    max-width: 150px;
  }
  .developer-name {
    font-size: 36px;
  }
  .developer-tagline {
    font-size: 14px;
  }
  .developer-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .developer-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
  .developer-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .developer-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  .developer-text {
    font-size: 15px;
    text-align: left;
  }
  .partners-section {
    padding: 0 20px;
  }
  .partners-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 40px;
    align-items: center;
    justify-content: center;
  }

  .partners-grid .partner-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 50px auto;
  }
  .partner-logo-wrapper {
    max-width: 180px;
    height: 100px;
  }
  .partner-description {
    font-size: 13px;
  }
}
.connect-today-section {
  position: relative;
  overflow: hidden;
}
.connect-today-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 477px;
  height: 100%;
  background-image: url("../images/bg-footer.png?v=0.0.1");
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
}
.connect-today-divider {
  padding: 50px 0;
}
.connect-today-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 477px;
  height: 100%;
  background-image: url("../images/bg-footer-1.png?v=0.0.1");
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
}
.connect-today-container {
  max-width: 970px;
  margin: 23px auto 0 auto;
  padding: 55px 0 20px 0;
  position: relative;
  z-index: 2;
  background: #d5c9aa;
}
.connect-today-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-form-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-text {
  font-size: 18px;
  color: #111111;
  line-height: 20px;
  text-align: center;
  font-family: "SFU Franklin Gothic";
}
.connect-today-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d7a2d;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}
.connect-today-subtitle {
  font-size: 36px;
  font-weight: 400;
  color: #902b2b;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  font-style: italic;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.3;
}
.connect-today-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.connect-today-left,
.connect-today-right {
  padding: 20px 0;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.connect-today-left {
  animation-name: connectTodayLeftSlideIn;
}
.connect-today-right {
  animation-name: connectTodayRightSlideIn;
}
@keyframes connectTodayLeftSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes connectTodayRightSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.contact-info-wrapper {
  max-width: 100%;
}
.contact-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  font-family: "Times Sans Serif";
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.contact-info-item {
  margin-bottom: 25px;
}
.contact-info-label {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  font-family: "Times Sans Serif";
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.contact-info-text {
  font-size: 18px;
  font-weight: 400;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.6;
}
.contact-info-text a {
  color: #111111;
  text-decoration: none;
}
.form-description-wrapper {
  margin-bottom: 15px;
}
.form-description-text {
  font-size: 18px;
  font-weight: 400;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
.connect-today-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-field-group {
  width: 100%;
}
.connect-form-input {
  width: 100%;
  padding: 11px 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  background-color: #f5f0e8;
  font-size: 1rem;
  color: #333;
  font-family: "SVN-Gilroy", sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.connect-form-input::placeholder {
  color: #111111;
  opacity: 0.5;
}
.connect-form-input::-webkit-input-placeholder {
  color: #111111;
  opacity: 0.5;
}
.connect-form-input::-moz-placeholder {
  color: #111111;
  opacity: 0.5;
}
.connect-form-input:-ms-input-placeholder {
  color: #111111;
  opacity: 0.5;
}
.connect-form-input:-moz-placeholder {
  color: #111111;
  opacity: 0.5;
}
.connect-form-input:focus {
  outline: none;
  border-color: #902b2b;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.connect-form-submit-btn {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  min-height: 60px;
}
.connect-form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}
.connect-form-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}
.connect-form-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.connect-form-submit-btn.loading {
  pointer-events: none;
}
.connect-form-submit-btn.loading .connect-submit-btn-img {
  opacity: 0.3;
}
.connect-submit-btn-img {
  height: auto;
  display: block;
  margin: 0 auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.submit-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 100;
  pointer-events: none;
}
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(144, 43, 43, 0.2);
  border-top-color: #902b2b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-text {
  color: #902b2b;
  font-size: 14px;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.connect-form-submit-btn.call-to-action-animate .connect-submit-btn-img {
  animation: callToActionPulse 2s ease-in-out infinite;
}
@keyframes callToActionPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  25% {
    transform: scale(1.08);
    filter: brightness(1.1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.15);
  }
  75% {
    transform: scale(1.08);
    filter: brightness(1.1);
  }
}
@media (max-width: 1024px) {
  .connect-today-container {
    padding: 0 30px;
  }
  .connect-today-content {
    gap: 40px;
  }
  .connect-today-title {
    font-size: 28px;
  }
  .connect-today-subtitle {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .contact-icon img {
    width: 40px;
    height: 40px;
  }
  .connect-today-right {
    padding: 50px 0 20px 0;
  }
  .contact-info-divider.mobile {
    text-align: center;
  }
  .connect-today-section {
    padding: 60px 0;
  }
  .connect-today-container {
    padding: 0 20px;
  }
  .connect-today-header {
    margin-bottom: 40px;
  }
  .connect-today-title {
    font-size: 24px;
  }
  .connect-today-subtitle {
    font-size: 28px;
  }
  .connect-today-content {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .connect-today-divider {
    display: none;
  }
  .contact-info-title {
    font-size: 20px;
  }
  .form-description-text {
    font-size: 14px;
    text-align: center;
  }
  .connect-form-input {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  .contact-info-wrapper {
    text-align: center;
  }
}
.info-highlights-section {
  position: relative;
}
.info-highlights-header {
  text-align: center;
}
.info-highlights-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.info-highlights-title-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.info-slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}
.info-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.info-slider-track {
  display: flex;
  will-change: transform;
  gap: 20px;
  align-items: stretch;
}
.info-card-slide {
  width: calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  flex-shrink: 0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.info-card-slide:hover {
  transform: translateY(-5px);
}
.info-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #902b2b;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.info-slider-prev {
  left: 0;
}
.info-slider-next {
  right: 0;
}
.info-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.info-slider-counter {
  font-size: 14px;
  font-weight: 500;
  color: #902b2b;
  min-width: 50px;
  text-align: center;
  user-select: none;
}

.info-pagination-dots-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #902b2b;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-pagination-dot.active {
  width: 12px;
  height: 12px;
  background-color: #902b2b;
  outline: 1px solid #902b2b;
  outline-offset: 2px;
}

.info-pagination-dot:hover {
  transform: scale(1.2);
  background-color: rgba(144, 43, 43, 0.3);
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.info-card {
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.info-cards-grid a {
  text-decoration: none;
  color: inherit;
}
.info-card:hover {
  transform: translateY(-5px);
}
.info-card-image {
  width: 390px;
  max-width: 100%;
  aspect-ratio: 390 / 250;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.info-card-slide:hover .info-card-image img,
.info-card:hover .info-card-image img {
  transform: scale(1.05);
}
.info-card-content {
  padding: 15px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.info-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
  line-height: 25px;
  text-align: center;
  word-spacing: 1;
}
.info-card-text {
  font-size: 18px;
  color: #111111;
  line-height: 20px;
  flex: 1;
  font-family: "SFU Franklin Gothic";
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1024px) {
  .frame-depiction-section {
    padding: 80px 0;
  }
  .frame-depiction-header {
    padding: 0 30px;
    margin-bottom: 40px;
  }
  .frame-depiction-label {
    font-size: 20px;
  }
  .frame-depiction-title {
    font-size: 36px;
  }
  .frame-depiction-slider-wrapper {
    padding: 0;
  }
  .frame-tab {
    min-width: 100px;
    padding: 12px 20px;
    font-size: 14px;
  }
  .info-slider-wrapper {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .frame-depiction-section {
    padding: 60px 0;
  }
  .frame-depiction-header {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .frame-depiction-label {
    font-size: 18px;
  }
  .frame-depiction-title {
    font-size: 28px;
  }
  .frame-slider-arrow {
    width: 80px;
    height: 80px;
  }
  .frame-tab-navigation {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: -52px auto 0 auto;
    background: transparent;
    overflow: visible;
    max-width: 100%;
  }
  .frame-tab-navigation > .frame-tab {
    display: none !important;
  }
  .frame-tab-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 12;
  }
  .frame-tab-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 16px 20px;
    background: #902b2b;
    color: #fff;
    border-radius: 25px 25px 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Times Sans Serif";
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 12;
    min-width: 200px;
    pointer-events: auto;
    border: none;
    outline-offset: -5px;
    outline: 2px solid #fff;
  }
  .frame-tab-text {
    position: relative;
    z-index: 2;
  }
  .frame-tab-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
  }
  .frame-tab-navigation.dropdown-open
    .frame-tab-button.active
    .frame-tab-arrow {
    transform: rotate(180deg);
  }
  .frame-tabs-container {
    display: none;
  }
  .frame-tab-navigation.dropdown-open .frame-tabs-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 15pxx;
    gap: 0;
    background-color: rgba(255, 249, 240, 0.95);
    border-radius: 8px;
    margin: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 85%;
    left: 44.5%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 240px;
    z-index: 11;
    margin-bottom: 10px;
  }
  .frame-tabs-container .frame-tab {
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    font-size: 14px;
    color: #902b2b;
    font-weight: 500;
    font-family: "Times Sans Serif";
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .frame-tabs-container .frame-tab:last-child {
    border-bottom: none;
  }
  .frame-tabs-container .frame-tab:hover {
    background-color: rgba(144, 43, 43, 0.1);
  }
}
@media (max-width: 560px) {
  .frame-slider-arrow {
    top: 50% !important;
  }
  .section {
    padding: 0;
  }
  .role-sub-image-left,
  .role-sub-image-right {
    width: 45%;
  }
  .popup-description {
    padding: 15px;
  }
  .frame-slider-prev {
    left: 20px;
  }
  .frame-slider-next {
    right: 20px;
  }
  .frame-slider-arrow img {
    max-width: 100%;
  }
  .role-title-section,
  .clubhouse-title-section,
  .master-plan-title-section,
  .info-highlights-title-section {
    width: 90% !important;
    margin: 20px auto;
  }
  .section-120 {
    padding: 0 !important;
  }
  .developer-partners-section {
    padding: 50px 0;
  }
  .developer-section {
    padding: 0 15px;
  }
  .developer-name {
    font-size: 28px;
  }
  .partners-title {
    font-size: 24px;
  }
  .partner-logo-wrapper {
    max-width: 150px;
    height: 100px;
  }
  .partners-grid .partner-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px auto;
  }
  .optimal-floor-plan-left img {
    max-width: 100%;
  }
  .popup-banner img {
    max-width: 100%;
    margin-top: 30px;
  }
  .info-slider-arrow img {
    max-width: 100%;
  }
  .lifestyle-content {
    margin: 0 auto !important;
  }
  .lifestyle-split {
    margin-bottom: 0;
  }
  .frame-depiction-section {
    padding: 0;
  }
  .frame-depiction-header {
    padding: 0 15px;
    margin-bottom: 25px;
  }
  .frame-depiction-label {
    font-size: 16px;
  }
  .frame-depiction-title {
    font-size: 24px;
  }
  .frame-depiction-slider-wrapper {
    padding: 0;
  }
  .frame-tab {
    padding: 10px 12px;
    font-size: 12px;
  }
  .slide-in-bottom img {
    max-width: 100% !important;
  }
  .contact-form-title-section img {
    max-width: 100%;
  }
  .connect-today-section {
    padding: 50px 0;
  }
  .connect-today-container {
    padding: 0 15px;
  }
  .connect-today-title {
    font-size: 20px;
  }
  .connect-today-subtitle {
    font-size: 24px;
  }
  .contact-info-title {
    font-size: 18px;
  }
  .contact-info-text {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .info-highlights-section {
    padding: 50px;
  }
  .info-slider-wrapper {
    padding: 0 60px;
  }
  .info-slider-arrow {
    width: 45px;
    height: 45px;
  }
  .info-card-slide {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
  .info-slider-track {
    gap: 20px;
  }
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 30px;
  }
  .info-highlights-title-img {
    max-width: 500px;
  }
  s .strategic-location-content {
    left: 5%;
  }
}
@media (max-width: 768px) {
  .info-highlights-section {
    padding: 40px 0;
  }
  .info-highlights-header {
    margin-bottom: 30px;
  }
  .info-highlights-title-img {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  .info-slider-wrapper {
    padding: 0;
    overflow: visible;
    width: 100%;
  }
  .info-slider-arrow {
    width: 35px;
    height: 35px;
    display: none;
  }
  .info-slider-arrow svg {
    width: 18px;
    height: 18px;
  }
  .info-slider-container {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .info-slider-container::-webkit-scrollbar {
    display: none;
  }
  .info-slider-track {
    gap: 16px;
    align-items: stretch;
    padding: 0 15px;
    overflow: visible;
    display: flex;
    width: max-content;
    min-height: 0;
    will-change: auto;
    transform: none !important;
    transition: none !important;
    touch-action: pan-x;
    flex-wrap: nowrap;
    box-sizing: border-box;
  }
  .info-slider-track::-webkit-scrollbar {
    display: none;
  }
  .info-card-slide {
    width: 75vw;
    min-width: 75vw;
    max-width: 75vw;
    padding: 0;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    touch-action: pan-x;
    box-sizing: border-box;
    pointer-events: auto;
  }
  .info-cards-grid {
    padding: 0 15px;
    gap: 25px;
  }
  .info-card-image {
    width: 100%;
  }
  .info-card-content {
    padding: 20px;
  }
  .info-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .info-card-text {
    font-size: 18px;
  }
  .info-slider-counter {
    font-size: 12px;
    min-width: 45px;
  }
  .info-pagination-dot {
    width: 8px;
    height: 8px;
  }
  .info-pagination-dot.active {
    width: 10px;
    height: 10px;
  }
  .info-pagination-dots-container {
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .info-highlights-section {
    padding: 40px 0;
  }
  .info-highlights-header {
    margin-bottom: 30px;
  }
  .info-highlights-title-img {
    max-width: 100%;
    padding: 0 15px;
  }
  .info-slider-wrapper {
    padding: 0;
    overflow: visible;
    width: 100%;
  }
  .info-slider-arrow {
    width: 35px;
    height: 35px;
    display: none;
  }
  .info-slider-arrow svg {
    width: 18px;
    height: 18px;
  }
  .info-slider-container {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .info-slider-container::-webkit-scrollbar {
    display: none;
  }
  .info-slider-track {
    gap: 16px;
    align-items: stretch;
    padding: 0 15px;
    overflow: visible;
    display: flex;
    width: max-content;
    min-height: 0;
    will-change: auto;
    transform: none !important;
    transition: none !important;
    touch-action: pan-x;
    flex-wrap: nowrap;
    box-sizing: border-box;
  }
  .info-slider-track::-webkit-scrollbar {
    display: none;
  }
  .info-card-slide {
    width: 75vw;
    min-width: 75vw;
    max-width: 75vw;
    padding: 0;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    touch-action: pan-x;
    box-sizing: border-box;
    pointer-events: auto;
  }
  .info-cards-grid {
    padding: 0 15px;
    gap: 25px;
  }
  .info-card-image {
    width: 100%;
  }
  .info-card-content {
    padding: 20px;
  }
  .info-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .info-card-text {
    font-size: 18px;
  }
  .info-slider-counter {
    font-size: 13px;
    min-width: 50px;
  }
  .info-pagination-dot {
    width: 9px;
    height: 9px;
  }
  .info-pagination-dot.active {
    width: 11px;
    height: 11px;
  }
  .info-pagination-dots-container {
    gap: 7px;
  }
}
.contact-footer {
  background-color: #476d61;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.connect-today-section .footer-curve {
  height: 100px;
  width: 100%;
  background-color: #d5c9aa;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
}
.footer-text {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
}
@media (max-width: 1660px) {
  .connect-today-section::before {
    width: 314px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 314px;
    background-position: left top;
  }
  .perfect-arrangement-section::before,
  .perfect-arrangement-section::after {
    width: 336px;
    background-position: right top;
  }
}
@media (max-width: 1440px) and (min-width: 1200px) {
  .hero-logo-right {
    right: 3%;
  }
  .logo-phulong-hero {
    width: 70%;
    max-width: 100%;
    right: 0;
  }
  .master-plan-title-section img {
    max-width: 75%;
  }
}
@media (max-width: 1440px) {
  .nav-contact.group-1 {
    bottom: 10%;
  }
  .strategic-location-section {
    margin-top: -50px;
  }
  .info-highlights-section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .section {
    padding: 0;
  }
  .scroll-indicator-wrapper {
    margin-top: -30px;
  }
  .hero-overlay {
    width: 40%;
  }
  .lifestyle-circle-overlay {
    position: absolute;
    bottom: -40%;
    right: -20%;
    z-index: 3;
    width: 61%;
  }
  .lifestyle-twist-overlay {
    position: absolute;
    bottom: -40%;
  }
  .lifestyle-twist-overlay img {
    width: 230%;
  }
  .lifestyle-text-content {
    padding: 40px 0;
    width: 82%;
  }
  .strategic-location-content {
    width: 50%;
  }
  .lifestyle-content {
    margin: 0 auto 150px;
  }
  .clubhouse-slider {
    max-width: 1000px;
  }
  .clubhouse-slider .nav-arrow.prev {
    left: 180px;
  }
  .clubhouse-slider .nav-arrow.next {
    right: 180px;
  }
  .strategic-location-content {
    left: 5%;
  }
  .clubhouse-slider .nav-arrow {
    width: 10%;
  }
  .master-plan-header {
    margin-top: 50px;
  }
  .strategic-location-container {
    gap: 0%;
  }
  .perfect-arrangement-section .container {
    max-width: 965px;
    margin: 0 auto;
  }
  .perfect-arrangement-section::before {
    width: 265px;
    background-position: right top;
  }
  .perfect-arrangement-section::after {
    width: 265px;
    background-position: right top;
  }
  .perfect-arrangement-legend {
    padding: 10px;
    margin-top: 20px;
  }
  .info-slider-wrapper {
    max-width: 1100px;
  }
  .connect-today-container {
    max-width: 790px;
    margin: 23px auto 0 auto;
  }
  .logo-broadway-hero {
    width: 70%;
  }
  .perfect-arrangement-section {
    padding: 0px 0 70px 0;
  }
  .hero-overlay {
    top: 10%;
  }
  .section-120 {
    padding: 50px 0 80px 0;
  }
  .contact-info-text,
  .form-description-text,
  .info-card-text,
  .master-plan-text,
  .developer-text,
  .clubhouse-text,
  .lifestyle-text,
  .strategic-location-text,
  .frame-tab {
    font-size: 16px;
  }
  .info-card-title {
    font-size: 20px;
    line-height: 22px;
  }
  .popup-description p {
    max-width: 850px;
  }
  .master-plan-description {
    max-width: 750px;
  }
}
@media (min-width: 1350px) and (max-width: 1440px) {
  .connect-today-section::before {
    width: 308px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 308px;
    background-position: left top;
  }
}
@media (max-width: 1310px) {
  .connect-today-section::before {
    width: 260px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 260px;
    background-position: left top;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .connect-today-section::before {
    width: 259px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 259px;
    background-position: left top;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .connect-today-section::before {
    width: 245px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 245px;
    background-position: left top;
  }
}
@media (min-height: 850px) and (max-width: 1440px) {
  .scroll-indicator-wrapper {
    margin-top: -70px;
  }
}
@media (min-height: 850px) and (max-width: 1350px) {
  .scroll-indicator-wrapper {
    margin-top: -125px;
  }
}
@media (max-width: 1200px) {
  .scroll-indicator-wrapper {
    margin-top: -155px;
  }
  .connect-today-section::before {
    width: 190px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 190px;
    background-position: left top;
  }
}
@media (max-width: 1024px) {
  .scroll-indicator-wrapper {
    margin-top: -225px;
  }
  .connect-today-section::before {
    width: 105px;
    background-position: right top;
  }
  .connect-today-section::after {
    width: 105px;
    background-position: left top;
  }
  .perfect-arrangement-section::before,
  .perfect-arrangement-section::after {
    display: none;
  }
  .connect-today-section::before,
  .connect-today-section::after {
    display: none;
  }
  .connect-today-section {
    background: #d5c9aa;
  }
}
@media (max-width: 768px) {
  .popup-banner img {
    max-width: 100%;
  }
  .travel-time-row .travel-time-item {
    flex: unset !important;
    width: auto;
  }
  .nav-contact.group-1 {
    bottom: 100px;
  }
  .contact-footer {
    padding: 25px 15px;
  }
  .strategic-location-container {
    gap: 0%;
    display: block;
  }
  .strategic-location-content {
    width: 100%;
    left: 0;
  }
}
.optimal-floor-plan-section {
  position: relative;
  padding: 60px 40px;
  background-color: #fff;
  z-index: 1;
}
.optimal-floor-plan-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  background-image: url("../images/pattern.png?v=0.0.1");
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: local;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.optimal-floor-plan-section > * {
  position: relative;
  z-index: 1;
}
.optimal-floor-plan-header {
  text-align: center;
  margin-bottom: 50px;
  animation: optimalFloorPlanHeaderFadeIn 1s ease-out forwards;
  opacity: 0;
}
.optimal-floor-plan-header img {
  max-width: 100%;
}
@keyframes optimalFloorPlanHeaderFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.optimal-floor-plan-title {
  font-size: 48px;
  font-weight: 900;
  color: #902b2b;
  font-family: "SVN Harman Script", serif;
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 15px 0;
}
.optimal-floor-plan-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}
.optimal-floor-plan-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 80px;
  animation: optimalFloorPlanContentFadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}
.optimal-floor-plan-row {
  display: contents;
}
@keyframes optimalFloorPlanContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.optimal-floor-plan-left {
  flex: 0 0 auto;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.optimal-floor-plan-left-wrapper {
  position: relative;
  width: 100%;
}
.optimal-floor-left-item {
  display: none;
  width: 100%;
  position: relative;
}
.optimal-floor-left-item.active {
  display: block;
}
.optimal-floor-left-item img {
  width: 100%;
  height: auto;
  display: block;
}
.optimal-floor-click-area {
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.optimal-floor-click-area:hover {
  border-color: rgba(144, 43, 43, 0.3);
}
.optimal-floor-click-area[data-floor="1"] {
  top: 59%;
  height: 41%;
}
.optimal-floor-click-area[data-floor="2"] {
  top: 42%;
  height: 21%;
}
.optimal-floor-click-area[data-floor="3"] {
  top: 21%;
  height: 23%;
}
.optimal-floor-click-area[data-floor="4"] {
  top: 0;
  height: 25%;
}
.optimal-floor-plan-right {
  flex: 1;
  max-width: 800px;
  position: relative;
}
.optimal-floor-right-item {
  display: none;
  width: 100%;
}
.optimal-floor-right-item.active {
  display: block;
}
.optimal-floor-right-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.optimal-floor-plan-wrapper {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.optimal-floor-plan-label {
  position: absolute;
  top: 10px;
  left: 20px;
  background: #902b2b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  z-index: 2;
}
.optimal-floor-plan-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.optimal-floor-plan-legend {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.optimal-floor-plan-legend .legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.optimal-floor-plan-legend .legend-item:hover {
  background: rgba(144, 43, 43, 0.05);
}
.optimal-floor-plan-legend .legend-number {
  width: 32px;
  height: 32px;
  background: #902b2b;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #902b2b;
  outline: 1px solid #902b2b;
  outline-offset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  flex-shrink: 0;
}
.optimal-floor-plan-legend .legend-label {
  font-size: 16px;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.5;
  font-weight: 600;
  flex: 1;
}
.optimal-floor-plan-legend .legend-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.optimal-floor-plan-legend .legend-sub-item:hover {
  background: rgba(144, 43, 43, 0.05);
}
.optimal-floor-plan-legend .legend-sub-number {
  width: 32px;
  height: 32px;
  background: #902b2b;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #902b2b;
  outline: 1px solid #902b2b;
  outline-offset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  flex-shrink: 0;
}
.optimal-floor-plan-legend .legend-sub-label {
  font-size: 15px;
  color: #111111;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  line-height: 1.5;
  flex: 1;
}
.building-rendering-img-desktop,
.optimal-floor-plan-img-desktop {
  display: block !important;
}
.building-rendering-img-mobile,
.optimal-floor-plan-img-mobile {
  display: none !important;
}
.optimal-floor-plan-text {
  width: 100%;
  display: none !important;
}
.optimal-floor-text-item {
  display: none !important;
  width: 100%;
}
.optimal-floor-text-item.active {
  display: none !important;
}
.optimal-floor-text-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .optimal-floor-plan-content {
    flex-direction: column;
    gap: 30px;
  }
  .optimal-floor-plan-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
  }
  .optimal-floor-plan-left {
    width: 100%;
    max-width: 100%;
  }
  .optimal-floor-plan-right {
    max-width: 100%;
  }
  .optimal-floor-plan-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .optimal-floor-text-img {
    height: auto;
    display: block;
    max-width: 100% !important;
    margin: 30px auto;
    width: auto !important;
  }
  .building-rendering-img-desktop,
  .optimal-floor-plan-img-desktop {
    display: none !important;
  }
  .building-rendering-img-mobile,
  .optimal-floor-plan-img-mobile {
    display: block !important;
  }
  .optimal-floor-plan-section {
    padding: 40px 15px !important;
  }
  .optimal-floor-plan-content {
    flex-direction: column !important;
    gap: 20px !important;
    display: flex !important;
  }
  .optimal-floor-plan-row {
    display: flex;
    flex-direction: row;
    gap: 70px;
    align-content: center;
    justify-content: center;
  }
  .optimal-floor-right-item img {
    max-width: 100% !important;
  }
  .optimal-floor-left-item img {
    max-width: 100% !important;
  }
  .optimal-floor-plan-left,
  .optimal-floor-plan-right {
    flex: unset !important;
  }
  .optimal-floor-plan-header,
  .optimal-floor-plan-content {
    margin-bottom: 20px !important;
  }
  .optimal-floor-plan-left {
    flex: 0 0 auto;
    width: auto;
  }
  .optimal-floor-plan-left-wrapper {
    width: auto;
  }
  .optimal-floor-plan-right {
    flex: 1;
  }
  .optimal-floor-plan-title {
    font-size: 28px;
  }
  .optimal-floor-plan-subtitle {
    font-size: 16px;
  }
  .optimal-floor-plan-legend {
    padding: 20px;
  }
  .optimal-floor-plan-text {
    display: block !important;
    width: 100% !important;
    margin-top: 0;
  }
  .optimal-floor-text-item.active {
    display: block !important;
  }
}
@media (max-width: 560px) {
  .contact-footer {
    padding: 20px 15px;
  }
  .building-rendering-img-desktop,
  .optimal-floor-plan-img-desktop {
    display: none !important;
  }
  .building-rendering-img-mobile,
  .optimal-floor-plan-img-mobile {
    display: block !important;
  }
  .optimal-floor-plan-content {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .optimal-floor-plan-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    width: 100%;
    align-content: center;
    justify-content: center;
  }
  .optimal-floor-plan-left {
    flex: 0 0 auto;
    width: auto;
  }
  .optimal-floor-plan-left-wrapper {
    width: auto;
  }
  .optimal-floor-plan-right {
    flex: 1;
  }
  .optimal-floor-right-item {
    width: 100%;
  }
  .optimal-floor-plan-text {
    display: block !important;
    width: 100% !important;
    margin-top: 0;
  }
  .optimal-floor-text-item.active {
    display: block !important;
  }
}
.notification-popup {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
.notification-popup.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 100001;
}
.notification-container {
  position: relative;
  max-width: 500px;
  width: 90%;
  background-color: #fff9f0;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 100002;
  overflow: hidden;
  margin: 20px;
  animation: slideUpScale 0.4s ease;
}
@keyframes slideUpScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.notification-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-radius: 50%;
}
.notification-close:hover {
  transform: rotate(90deg);
  background: rgba(0, 0, 0, 0.05);
}
.notification-close img {
  width: 24px;
  height: 24px;
}
.notification-content {
  padding: 50px 40px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.notification-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.notification-icon svg {
  width: 100%;
  height: 100%;
}
.notification-title {
  font-size: 28px;
  font-weight: 700;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}
.notification-popup.success .notification-title {
  color: #902b2b;
}
.notification-popup.error .notification-title {
  color: #f44336;
}
.notification-message {
  font-size: 16px;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}
.notification-btn {
  margin-top: 10px;
  padding: 12px 40px;
  background: #902b2b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "SFU Franklin Gothic", Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}
.notification-btn:hover {
  background: #7a2323;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(144, 43, 43, 0.3);
}
.notification-btn:active {
  transform: translateY(0);
}
.notification-popup.success .notification-btn {
  background: #902b2b;
  color: #eed377;
}
.notification-popup.success .notification-btn:hover {
  background: #fdf2d0;
  box-shadow: 0 4px 12px rgba(238, 211, 119, 0.3);
}
.notification-popup.error .notification-btn {
  background: #f44336;
}
.notification-popup.error .notification-btn:hover {
  background: #da190b;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}
@media (max-width: 768px) {
  .notification-container {
    width: 95%;
    margin: 10px;
  }
  .notification-content {
    padding: 40px 30px 30px;
  }
  .notification-title {
    font-size: 24px;
  }
  .notification-message {
    font-size: 15px;
  }
  .notification-icon {
    width: 64px;
    height: 64px;
  }
  #congVienPopup .popup-close-mobile {
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100010;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-left: 0;
    margin-bottom: 0;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  #congVienPopup .popup-close-desktop {
    display: none !important;
  }
  #clubhousePopup .popup-close-mobile,
  #rolePopup .popup-close-mobile,
  #roleSecondPopup .popup-close-mobile {
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100010;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-left: 0;
    margin-bottom: 0;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  #clubhousePopup .popup-close-desktop,
  #rolePopup .popup-close-desktop,
  #roleSecondPopup .popup-close-desktop {
    display: none !important;
  }
}
@media (min-width: 769px) {
  #congVienPopup .popup-close-mobile,
  #clubhousePopup .popup-close-mobile,
  #rolePopup .popup-close-mobile,
  #roleSecondPopup .popup-close-mobile {
    display: none;
  }
  #congVienPopup .popup-close-desktop,
  #clubhousePopup .popup-close-desktop,
  #rolePopup .popup-close-desktop,
  #roleSecondPopup .popup-close-desktop {
    display: flex;
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 100010;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-bottom: 0;
    cursor: pointer;
  }
  #clubhousePopup .floor-tab-button-wrapper {
    display: none !important;
  }
  #clubhousePopup .floor-tabs-container {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    position: static;
    width: auto;
    max-width: none;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  #clubhousePopup .floor-tabs {
    flex-direction: row;
    padding: 0;
  }
  #clubhousePopup .floor-tabs-container .floor-tab {
    display: block !important;
    padding: 12px 63px;
    background: rgba(238, 211, 119, 0.5);
    color: #902b2b;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Times Sans Serif";
    cursor: pointer;
    transition:
      background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    text-align: center;
    border-bottom: none;
    border-radius: 0;
  }
  #clubhousePopup .floor-tabs-container .floor-tab:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 0px;
  }
  #clubhousePopup .floor-tabs-container .floor-tab:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 0px;
    border-bottom: none;
  }
  #clubhousePopup .floor-tabs-container .floor-tab.active {
    background: #902b2b;
    color: #fff;
    z-index: 2;
  }
  #clubhousePopup .floor-tabs-container .floor-tab:hover:not(.active) {
    background: #902b2b;
    color: #fff;
  }
  #clubhousePopup .clubhouse-slider .nav-arrow {
    display: flex !important;
  }
  #congVienPopup .clubhouse-slider .nav-arrow {
    display: flex !important;
  }
  .frame-tab-button-wrapper {
    display: none !important;
  }
  .frame-tabs-container {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 30px 30px 0 0;
    padding: 0;
    margin: -50px auto 0 auto;
    position: static;
    width: auto;
    max-width: 900px;
    box-shadow: none;
  }
  .frame-tab-navigation {
    flex-direction: row;
    padding: 0;
  }
  .frame-tabs-container .frame-tab {
    display: block !important;
    flex: 1;
    min-width: 120px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Times Sans Serif";
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    color: #902b2b;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    width: auto;
    text-align: center;
    border-bottom: none;
  }
  .frame-tabs-container .frame-tab:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 0px;
  }
  .frame-tabs-container .frame-tab:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 0px;
    border-bottom: none;
  }
  .frame-tabs-container .frame-tab:hover {
    opacity: 0.8;
  }
  .frame-tabs-container .frame-tab.active {
    background-color: #902b2b;
    color: #ffffff;
    opacity: 1;
  }
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
.frame-slide-image-mobile {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  min-height: auto;
  background-color: #f5f0e8;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .frame-slide-image-mobile {
    min-height: 300px;
  }
}
img.lazy {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
img.lazy-loading {
  opacity: 0;
}
img.lazy-loaded {
  opacity: 1;
}
img.lazy-error {
  opacity: 0.5;
  filter: grayscale(100%);
}
img.lazy:not(.lazy-loaded) {
  filter: blur(5px);
  transform: scale(1.05);
}
img.lazy-loaded {
  filter: blur(0);
  transform: scale(1);
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes phoneShake {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  10% {
    transform: rotate(-8deg) translateY(-2px);
  }
  20% {
    transform: rotate(8deg) translateY(2px);
  }
  30% {
    transform: rotate(-6deg) translateY(-1px);
  }
  40% {
    transform: rotate(6deg) translateY(1px);
  }
  50% {
    transform: rotate(-4deg) translateY(-1px);
  }
  60% {
    transform: rotate(4deg) translateY(1px);
  }
  70% {
    transform: rotate(-2deg) translateY(0);
  }
  80% {
    transform: rotate(2deg) translateY(0);
  }
  90% {
    transform: rotate(-1deg) translateY(0);
  }
}
@keyframes phonePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
img.lazy:not(.lazy-loaded)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}
