.property-hero {
    position: relative;
    overflow: hidden;
}

.property-banner-single {
    position: relative; /* REQUIRED for absolute children */
    height: 100dvh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--bg-desktop);
}

/* Parallax */
.parallax {
    background-attachment: fixed;
}

.property-logo-container {
    position: absolute;
    bottom: 6rem;
    right: 6rem;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal center */
    justify-content: flex-start; /* TOP → BOTTOM */

    gap: 1rem;
    padding: 1.5rem;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border-radius: 14px;
}

.property-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

/* Logo */
.property_logo {
    max-width: 300px;
    display: block;
}

/* Status text */
.property-status-code{
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    color: #fff;
}

.map-cont h1 {
  margin-bottom: 3rem;
}

.property-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 60px;
  gap: 7rem;
}

.property-section-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7rem;
}

.property-status-page{
  position: absolute;
  bottom: 4rem;
  right: 1rem;
  height: auto;
  font-size: 1.6  rem;
  color: #ffffff;
}

.detail-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.detail-header h1 {
  width: 580px;
}

.detail-header p {
  font-size: 1rem;
}

.property-details-list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 158px;
  padding: 0 60px;
}

.etablishment-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.property-details-list > div {
  width: 280px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 5px 15px;
  height: 100%;
  border-right: 1px solid #e49b14;
  text-align: center;
  /* separator line */
}

/* Remove line from the last item */
.property-details-list>div:last-child {
  border-right: none;
}

.details-location p {
  font-size: 16px;
  text-align: center;
}

.details-price p {
  font-size: 16px;
}

.unit-list ul li {
  font-size: 16px;
  list-style: none;
}

.amenities-list ul {
  column-count: 2;
}

.amenities-list ul li {
  font-size: 16px;
  list-style: none;
}

.map-section {
  height: 100vh;
  min-height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  flex-wrap: wrap;
  position: relative;
}

.map-wrapper{
  display: flex;
  padding: 80px;
}

.establishment-wrapper {
  margin: 0;
}

.establishment-wrapper ul {
  margin: 10px 0;
}

.establishment-wrapper li {
  list-style: none;
  font-size: 26px;
}

/* facade */
.facade-section {
  height: max-content;
  padding: 40px 60px;
}

.scape-header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.facade-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.facade-wrapper img {
  width: 660px;
  height: 460px;
  border-radius: 8px;
}

.facade-wrapper h1 {
  width: 520px;
  line-height: 55px;
}

.facade-wrapper p {
  width: 520px;
  line-height: 24px;
}

.facade-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* amenities */
.gallery {
  display: grid;
  grid-template-areas:
    "left middle top-right"
    "left bottom-middle bottom-right";
  grid-template-columns: 286px 340px 504px;
  gap: 1rem;
  justify-content: center;
}

.img1 {
  grid-area: left;
  height: 586px;
}

.img2 {
  grid-area: middle;
  width: 340px;
  height: 306px;
}

.img3 {
  grid-area: top-right;
  width: 504px;
  height: 306px;
}

.img4 {
  grid-area: bottom-right;
  width: 504px;
  height: 262px;
}

.img5 {
  grid-area: bottom-middle;
  width: 340px;
  height: 262px;
}

.gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.escape-section {
  height: max-content;
  padding: 40px 60px;
}

.scape-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Container & Section */
.space-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 60px;
  gap: 4rem;
  width: 100%;
}

/* Header */
.space-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.space-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Swiper */
.our-spaces-swiper {
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide */
.space-slide {
  aspect-ratio: 440 / 410;
  max-width: 440px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Hover effect */
.space-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.swiper-button-prev.swiper-spaces-prev,
.swiper-button-next.swiper-spaces-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: none;
  width: auto !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev.swiper-spaces-prev {
  left: 5px;
}

.swiper-button-next.swiper-spaces-next {
  right: 5px;
}

.swiper-button-next.swiper-spaces-next::after,
.swiper-button-prev.swiper-spaces-prev::after {
  content: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  transition: transform 0.3s ease;
  fill: #001845;
}

.swiper-button-next:hover svg {
  transform: translateX(4px);
}

.swiper-button-prev:hover svg {
  transform: translateX(-4px);
}


.card-title-home
 {
    color: #001845 !important;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 130px;
    height: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .property-hero {
    height: 70vh;
  }

  .property_logo {
    width: 250px;
    bottom: 15px;
    right: 15px;
  }

  .property-details-list {
    height: 100%;
    padding: 0 20px;
  }

}
/* Mobile */
@media (max-width: 767px) {

  .parallax-bg {
        background-image: var(--bg-mobile);
        background-attachment: scroll; /* smoother on mobile */
    }

  .property-hero {
    height: 22vh;
  }

  .property_logo {
    width: 120px;
    bottom: 15px;
    right: 15px;
  }

  .property-section {
    padding: 40px 20px;
    gap: 0;
  }

  .detail-header h1 {
    width: auto;
  }

  .detail-header p {
    font-size: 18px;
  }

  .property-details-list {
    flex-direction: column;
    align-items: center;
  }

  .property-details-list>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 320px;
    padding: 35px 10px;
    border-right: 0;
    border-bottom: 1px solid #e49b14;
    text-align: center;
  }

  /* Map Section  */
  .map-section {
    padding: 40px 20px;
    height: auto;
    min-height: auto;
  }

  .map-wrapper {
    display: flex;
    flex-direction: column;
    align-items:center;
    padding: 0;
  }

  .map-cont {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .map-cont h1 {
    font-size: 35px;
    margin-bottom: 1.5rem;
  }

  .etablishment-list-wrapper {
    gap: 0;
  }

  .etablishment-list-wrapper h2 {
    font-size: 22px;
    margin-bottom: 0.5rem;
  }

  .establishment-wrapper {
    margin-bottom: 2rem;
  }

  .establishment-wrapper ul {
    margin: 0;
  }

  .establishment-wrapper li {
    list-style: none;
    font-size: 18px;
  }

  /* Facade Section  */

  .facade-section {
    padding: 40px 20px;
    height: auto;
  }

  .facade-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .facade-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .facade-wrapper h1 {
    width: 100%;
    line-height: normal;
    text-align: center;
  }

  .facade-wrapper p {
    width: 100%;
    text-align: center;
  }

  .facade-content {
    width: 100%;
    text-align: center;
    gap: 1.5rem;
  }

  /* Our Space Section */

  .space-section {
    padding: 40px 20px;
    height: auto;
    gap: 2rem;
    text-align: center;
  }

  .space-section>div>h1 {
    margin-bottom: 1.5rem;
  }

  .swiper-slide-active {
    width: 100% !important;
  }

  /* Escape Section */
  .escape-section {
    padding: 40px 20px;
    height: auto;
    gap: 2rem;
  }

  .scape-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .scape-wrapper p {
    text-align: center;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .img1,
  .img2,
  .img3,
  .img4,
  .img5 {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3; /* Keep images proportional */
  }

  .gallery > div {
    margin-bottom: 1rem;
  }
}