/* =========================
  assets/css/app.css
========================= */
:root {
  --brand: #004d79;
  --accent: #ffbc00e5;

  --text: #0f172a;
  --muted: #64748b;

  --soft: #f6f8fb;
  --border: rgba(15, 23, 42, 0.08);

  --white: #fff;
  --black: #000;

  --header-h: 110px;

  --sec-pt: 50px;
  --sec-pb: 50px;

  --title: clamp(30px, 2.5vw, 55px);
  --desc: 16px;

  --font-title: "1FTV VIP Angular Flow", serif;
  --font-body: "Montserrat", sans-serif;

  --lh-title: 1.08;
  --lh-body: 1.85;

  /* ===== Section animation tokens ===== */
  --sa-y: 18px;
  --sa-duration: 760ms;
  --sa-duration-bg: 1200ms;
  --sa-ease: cubic-bezier(0.2, 0.7, 0.25, 1);
  --sa-stagger: 90ms;
}

* {
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.relative {
  position: relative !important;
}

/* =========================
   TYPO SYSTEM
========================= */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

.title-lg,
.title-section {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin: 0;
}

.title-lg {
  font-size: var(--title);
  line-height: var(--lh-title);
}

.title-lg--invert,
.title-section--invert {
  color: var(--white);
}

.title-section {
  font-size: clamp(26px, 2.2vw, 55px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.text {
  font-size: 16px;
  line-height: var(--lh-body);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
}
.text + .text {
  margin-top: 12px;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
}
.eyebrow--invert {
  color: rgba(255, 255, 255, 0.78);
}

.desc {
  margin: 18px auto 0;
  max-width: 820px;
  color: var(--muted);
  font-size: var(--desc);
  line-height: 1.55;
  text-align: justify;
}

.locationTimes {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.locationTimes__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 18px;
  align-items: baseline;
}

.locationTimes__time {
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}

.locationTimes__text {
  color: rgb(30 41 59 / 0.9);
  line-height: 1.35;
}

.desc--invert {
  color: rgba(255, 255, 255, 0.78);
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  height: var(--header-h);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.header.is-hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.header__nav {
  padding: 18px 0;
  /* background: linear-gradient(
    180deg,
    rgba(74, 96, 116, 0.8) 7.2%,
    rgba(33, 31, 31, 0) 75%
  ); */
  background: linear-gradient(
    180deg,
    rgba(0, 77, 121, 0.8) 7.2%,
    rgba(8, 33, 55, 0.8) 75%
  );
}

.brand__logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.nav {
  gap: 18px;
}
.nav__link {
  position: relative;
  padding: 10px 4px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  transition: color 0.15s ease;
  text-align: center;
  text-transform: uppercase;
}
.nav__link:hover {
  color: rgba(255, 255, 255, 0.92);
}
.nav__link.is-active {
  color: var(--accent) !important;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--accent) !important;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.95;
}

/* =========================
   FULLPAGE BASELINE (refactor)
========================= */
.section {
  overflow: hidden;
  /* min-height: 100vh; */
}

body.is-fullpage .fp-section,
body.is-fullpage .section {
  height: 100vh !important;
}
body.is-fullpage .page__inner {
  height: 100%;
}

/* =========================
   PAGE/SECTION SYSTEM
========================= */
.page {
  position: relative;
}
.page--light {
  background: #fff;
}
.page--soft {
  background: var(--soft);
}
.page--dark {
  background: #0b2330;
  color: #fff;
}

.page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.page__full {
  height: 100%;
}

.page__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: var(--sec-pt);
  padding-bottom: var(--sec-pb);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.section-head {
  max-width: 920px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head--invert .eyebrow,
.section-head--invert .desc {
  color: rgba(255, 255, 255, 0.78);
}

.page__body {
  flex: 1;
  min-height: 0;
}

/* panel alignment */
.page--panel-right .page__inner {
  align-items: flex-end;
}
.page--panel-left .page__inner {
  align-items: flex-start;
}

.section[data-anchor="vi-tri"] .page__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.location__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: fill;
  object-position: center;
  padding: 0;
  border-radius: 0;
  z-index: 1;
}

.panel {
  max-width: 380px;
  border-radius: 18px;
}

/* =========================
   BUTTONS
========================= */
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100%;
}
.hero__swiper {
  height: 100%;
}

.hero__media {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.heroHeadline {
  position: absolute;
  left: 50%;
  top: 30%;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -30%) scale(0.98);
  filter: blur(2px);
}

.heroHeadline__img {
  max-width: min(900px, 82vw);
  width: 100%;
  height: auto;
  will-change: transform, opacity, filter;
  /* thêm bóng nhẹ để rõ trên nền video */
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.heroHeadline.is-show {
  animation: heroHeadlineSeq 3.2s ease forwards;
}

@keyframes heroHeadlineSeq {
  /* start hidden */
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px)) scale(0.98);
    filter: blur(3px);
  }

  /* fade in */
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }

  /* hold */
  62% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }

  /* fade out */
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px)) scale(1.02);
    filter: blur(2px);
  }
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 380px at 70% 35%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.1) 100%);
  pointer-events: none;
}

/* Play button */
.hero__playBtn {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(24, 160, 251, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  z-index: 5;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero__playBtn i {
  font-size: 24px;
  color: #fff;
  transform: translateX(1px);
}

/* Hover tinh tế */
.hero__playBtn:hover {
  transform: translateX(-50%) scale(1.04);
  background: rgba(24, 160, 251, 1);
}

/* @media (hover: hover) {
  .hero__media {
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }
  .hero__media:hover {
    transform: translateY(-2px);
    box-shadow: 0 34px 80px rgba(2, 6, 23, 0.28);
  }
} */

/* hero controls */
.hero__nav {
  position: absolute;
  right: 100px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero__btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
}

.hero__btn:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.hero__btn--prev::before,
.hero__btn--next::before {
  font-family: bootstrap-icons !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}
.hero__btn--prev::before {
  content: "\F284";
}
.hero__btn--next::before {
  content: "\F285";
}

/* hero dots */
.hero__dots {
  position: absolute;
  left: 50px !important;
  bottom: 25px !important;
  z-index: 5;
  width: fit-content !important;
}
.hero__dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}
.hero__dots .swiper-pagination-bullet-active {
  width: 18px;
  background: rgba(255, 255, 255, 0.92);
}

body.is-scroll-mode .section[data-anchor="home"] {
  min-height: 100vh;
  height: 100vh !important;
  padding-top: 0;
  padding-bottom: 0;
}

/* =========================
   ABOUT
========================= */
.page--about {
  position: relative;
  overflow: hidden;
}

.about {
  width: 100%;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 28px;
  align-items: start;
}

/* =========================
   OVERVIEW (KV)
========================= */
.page--overview {
  background: #f9fcff;
}

.overview {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.page--hero .section-cta {
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -20%);
}

.page--overview .section-cta {
  margin-left: 150px;
}

.kv-list {
  display: grid;
  gap: 2px;
}

.kv {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 16px;
}

.kv__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
}
.kv__value {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.85);
}

.bullets {
  margin: 0;
  padding-left: 0px;
  list-style-type: none;
}

.bullets li {
  margin: 6px 0;
  color: rgba(0, 0, 0, 0.8);
}

/* =========================
   VALUES
========================= */
.page--values {
  position: relative;
  overflow: hidden;
}

.values {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 40px;
  align-content: start;
}

.value {
  display: flex;
  min-width: 0;
  gap: 24px;
}

.value__icon img {
  width: 84px;
  height: 84px;
}

.value__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 36px;
  color: var(--brand);
}

.title-section .t-line {
  display: inline;
}
.title-section .t-line + .t-line::before {
  content: " – ";
}

.value__sub {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--brand);
}
.value__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  text-align: justify;
  color: var(--muted);
}

/* =========================
   GROUND UTILITIES
========================= */
.page--ground {
  position: relative;
  overflow: hidden;
}
.page--ground .page__bg {
  background: #faf7ee;
}

.ground__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  width: 35%;
}
.ground__decor img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ground {
  position: relative;
  z-index: 2;
}

.ground__top {
  display: flex;
  justify-content: center;
  width: 100%;
}

.ground__title {
  padding-top: 24px;
  margin-left: auto;
  margin-right: 48px;
  display: flex;
  justify-content: flex-end;
}

.ground__lists {
  display: flex;
  gap: 48px;
}

.ground__list {
  margin: 0;
  padding-left: 18px;
}
.ground__list li {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 300;
  line-height: 24px;
}

.ground__map {
  margin: 10px 0 0 auto;
}

.media-card {
  position: relative;
}
.media-card__img {
  width: 100%;
  height: clamp(550px, 50vh, 1360px);
  object-fit: contain;
  display: block;
}

/* =========================
  UTILITIES SECTION (TIỆN ÍCH) — CLEAN
========================= */

.page--utilities {
  position: relative;
  overflow: hidden;
  background: #0b2330;
}

/* Crossfade background layers */
.utilities__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 600ms ease,
    transform 900ms ease;
  filter: saturate(1.03) contrast(1.02);
}
.utilities__bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.page--utilities::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      1200px 720px at 18% 40%,
      rgba(0, 0, 0, 0.55),
      transparent 60%
    ),
    linear-gradient(
      90deg,
      rgba(11, 35, 48, 0.78) 0%,
      rgba(11, 35, 48, 0.42) 40%,
      rgba(11, 35, 48, 0.08) 70%,
      rgba(11, 35, 48, 0.02) 100%
    );
}

.page--utilities::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -28%;
  width: 60%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  transform: rotate(14deg);
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
}

.page--utilities .page__inner {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Left vector */
.utilities__vector {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42vw, 720px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
}
.utilities__vector img,
.utilities__vector svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout */
.utilities {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(500px, 520px) 1fr;
  gap: 40px;
  align-items: flex-end;
}

.utilities__left {
  position: relative;
  min-width: 0;
  padding-top: 10px;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.utilities__title {
  font-family: var(--font-title);
  font-size: clamp(34px, 3.2vw, 64px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 2rem 0 3rem;
  width: fit-content;
}

.utilities__desc {
  max-width: 520px;
  min-height: 80px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  text-align: left;
}

/* Thumbs wrap (Swiper thumbs) */
.utilities__thumbWrap {
  position: relative;
  margin-top: 6px;
  margin-bottom: 8px;
}

/* Full-bleed thumbs like design */
.utilitiesThumbs {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: 12px;
}

/* Left mask fade */
.utilities__thumbWrap::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  top: -18px;
  bottom: -18px;
  width: 160px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(11, 35, 48, 1) 0%,
    rgba(11, 35, 48, 0.85) 45%,
    rgba(11, 35, 48, 0) 100%
  );
}

.utilitiesThumbs .swiper-wrapper {
  align-items: center;
}

.utilitiesThumbs__slide {
  width: 250px;
  height: 270px;
  overflow: hidden;
  transform: translateZ(0);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  transition:
    transform 260ms ease,
    opacity 260ms ease,
    border-color 260ms ease,
    height 260ms ease;
}

.utilitiesThumbs__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.utilitiesThumbs .swiper-slide-thumb-active {
  border-color: rgba(0, 170, 255, 0.75);
  transform: translateY(-2px);
}
.utilitiesThumbs__slide.swiper-slide-next,
.utilitiesThumbs__slide.is-past {
  opacity: 0.55;
}

.utilitiesThumbs__slide.swiper-slide-active {
  height: 350px;
}

/* Dots */
.utilities__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.utilities__dots .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #d9d9d9;
  opacity: 1;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}
.utilities__dots .swiper-pagination-bullet-active {
  width: 22px;
  background: var(--brand);
}

/* Utilities: overlay mask chỉ để nhìn, không được chặn click/drag */
.utilities__thumbWrap::before {
  pointer-events: none;
}

/* Swiper phải nhận pointer events */
#utilities .utilitiesThumbs,
#utilities .utilitiesThumbs .swiper-wrapper,
#utilities .utilitiesThumbs .swiper-slide,
#utilities #utilitiesMain,
#utilities #utilitiesMain .swiper-wrapper,
#utilities #utilitiesMain .swiper-slide {
  pointer-events: auto;
}

/* Tránh kéo ảnh bị "ghost drag" trên desktop */
#utilities .utilitiesThumbs img {
  -webkit-user-drag: none;
  user-select: none;
}

/* =========================
   FULLPAGE NAV DOTS
========================= */
#fp-nav ul li a span {
  background: white;
  width: 10px;
  height: 10px;
}
#fp-nav ul li,
.fp-slidesNav ul li {
  width: 24px;
  height: 24px;
}
#fp-nav ul li a.active span {
  background: var(--brand);
}

#fp-nav ul li .fp-tooltip {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--brand);
  background: linear-gradient(45deg, var(--brand), var(--muted));
  backdrop-filter: blur(10px);
  margin-right: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* =========================
  MASTERPLAN
========================= */
.page--masterplan {
  position: relative;
  overflow: hidden;
  background: #083040;
  color: #fff;
}

/* .page--masterplan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      900px 520px at 18% 38%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.5) 0%,
      rgba(2, 6, 23, 0.22) 45%,
      rgba(2, 6, 23, 0.1) 100%
    );
} */

.page--masterplan .page__inner {
  position: relative;
  z-index: 2;
}

.masterplan {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(360px, 460px) 1fr;
  gap: 48px;
  align-items: center;
}

.masterplan__left {
  min-width: 0;
}

.masterplan__title {
  font-family: var(--font-title);
  font-size: clamp(34px, 3.2vw, 64px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.96);
}

.masterplan__tabs {
  display: inline-flex;
  gap: 12px;
  margin: 6px 0 18px;
}

.masterplan__tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  line-height: 1;
  border-radius: 8px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.masterplan__tab:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.masterplan__tab.is-active {
  background: rgba(24, 160, 251, 0.3);
  border-color: rgba(24, 160, 251, 0.65);
  color: rgba(255, 255, 255, 0.98);
}

.masterplan__info {
  margin-top: 6px;
}

.masterplan__lines {
  display: grid;
  gap: 10px;
}

.masterplan__line {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.masterplan__note {
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #14556e80;
  backdrop-filter: blur(10px);
  max-width: 420px;
}

.masterplan__noteText {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #f2ead8;
}

.masterplan__right {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.masterplan__frame {
  width: min(980px, 100%);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.masterplan__img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: contain;
  display: block;
  background: #fff;
}

.page--masterplan {
  position: relative;
  color: #fff;
}

/* overlay gradient nhẹ để text dễ đọc */
.page--masterplan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.18) 22%,
    rgba(0, 0, 0, 0) 60%
  );
}

.masterplan__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  /* padding-top: clamp(120px, 18vh, 200px); */
}

/* HEAD */

.masterplan__head {
  max-width: 820px;
}

.masterplan__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.masterplan__title {
  font-family: var(--font-title);
  font-size: clamp(36px, 3.5vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #f6e7bf;

  margin: 0;
}

.masterplan__desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
  SAMPLE APARTMENT
========================= */
.page--sample {
  position: relative;
  overflow: hidden;
  background: #0b2330;
  color: #fff;
}

.page--sample .section-cta {
  justify-content: center;
}

.page--sample .page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page--sample .page__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}

/* .page--sample::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      1000px 520px at 50% 16%,
      rgba(255, 255, 255, 0.1),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.22) 0%, rgba(2, 6, 23, 0.5) 100%);
} */

.page--sample .page__inner {
  position: relative;
  z-index: 2;
}

.sample {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sample__head {
  text-align: center;
  margin-top: 6px;
  margin-bottom: 16px;
}

.sample__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(34px, 3.4vw, 64px);
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.sample__tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  padding-bottom: 6px;
  margin: 0 auto 18px;
  max-width: 1200px;
}

.sample__tab {
  flex: 0 0 auto;
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.sample__tab:hover {
  transform: translateY(-1px);
}

.sample__tab.is-active {
  /* background: rgba(24, 160, 251, 0.8); */
  background: var(--brand);
  color: #f2ead8;
}

.sample__panel {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}

.sample__media {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

/* đặt trên ảnh, góc trái dưới */
.sampleMeta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 10;
  pointer-events: none;

  display: inline-flex;
  align-items: baseline;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 6, 23, 0.12);
  backdrop-filter: blur(10px);

  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.sampleMeta__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
  color: var(--text);
}

.sampleMeta__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
}

.page--sample .sampleMeta {
  background: rgba(255, 255, 255, 0.86);
}

/* outer slider */
.sampleMain {
  width: 100%;
  /* height: 100%; */
  height: 60vh;
}

.sampleMain .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sample__img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(2, 6, 23, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  color: var(--brand);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

/* hover */
@media (hover: hover) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  }
}

/* disabled */
.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* =========================
  PAYMENT
========================= */
.page--payment {
  position: relative;
  overflow: hidden;
  background: #0b2330;
  color: #fff;
}

.page--payment .page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page--payment .page__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page--payment::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.42) 0%,
    rgba(2, 6, 23, 0.22) 45%,
    rgba(2, 6, 23, 0.14) 100%
  );
}

.page--payment .page__inner {
  position: relative;
  z-index: 2;
}

.page--payment .section-cta {
  justify-content: center;
}

.payment {
  height: 100%;
}

.payment__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(36px, 3.6vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.payment__timelineImg {
  height: auto;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.25));
}

/* =========================
  process (TIẾN ĐỘ XÂY DỰNG)
========================= */
.page--process {
  position: relative;
  overflow: hidden;
  background: #0b2330;
  color: #fff;
}

.page--process .section-cta {
  justify-content: center;
}

.page--process .page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px);
  transform: scale(1.02);
  transition:
    filter 1s ease,
    transform 1.2s ease;
}

.page--process.is-active .page__bg img,
#process.is-active .page__bg img {
  filter: blur(6px);
  transform: scale(1);
}

.page--process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(2, 6, 23, 0.35);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.page--process.is-active::before,
#process.is-active::before {
  opacity: 1;
}

.page--process .page__inner {
  position: relative;
  z-index: 2;
}

.process {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.page--process.is-active .process,
#process.is-active .process {
  opacity: 1;
  transform: translateY(0);
}

.process__title {
  margin: 0 0 24px;
  font-family: var(--font-title);
  font-size: clamp(36px, 3.4vw, 64px);
  text-transform: uppercase;
}

.process__months {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.process__month {
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  color: #0b2330;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.process__month:not(.is-active) {
  opacity: 0.5;
}

.process__month.is-active {
  background: var(--brand);
  color: #fff;
}

.process__month:hover {
  transform: translateY(-1px);
}

.process__slider {
  width: 100%;
}

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

.process__nav {
  position: absolute;
  bottom: -9%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.process__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.process__btn--prev::before,
.process__btn--next::before {
  font-family: bootstrap-icons;
  color: #fff;
}
.process__btn--prev::before {
  content: "\F284";
}
.process__btn--next::before {
  content: "\F285";
}

.processSwiper .swiper-slide {
  background: transparent;
  box-shadow: none;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.process__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
  CONTACT (LIÊN HỆ)
========================= */
.page--contact {
  position: relative;
  overflow: hidden;
  background: #0b2330;
  color: #fff;
  display: flex;
  align-items: center;
}

.page--contact .page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.55) 0%,
    rgba(2, 6, 23, 0.65) 100%
  ); */
}

.page--contact .page__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact {
  width: 100%;
  text-align: center;
  background: #000000a8;
  padding: 60px 120px;
}

.contact__title {
  margin: 0 0 28px;
  font-family: var(--font-title);
  font-size: clamp(36px, 3.4vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contact__form {
  border-radius: 6px;
  padding: 26px;
  color: #0b2330;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.contact__field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d0d7de;
  font-size: 15px;
  outline: none;
  border-radius: 8px;
}

.contact__field input:focus {
  border-color: var(--brand);
}

.contact__options {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 18px 0;
  background: #ffffff;
  flex-wrap: wrap;
  padding: 24px 0px;
  border-radius: 8px;
}

.contact__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}

.contact__option input {
  accent-color: var(--brand);
}

.contact__actions {
  margin-top: 18px;
}

.contact__submit {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  border-radius: 1rem;
}

.contact__submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.contact__note {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255);
  text-align: justify;
}

.invalid-feedback {
  text-align: left;
  color: red;
}

#fp-watermark {
  display: none !important;
}

/* =========================
   SECTION ANIMATION SYSTEM (MULTI PRESETS)
   - Section gets: .sa + .sa-<preset>
   - Items get: .sa-item + --sa-delay
   - Active: .is-active (fullpage) / .is-inview (scroll mode)
========================= */

.section.sa {
  perspective: 1100px;
}

/* default prepare */
.section.sa .sa-item {
  opacity: 0;
  transform: translate3d(0, var(--sa-y), 0);
  transition:
    opacity var(--sa-duration) var(--sa-ease),
    transform var(--sa-duration) var(--sa-ease);
  transition-delay: var(--sa-delay, 0ms);
  will-change: transform, opacity;
}

/* ===== Background motion presets ===== */
.section.sa .page__bg > img {
  transition:
    transform var(--sa-duration-bg) var(--sa-ease),
    opacity var(--sa-duration-bg) var(--sa-ease),
    filter var(--sa-duration-bg) var(--sa-ease);
  will-change: transform, opacity, filter;
}

/* default bg */
.section.sa .page__bg > img {
  transform: scale(1.05);
  opacity: 0.92;
}

/* activate bg */
.section.sa.is-active .page__bg > img,
.section.sa.is-inview .page__bg > img {
  transform: scale(1);
  opacity: 1;
}

/* ===== PRESET 1: fade-up (classic) ===== */
.section.sa.sa-fade-up .sa-item {
  transform: translate3d(0, 18px, 0);
}
.section.sa.sa-fade-up.is-active .sa-item,
.section.sa.sa-fade-up.is-inview .sa-item {
  transform: translate3d(0, 0, 0);
}

/* ===== PRESET 2: slide-left (content from left) ===== */
.section.sa.sa-slide-left .sa-item {
  transform: translate3d(-26px, 0, 0);
}
.section.sa.sa-slide-left.is-active .sa-item,
.section.sa.sa-slide-left.is-inview .sa-item {
  transform: translate3d(0, 0, 0);
}

/* ===== PRESET 3: slide-right ===== */
.section.sa.sa-slide-right .sa-item {
  transform: translate3d(26px, 0, 0);
}
.section.sa.sa-slide-right.is-active .sa-item,
.section.sa.sa-slide-right.is-inview .sa-item {
  transform: translate3d(0, 0, 0);
}

/* ===== PRESET 4: lift + subtle scale (card feel) ===== */
.section.sa.sa-lift .sa-item {
  transform: translate3d(0, 22px, 0) scale(0.985);
}
.section.sa.sa-lift.is-active .sa-item,
.section.sa.sa-lift.is-inview .sa-item {
  transform: translate3d(0, 0, 0) scale(1);
}

/* ===== PRESET 5: blur-in (premium) ===== */
.section.sa.sa-blur .sa-item {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--sa-duration) var(--sa-ease),
    transform var(--sa-duration) var(--sa-ease),
    filter var(--sa-duration) var(--sa-ease);
}
.section.sa.sa-blur.is-active .sa-item,
.section.sa.sa-blur.is-inview .sa-item {
  filter: blur(0);
}

/* activate */
.section.sa.is-active .sa-item,
.section.sa.is-inview .sa-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ===== PRESET 6: split-title (title lines animate) ===== */
.section.sa.sa-split-title .sa-split {
  display: inline-block;
  overflow: hidden;
}
.section.sa.sa-split-title .sa-split > span {
  display: inline-block;
  transform: translate3d(0, 120%, 0);
  transition: transform 760ms var(--sa-ease);
  transition-delay: var(--sa-delay, 0ms);
}
.section.sa.sa-split-title.is-active .sa-split > span,
.section.sa.sa-split-title.is-inview .sa-split > span {
  transform: translate3d(0, 0, 0);
}

/* ===== BG variants per preset ===== */
.section.sa.sa-parallax-bg .page__bg > img {
  transform: scale(1.1) translate3d(0, 10px, 0);
  filter: saturate(1.02) contrast(1.02);
}
.section.sa.sa-parallax-bg.is-active .page__bg > img,
.section.sa.sa-parallax-bg.is-inview .page__bg > img {
  transform: scale(1) translate3d(0, 0, 0);
}

.section.sa.sa-soft-zoom-bg .page__bg > img {
  transform: scale(1.08);
}
.section.sa.sa-soft-zoom-bg.is-active .page__bg > img,
.section.sa.sa-soft-zoom-bg.is-inview .page__bg > img {
  transform: scale(1);
}

/* Optional: heavier blocks settle */
.section.sa .sa-item.is-heavy {
  transition-duration: 880ms;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .section.sa .page__bg > img,
  .section.sa .sa-item,
  .section.sa.sa-split-title .sa-split > span {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* =========================
  Floating Contact + Section CTA + Popup
========================= */

/* CTA inside section */
.section-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
  margin-top: 5rem;
}

.page--masterplan .section-cta {
  margin-top: 1rem;
}

.page--panel-right .section-cta {
  justify-content: flex-end;
}
.section-cta__btn {
  position: relative;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.02em;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.28s cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease;

  overflow: hidden;
  animation: ctaPulseBreath 1.5s ease-in-out infinite;
}

.section-cta__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(255, 188, 0, 0.25);
  filter: brightness(1.05);
}

.section-cta__btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.section-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transition: left 0.7s ease;
}

.section-cta__btn:hover::before {
  left: 120%;
}

/* soft glow pulse */
.section-cta__btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;

  background: radial-gradient(
    closest-side,
    rgba(255, 188, 0, 0.35),
    transparent 70%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

@keyframes ctaPulseBreath {
  0% {
    transform: scale(1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  50% {
    transform: scale(1.06);
    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.22),
      0 0 18px rgba(255, 188, 0, 0.28);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }
}

.section-cta__btn:hover::after {
  opacity: 0.6;
}
.page.page--values .section-cta__btn,
.page.page--about .section-cta__btn {
  margin: 0 auto;
}

.page.page--ground .section-cta__btn {
  margin: 0px auto 36px;
}

.page.page--utilities .section-cta__btn {
  margin: 0px 36px 36px;
}

/* Floating widget */
.floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: grid;
  gap: 10px;
}

.floating__item {
  appearance: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px auto;
  align-items: center;
  /* gap: 10px; */
  /* padding: 8px 12px 8px 8px; */
  padding: 0px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  /* border: 1px solid rgba(2, 6, 23, 0.12); */
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  color: rgba(2, 6, 23, 0.85);
  width: 44px;
}

.floating__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.floating__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.floating__icon i {
  font-size: 18px;
  color: var(--brand);
}
.floating__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.floating__label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(3px);
}

/* Popup card */
.popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2001;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 28px));
  border-radius: 18px;
  background: rgba(11, 35, 48, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 22px 20px 18px;
}

.popup__close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
}

.popup__head {
  text-align: center;
  padding: 8px 20px 10px;
}

.popup__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.popup__sub {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.popup__form {
  margin-top: 12px;
}

.popup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.popup__field input,
.popup__field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
}
.popup__field input::placeholder,
.popup__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.popup__field--full {
  grid-column: 1 / -1;
}

.popup__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.popup .invalid-feedback {
  display: none;
  color: #ffb4b4;
  font-size: 12px;
  margin-top: 6px;
  text-align: left;
}
.popup .was-validated input:invalid ~ .invalid-feedback,
.popup .was-validated textarea:invalid ~ .invalid-feedback {
  display: block;
}

/* =========================
  POPUP BROCHURE
========================= */
.popup--brochure {
  width: min(1400px, calc(100% - 28px));
  padding: 0;
  overflow: hidden;
  background: rgba(9, 30, 41, 0.96);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.popupBrochure {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
}

.popupBrochure__media {
  position: relative;
  overflow: hidden;
  background: #082534;
}

.popupBrochure__mediaBg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
    url("/assets/img/masterplan/background-chm.png") center / cover no-repeat;
  transform: scale(1.02);
}

.popupBrochure__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 300px at 20% 20%,
      rgba(255, 188, 0, 0.12),
      transparent 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.popupBrochure__mediaContent {
  /* position: absolute; */
  z-index: 2;
}

.popupBrochure__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.popupBrochure__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 2.4vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  color: #f6e7bf;
}

.popupBrochure__desc {
  margin: 1.5rem 0px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 100%;
}

.popupBrochure__formWrap {
  padding: 34px 28px 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popupBrochure__head {
  margin-bottom: 20px;
}

.popupBrochure__label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.popupBrochure__files {
  display: grid;
  gap: 10px;
}

.popupFile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 5px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.popupFile__icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  /* background: rgba(255, 188, 0, 0.14); */
  background: #fff;
  color: #f6e7bf;
  flex: 0 0 38px;
}

.popupFile__icon i {
  font-size: 18px;
}

.popupFile__icon i.bi-file-earmark-pdf {
  color: #ed2224;
}

.popupFile__icon i.bi-file-earmark-excel {
  color: #107c41;
}

.popupFile__name {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.4;
}

.popupFile__meta {
  margin: 3px 0 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.popupBrochure__form {
  margin-top: 4px;
}

.popup__grid--single {
  grid-template-columns: 1fr;
}

.popupBrochure__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 64em) {
  .popup--brochure {
    width: min(700px, calc(100% - 20px));
  }

  .popupBrochure {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .popupBrochure__media {
    min-height: 240px;
  }

  .popupBrochure__mediaContent {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .popupBrochure__formWrap {
    padding: 22px 18px 18px;
  }
}

@media (max-width: 48em) {
  .popup__grid {
    grid-template-columns: 1fr;
  }
  .floating__label {
    display: none;
  }
  /* .floating__item {
    grid-template-columns: 44px;
    padding: 8px;
    border-radius: 14px;
  } */
}

.thankyou {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
  display: none;
}
.thankyou__card {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  margin-top: 12vh;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color: #fff;
}
.thankyou__title {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.thankyou__desc {
  margin: 0 0 14px;
  opacity: 0.9;
}
.thankyou__btn {
  width: 100%;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.form.is-submitting {
  pointer-events: none;
}

body:not(.is-fullpage) #fullpage > .section {
  min-height: 100svh;
}

/* Lead form section inline */

/* =========================
  INLINE LEAD STRIP
========================= */
.section--lead-inline {
  min-height: auto !important;
  background: transparent;
}

.section--lead-inline {
  min-height: auto !important;
  background:
    radial-gradient(
      1200px 320px at 50% 0%,
      rgba(255, 188, 0, 0.02),
      transparent 20%
    ),
    linear-gradient(180deg, #faf7ee 0%, #8fccd1 100%);
  position: relative;
  overflow: hidden;
}

.section--lead-inline::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  /* background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 24%),
    radial-gradient(
      800px 220px at 15% 50%,
      rgba(0, 77, 121, 0.04),
      transparent 70%
    ),
    radial-gradient(
      900px 260px at 85% 60%,
      rgba(255, 188, 0, 0.05),
      transparent 72%
    ); */
  background: #faf7ee;
}

.section--lead-inline .page__inner {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 32px;
}

.lead-strip {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 28px 32px;
  background: linear-gradient(
    180deg,
    rgba(0, 77, 121, 0.96) 0%,
    rgba(8, 33, 55, 0.96) 100%
  );
  border: 1.5px solid rgba(255, 188, 0, 0.42);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-strip__glow {
  position: absolute;
  inset: auto auto -20% -8%;
  width: 38%;
  height: 140%;
  pointer-events: none;
  opacity: 0.28;
  background: radial-gradient(
    closest-side,
    rgba(255, 188, 0, 0.22),
    rgba(255, 188, 0, 0.08),
    transparent 72%
  );
}

.lead-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(
      900px 260px at 85% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    );
}

.lead-strip__content {
  position: relative;
  z-index: 1;
}

.lead-strip__head {
  text-align: center;
  margin-bottom: 20px;
}

.lead-strip__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.lead-strip__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(26px, 2vw, 42px);
  line-height: 1.14;
  text-transform: uppercase;
  color: #f6e7bf;
}

.lead-strip__desc {
  margin: 10px auto 0;
  max-width: 850px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.lead-strip__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.lead-strip__field {
  min-width: 0;
}

.lead-strip__field input {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lead-strip__field input:focus {
  border-color: rgba(255, 188, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 188, 0, 0.12);
}

.lead-strip__field .invalid-feedback {
  text-align: left;
  color: #ffd2d2;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.lead-strip__form.was-validated input:invalid ~ .invalid-feedback {
  display: block;
}

.lead-strip__actions {
  display: flex;
}

.lead-strip__submit {
  min-width: 190px;
  height: 56px;
  border-radius: 14px;
  padding: 0 24px;
  border: 0;
  background: linear-gradient(180deg, #f4d488 0%, #d9a940 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.lead-strip__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

@media (max-width: 64em) {
  .section--lead-inline .page__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lead-strip {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .lead-strip__head {
    margin-bottom: 16px;
  }

  .lead-strip__title {
    font-size: 28px;
  }

  .lead-strip__desc {
    font-size: 13px;
    max-width: 100%;
  }

  .lead-strip__form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-strip__actions {
    width: 100%;
  }

  .lead-strip__submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 36em) {
  .lead-strip__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .lead-strip__field input,
  .lead-strip__submit {
    height: 52px;
  }
  .page--overview,
  .page--about {
    min-height: 125vh !important;
  }

  .sample__tabs {
    justify-content: center !important;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 87.5em) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1560px;
  }
}

@media (min-width: 64em) {
  .header__collapse {
    justify-content: center;
  }
  .nav {
    gap: 34px;
  }
}

/* =========================
   MOBILE 
========================= */
@media (max-width: 64em) {
  :root {
    --sec-pt: 36px;
    --sec-pb: 36px;
    --lh-title: 2;
    --lh-body: 1.85;

    /* animation slightly shorter on mobile */
    --sa-y: 14px;
    --sa-duration: 640ms;
    --sa-duration-bg: 980ms;
    --sa-stagger: 75ms;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .section:not(.page--hero) {
    min-height: 850px;
  }

  .section:not(.page--hero) {
    min-height: 850px;
  }
  .header__container {
    padding: 0;
  }

  body:not(.is-fullpage) #fullpage > .section.page--hero {
    /* padding-top: var(--header-h, 80px); */
    padding-top: 80px;
    min-height: 100% !important;
    height: 100% !important;
  }

  body:not(.is-fullpage) #fullpage > .section {
  }

  body:not(.is-fullpage) #fullpage > .section .page__inner {
    min-height: auto;
    justify-content: flex-start;
  }

  /* Header */
  .brand__logo {
    width: 120px;
  }

  .hero__nav {
    right: 18px;
  }

  .header {
    position: fixed;
  }
  .header__nav {
    backdrop-filter: blur(10px);
    padding: 12px;
  }

  .nav__link.is-active::after {
    width: 75%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 3px;
  }

  .navbar-toggler {
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  #mainNav {
    margin-top: 1rem;
  }

  .hero .swiper-slide {
    height: auto;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .about__brand {
    text-align: center;
  }

  .about__brand br {
    display: none;
  }

  .page--about .page__bg {
    inset: unset;
    bottom: 0;
  }

  /* Overview */
  .overview {
    grid-template-columns: 1fr;
    gap: 4px;
    width: fit-content;
    border-radius: 12px;
    padding: 12px;
  }

  .page--overview .section-cta {
    margin-left: unset;
  }
  .page--overview .page__bg {
    inset: auto 0 0 0;
    z-index: 0;
    height: min(46vh, 475px);
  }

  .kv {
    grid-template-columns: 100px 1fr;
    gap: 4px;
  }

  .kv-list {
    gap: 4px;
  }

  .kv__label,
  .kv__value {
    font-size: 13px;
  }

  .page--overview .page__bg > img {
    object-position: 25% 50%;
    height: 100%;
  }

  .panel {
    max-width: 100%;
  }

  .page--panel .page__bg {
    inset: unset;
    bottom: 0;
    width: 100%;
  }

  .page--panel {
    background: #faf7ee;
    min-height: 750px !important;
  }

  .section-head {
    margin: 0 auto 24px;
  }

  .page--panel-right .page__inner,
  .page--panel-left .page__inner {
    align-items: stretch;
  }

  /* Values */
  .title-lg,
  .title-section {
    font-weight: 400;
    font-size: 42px;
    line-height: 72px;
    text-align: center;
    margin-bottom: 24px;
  }

  .values {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .page--values {
    background: linear-gradient(180deg, #faf7ee 0%, #faf7ee 35%, #90cdd0 100%);
  }

  .page--values .page__inner {
    padding-bottom: calc(var(--sec-pb) + 42vh);
  }

  .page--values .page__bg {
    inset: auto 0 0 0;
    z-index: 0;
  }

  .title-section .t-line {
    display: block;
  }
  .title-section .t-line + .t-line::before {
    content: "";
  }

  .page--values .value__desc {
    color: rgba(15, 23, 42, 0.72);
  }

  .ground__top {
    flex-direction: column;
  }

  .ground__list li {
    font-size: 14px;
    line-height: 24px;
    min-width: 105px;
  }

  .ground__title {
    margin: 0 auto;
    padding-top: 0px;
  }

  .ground__title br {
    display: none;
  }

  .ground__lists {
    gap: 12px;
    margin-bottom: 12px;
  }

  .groundM__ctrlGroup {
    position: absolute;
    right: 14px;
    bottom: 0;
    z-index: 6;
    display: grid;
  }

  .groundM__ctrl {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 23, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    place-items: center;
  }

  .groundM__ctrl i {
    font-size: 20px;
    color: rgba(2, 6, 23, 0.82);
  }

  .ground__decor {
    bottom: 0;
    top: unset;
    width: 100%;
    height: 300px;
  }

  .media-card__img {
    height: 75vh;
    object-fit: contain;
  }

  .page--utilities {
    background: #faf7ee;
    min-height: fit-content !important;
  }

  .page--utilities::before,
  .page--utilities::after,
  .utilities__bg,
  .utilities__vector {
    display: none !important;
  }

  .utilitiesM {
    width: 100%;
    padding-bottom: 36px;
  }

  .utilitiesM__media {
    width: 100%;
    position: relative;
    display: none;
  }

  .utilitiesMobileMain {
    width: 100%;
    height: 526px;
    border-radius: 0;
    overflow: hidden;
    background: #ddd;
  }

  .utilitiesM__mainImg {
    width: 100%;
    height: 576px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    transition: opacity 180ms ease;
  }

  .utilitiesMobileMain.is-switching .utilitiesM__mainImg {
    opacity: 0.85;
  }

  .utilitiesM__ctrl {
    position: absolute;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 23, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
  }

  .utilitiesM__ctrl--left {
    left: 14px;
    bottom: 32px;
  }

  .utilitiesM__ctrlGroup {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    display: grid;
    gap: 10px;
    width: 42px;
    height: 42px;
  }

  .utilitiesM__ctrl--left::before {
    content: "";
    background-image: url("/assets/img/icons/full-screen.png");
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }

  .utilitiesM__ctrl--left::after {
    background: var(--brand);
    content: "Nhấn để xem chế độ xem toàn màn hình";
    width: max-content;
    font-size: 12px;
    position: absolute;
    bottom: -24px;
    left: 0;
    color: white;
    padding: 0 12px;
    border-radius: 12px;
  }

  .utilitiesM__title {
    margin: 18px 0 12px;
    text-align: center;
    font-family: var(--font-title);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand);
  }

  .utilities {
    display: none;
  }

  .utilitiesM__thumbWrap {
    padding: 10px 24px 0;
  }

  .utilitiesM__thumb {
    width: 350px;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transform: translateZ(0);
    transition:
      opacity 180ms ease,
      filter 180ms ease,
      transform 180ms ease;
  }

  .utilitiesM__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .locationTimes__row {
    margin: 0 32px;
  }

  .location__video {
    height: 422px;
    object-fit: inherit;
    object-position: 55%;
    inset: unset;
    bottom: 0;
  }

  .utilitiesMobileThumbs
    .swiper-slide:not(.swiper-slide-active)
    .utilitiesM__thumb {
    opacity: 0.55;
    filter: blur(0.35px) saturate(0.95);
  }

  .utilitiesM__ctrl.utilitiesM__ctrl--zoomIn {
    left: -50px;
  }

  .utilitiesMobileThumbs .swiper-slide-active .utilitiesM__thumb {
    opacity: 1;
    filter: none;
    transform: translateY(-1px);
  }

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

  .utilitiesM__dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.18);
    transition:
      transform 160ms ease,
      background 160ms ease;
  }

  .utilitiesM__dot.is-active {
    background: var(--brand);
    transform: scale(1.06);
  }

  .utilities__desc {
    text-align: center;
    margin: 8px 24px 12px;
    color: #000;
    max-width: 100%;
    font-size: 14px;
    min-height: 80px;
  }

  .page--sample::before {
    background: none;
  }

  .page--masterplan {
    /* background: #faf7ee; */

    min-height: 40vh !important;
  }

  .page--masterplan::before {
    background: none;
  }

  .masterplan__title {
    color: var(--brand);
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
  }

  .masterplan {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .masterplan__tabs {
    width: 100%;
    justify-content: center;
  }

  .masterplan__tab.is-active {
    background: var(--brand);
    color: white;
  }

  .masterplan__tab {
    background: #d9d9d9;
    color: var(--brand);
    font-weight: 600;
  }

  .masterplan__line {
    font-size: 18px;
    color: var(--brand);
    font-weight: 500;
  }

  .masterplan__note {
    max-width: 100%;
  }

  .masterplan__img {
    height: auto;
  }

  .masterplan__frame {
    box-shadow: none;
  }

  .page--sample {
    background: #faf7ee;
    min-height: 750px !important;
  }

  .sample__title {
    margin-bottom: 12px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.95);
  }

  .sample__subtitle {
    font-size: 12px;
  }

  .sample__tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .sample__tab {
    box-shadow: none;
    background: #d9d9d9;
    color: var(--brand);
    font-weight: 600;
    font-size: 10px;
    padding: 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .sample__img {
    height: 300px;
    object-fit: contain;
  }

  .sample__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
  }

  .sample__ctrl {
    position: absolute;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 23, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(2, 6, 23, 0.82);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
  }

  .sample__ctrl.sample__ctrl--zoomIn {
    left: -50px;
  }

  .sample__ctrl--rotate {
    left: 14px;
    bottom: 14px;
  }
  .sample__ctrl--rotate::before {
    content: "";
    background-image: url("/assets/img/icons/full-screen.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .sample__ctrlGroup {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    display: grid;
    gap: 10px;
    width: 42px;
    height: 42px;
  }

  .page--payment {
    background: #004d79;
  }

  .page--payment .page__bg {
    inset: auto 0 0 0;
    height: 38vh;
    z-index: 0;
  }

  .page--payment::before {
    inset: 0 0 30vh 0;
    background: linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.55) 0%,
      rgba(2, 6, 23, 0.25) 65%,
      rgba(2, 6, 23, 0) 100%
    );
  }

  .payment__head {
    text-align: center;
  }

  .payment__title {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 32px;
  }

  .payment__timeline {
    height: 700px;
    -webkit-overflow-scrolling: touch;
  }

  .payment__timelineImg.mobile {
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.28));
    object-fit: cover;
    height: 80%;
  }

  .page--payment .section-cta {
    display: none;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page--process .page__inner {
    padding-bottom: 100px;
  }

  .contact {
    padding: 30px 60px;
  }

  .page--contact {
    align-items: flex-start;
  }

  .header__nav {
    background: linear-gradient(
      180deg,
      rgba(74, 96, 116, 0.8) 7.2%,
      rgba(33, 31, 31, 0) 160%
    );
  }

  .page--contact .page__bg {
    inset: auto 0 0 0;
    height: min(50vh, 475px);
    z-index: 0;
  }

  .contact {
    background: unset;
    padding: 0;
  }

  .contact__title {
    color: var(--brand);
    font-size: 60px;
    margin: 0px 0 12px;
  }

  .contact__option span {
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    text-align: center;
    color: var(--brand);
  }

  .contact__note {
    font-size: 12px;
    color: var(--black);
    margin: 24px;
  }

  .contact__options {
    background: unset;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
  }

  .contact__option {
    margin: 0 18px;
    width: 100%;
  }

  .page--contact {
    background: linear-gradient(180deg, #faf7ee 0%, #90cdd0 100%);
  }

  .page--contact::before {
    background: unset;
  }

  .page--contact {
    min-height: 1050px !important;
  }

  /* Hamburger */
  .header__toggle {
    border: 0;
    padding: 6px;
    background: transparent;
  }

  .header__toggle:focus {
    box-shadow: none;
  }

  .hamburger {
    width: 26px;
    height: 18px;
    position: relative;
    display: inline-block;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      top 0.28s ease;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 8px;
  }
  .hamburger span:nth-child(3) {
    top: 16px;
  }

  .header__toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .header__toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  .locationM__ctrlGroup {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 6;
    display: grid;
    gap: 10px;
  }

  .locationM__ctrl {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 23, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
  }

  .locationM__ctrl i {
    font-size: 20px;
    color: rgba(2, 6, 23, 0.82);
  }

  .page--panel .page__inner {
    position: relative;
  }

  .page--panel-right .section-cta {
    justify-content: center;
  }

  .sampleMeta {
    left: 12px;
    padding: 8px 12px;
    gap: 8px;
    top: 0;
    bottom: unset;
    left: 50%;
    transform: translateX(-50%);
  }

  .sample__media {
    overflow: visible;
  }

  .section-cta {
    justify-content: center;
    margin-top: 5rem;
  }

  .panel--location {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .panel--location .title-lg {
    margin-bottom: 0;
  }

  .panel--location .desc {
    margin-top: 0;
    margin-bottom: 0;
  }

  .locationM__media {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .panel--location .location__video {
    position: relative;
    inset: auto;
    width: 100%;
    /* height: 260px; */
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }

  .panel--location .locationTimes {
    margin-top: 0;
    max-width: 100%;
    gap: 14px;
  }

  .panel--location .locationTimes__row {
    margin: 0;
    grid-template-columns: 92px 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .panel--location .section-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .panel--location .locationM__ctrlGroup {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 6;
    display: grid;
    gap: 10px;
  }

  .sampleMain {
    height: 45vh;
  }
  .popupBrochure__files {
    /* grid-template-columns: repeat(2, 1fr); */
  }

  .popupBrochure__desc {
    display: none;
  }

  .popupFile {
    align-items: center;
  }

  .popupBrochure__title {
    margin: 1rem 0px;
  }

  .popup__close {
    z-index: 2;
    background: var(--bs-form-invalid-border-color);
  }
}

@media (hover: hover) {
  .header__toggle:hover .hamburger span {
    background: var(--accent);
  }
}

@media (max-width: 48em) {
  .contact__row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 0px;
  }

  .contact__options {
    gap: 14px;
  }
}

@media (max-width: 36em) {
  .heroHeadline__img {
    max-width: 86vw;
  }

  .hero .section-cta__btn {
    display: none;
  }

  .hero {
    /* margin-top: var(--header-h); */
  }

  .header {
    /* background: var(--brand); */
  }

  .title-lg,
  .title-section {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 12px;
  }

  .text {
    font-size: 13px;
    margin: 0 42px;
  }

  .page--about .page__bg > img {
    height: 634px;
    object-position: 100% 50%;
  }

  .page__inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page--values .page__inner {
    padding-bottom: calc(var(--sec-pb) + 25vh);
  }

  .desc {
    font-size: 13px;
  }

  .page--values .value__title {
    font-size: 18px;
    line-height: 1;
  }

  .page--values .value__sub {
    font-size: 14px;
    margin: 0.3rem 0px;
  }

  .page--values .value__desc {
    font-size: 13px;
  }

  .value__icon img {
    width: 32px;
    height: 32px;
  }

  .payment__title {
    font-size: 32px;
  }

  .payment__timeline {
    height: 650px;
  }

  .hero__dots {
    left: 20px !important;
  }

  .page.page--sample {
    min-height: 750px !important;
  }

  .page.page--masterplan {
    min-height: 24vh !important;
  }

  .ground__list li {
    font-size: 12px;
    line-height: 18px;
  }

  .sampleMain {
    height: 50vh;
  }

  .process__nav {
    bottom: -10%;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .section-cta__btn {
    padding: 12px;
  }

  .sampleMeta__value {
    font-size: 14px;
  }

  .section-cta {
    margin-top: 1rem;
  }

  .popupBrochure__media {
    display: none;
  }
}
