body{
    margin: 0;
    padding: 0;
}
*{
    font-family: "general-sans" !important ;
}


@font-face {
  font-family: "general-sans";
  src: url("../vendor/fonts/GeneralSans-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.mobile-show {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-show {
    display: block !important;
  }
  .desktop-show {
    display: none !important;
  }
  .br {
    display: none;
  }
}
  /* ================= HEADER ================= */
  .clean-header{
    width:100%;
    background:transparent;
    padding:25px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
    position:absolute;
    box-sizing:border-box;
  }

  .header-left { display:flex; gap:24px; align-items:center; }
  .logo-1{
    height:55px;
    filter: invert(1);
  }

  .header-nav ul{
    display:flex;
    gap:32px;
    margin:0;
    padding:0;
    list-style:none;
  }

  .header-nav ul li a{
    text-decoration:none;
    font-weight:600;
    color: #FFFFFF;
    font-size:16px;
  }
  
  .header-nav ul li a:hover {
  color:#0F0F0F;
  transition: 0.3s;
}

  /* Hamburger */
  .mobile-toggle{
    display:none;
    cursor:pointer;
    z-index:99999;
  }

  .mobile-toggle img{
    width:30px;
    height:auto;
    pointer-events:auto;
    filter: invert(1);
  }

  @media(max-width:850px){
    .mobile-toggle{ display:block; }
    .header-nav ul li a{
      font-size: 16px;
    }
    .header-nav{
        display: none;
        position: absolute;
        width: 90%;
        margin: auto;
        border-radius: 20px;
        left: 0;
        right: 0;
        top: 72px;
        background: #fff;
        padding: 20px 0;
        /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
        z-index: 9999;
    }

    .header-nav ul{
      flex-direction:column;
      gap:18px;
      align-items:center;
    }

    .header-nav.active{ display:block; }
     .header-nav ul li a{
       color:#0F0F0F;
    }
    
    .header-nav ul li a:hover {
      color: #FFFFFF;
}

  }

  /* ================= BANNER ================= */
  .banner-section{
    position:relative;
    height: 70em;
    width:100%;
    overflow:hidden;
  }

 
.banner-image {
  position: absolute;   /* 🔥 KEY FIX */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 1;
}
.banner-text h1{
      font-size: 44px;
    color: #FFFFFF;
    font-weight: 600;
}

  /* FIXED TEXT ANIMATION */
.banner-text {
  position: absolute;     /* 🔥 FIX */
  /* top: 40vh; */
  top: 35vh;
  left: 60px;
  opacity: 1;
  z-index: 10;
}

/* Fixed while scrolling */
.fixed-hero-text {
  position: fixed;
  top: 35vh;
  left: 60px;
  /* transform: translateX(-50%); */
  opacity: 1;
}

/* Released */
.unfixed-hero-text {
     position: absolute;
    /* top: calc(130vh + 30px); */
    top: calc(900px + 30px);

}
section.banner-section.custom-hero:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2;
    opacity: .2;
}
  /* @keyframes fadeText{
    from{
      opacity:0;
      transform:translate(-50%, 20px);
    }
    to{
      opacity:1;
      transform:translate(-50%, 0);
    }
  } */

  /* Enquire button */
  .side-enquire{
    position:fixed;
    right: 0px;
    top:40%;
    transform:rotate(-90deg) translateY(-50%);
    transform-origin:right center;
    background:black;
    color:#fff;
    padding:10px 22px;
    border:none;
    cursor:pointer;
    font-weight:700;
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
    border-radius: 0px;
    font-size: 16px;
    z-index: 10000;
  }
  .side-enquire:hover {
    background: #222;
    transform: rotate(-90deg) translateY(-50%) translateX(3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}


  @media(max-width:480px){
    .banner-section{
      height: 92vh;
      margin-bottom: 0px;
    }
      .banner-image{
    transform: translateY(0%);
  }

    .side-enquire{
      font-size: 16px;
    }
    .banner-text h1{
      font-size: 32px;
    }
    .banner-text {
          font-size:32px;
      /* top:18%; */
      white-space:normal;
      width:100%;
  top: 18vh;
  left: 0px;
  text-align: center;
}
/* Fixed while scrolling */
.fixed-hero-text {
  position: fixed;
top: 18vh;
  left: 0px;
  text-align: center;
}
.unfixed-hero-text {
    position: absolute;
    /* top: calc(50vh + 30px); */
    top: calc(68vh + 30px);
}

    .clean-header{ padding:20px 15px; }
    .logo-1{height:40px;}
  }

  /* ================= POPUP ================= */
 .popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s ease, visibility .22s;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* FIXED — popup-box → popup-form */
.popup-form {
  background: #fff;
  width: 92%;
  max-width: 420px;
  padding: 28px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* FIXED — close-popup → close-btn */
.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* FIXED — popup-box → popup-form */
.popup-form h4,
.popup-form .popup-title {
  font-size: 40px;
}

/* FIXED — popup-box → popup-form */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 14px;
}

/* FIXED — popup-box → popup-form */
.popup-form button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: black;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

@media(max-width:480px){
  .popup-form { width: 90%; }
  .popup-form input,
  .popup-form textarea {
    width: 100%;
  }
}

/* ======== POPUP ANIMATIONS ======== */

/* Fade + slight zoom for popup box */
.popup-box {
  transform: scale(0.85);
  opacity: 0;
  transition: 
      transform .35s cubic-bezier(0.25, 0.8, 0.25, 1),
      opacity .35s ease;
}

/* When overlay becomes visible, animate popup box */
.popup-overlay.show .popup-box {
  transform: scale(1);
  opacity: 1;
}

/* Optional: subtle fade for overlay (already present but smoother) */
.popup-overlay {
  transition: opacity .35s ease, visibility .35s ease;
}

/* Counter Section */
.count-section {
  padding: 80px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px 0;
}

.count-box {
  flex: 1;
  min-width: 200px;
}

.count-number {
  font-size: 40px;
  font-weight: 700;
  color: #0F0F0F;
}

.count-label {
  margin-top: 6px;
  font-size:16px;
  color: #555;
}

/* ================= MOBILE FIX: 2 Columns × 2 Rows ================= */
@media (max-width: 600px) {
  .count-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
    padding: 50px 0;
  }

  .count-box {
    flex: unset;
    min-width: unset;
  }

  .count-number {
    font-size: 32px;
    font-weight: 600;
  }

  .count-label {
    font-size: 16px;
  }
}

/* clubhouse section */
.clubhouse-section {
  padding: 80px 70px;
}

.clubhouse-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.clubhouse-image {
  width: 50%;
}
.clubhouse-image img {
  /* width: 90%;
  border-radius: 20px;
  display: block;
  margin: auto;
  height: 370px; */
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: auto;
    height: 505px;
}

.clubhouse-text {
  max-width: 500px;
}

.clubhouse-text h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0px;
  color: #0F0F0F;
}

.clubhouse-text h4 {
  font-weight: 400;
  margin-bottom: 40px;
  color: #000000;
}

.clubhouse-text p {
  color: #0F0F0F;
  font-size:16px;
  line-height: 1.6;
}
/* Initial state */
.clubhouse-image,
.clubhouse-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* When in view */
.clubhouse-section.animate .clubhouse-image {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
  transform: translateY(0);
}

.clubhouse-section.animate .clubhouse-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  /* clubhouse section */
  .clubhouse-image {
    width: 100%;
  }
  .clubhouse-section {
    padding: 40px 20px;
  }
  .clubhouse-image img {
    width: 100%;
    height: auto;
  }
  .clubhouse-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
  .clubhouse-text {
    max-width: 100%;
  }
  .clubhouse-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .clubhouse-text h4 {
    font-size: 16px;
  }
  .clubhouse-text p {
    font-size: 18px;
  }
}

/* highlights */
.highlight-card { 
  position: relative;
  overflow: hidden;
  transition: 
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease,
    filter 0.3s ease;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.highlight-card:hover::before {
  left: 130%;
}

.highlight-card:hover {
  transform: scale(1.06) rotateZ(0.3deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35); /* Darker & deeper shadow */
  filter: brightness(1.03) contrast(1.08);
  z-index: 1;
}

/* Image Hover Enhancement */
.highlight-card img {
  transition: transform 0.4s ease, filter 0.3s ease;
  will-change: transform;
}

.highlight-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.highlights-section {
  padding: 100px 60px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}
.highlight-card strong {
  font-weight: 600;
  font-size:18px;
}
.highlight-card small{
  font-size: 16px;
}

.highlight-card img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.highlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 97%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0px;
  padding: 0px 10px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.63%, rgba(0, 0, 0, 0.338592) 71.63%, rgba(0, 0, 0, 0.518695) 84.51%, rgba(0, 0, 0, 0.806858) 97.76%, #000000 105.75%);
}

.highlights-heading {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.highlights-para {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.fade-stagger {
  opacity: 1;
}

.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.highlights-mobile{
  color: white;
}

@media (max-width: 768px) {
  .highlight-overlay{
    gap: 7px;
  }
  .highlight-title{
    margin: 0;
    font-weight: 600;
    font-size: 16px;
  }
  .highlight-card strong {
  font-weight: 600;
  font-size:18px;
}
.highlight-card small{
  font-size: 16px;
}
  .highlights-heading {
    font-size: 32px;
    text-align: center;
  }

  .highlights-para {
    font-size: 14px;
    text-align: center;
  }
}

/* master-plan */
/* INITIAL STATE */
.master-plan {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 60px;
  background: #FFFCF4;
}

.master-plan.animate {
  opacity: 1;
  transform: translateY(0);
}

/* TITLE */
.master-plan h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  text-align: left;
  margin-bottom: 40px;
}

/* CONTAINER */
.plan-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

/* IMAGE WRAPPER */
.plan-image-wrapper {
  position: relative;
  width: 60%;
}

.plan-image {
  width: 105%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.master-plan.animate .plan-image {
  opacity: 1;
  /* transform: scale(1); */
}

/* MAP BUTTONS */
.map-button {
  position: absolute;
    transform: translate(-50%, -50%);
    background: #111;
    color: #fff;
    font-size: 16px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    text-align: center;
    line-height: 21px;
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.map-button:hover {
  /* transform: scale(1.2); */
  cursor: pointer;
}

/* LEGEND GRID */
.legend-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  width: auto;
  height: 60%;
  flex: 1;
  padding: 20px;
}

/* LEGEND ITEM BASE */
.legend-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size:16px;
  font-weight: 300;
  color: #222;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  text-align: left;
}

/* LEGEND ITEM STAGGER (triggered when parent is in view) */
.master-plan.animate .legend-item {
  animation: legendFade 0.6s ease forwards;
}

.master-plan.animate .legend-item:nth-child(1) {
  animation-delay: 0.1s;
}
.master-plan.animate .legend-item:nth-child(2) {
  animation-delay: 0.2s;
}
.master-plan.animate .legend-item:nth-child(3) {
  animation-delay: 0.3s;
}
.master-plan.animate .legend-item:nth-child(4) {
  animation-delay: 0.4s;
}
.master-plan.animate .legend-item:nth-child(5) {
  animation-delay: 0.5s;
}
.master-plan.animate .legend-item:nth-child(6) {
  animation-delay: 0.6s;
}
.master-plan.animate .legend-item:nth-child(7) {
  animation-delay: 0.7s;
}
.master-plan.animate .legend-item:nth-child(8) {
  animation-delay: 0.8s;
}
.master-plan.animate .legend-item:nth-child(9) {
  animation-delay: 0.9s;
}
.master-plan.animate .legend-item:nth-child(10) {
  animation-delay: 1s;
}
.master-plan.animate .legend-item:nth-child(11) {
  animation-delay: 1.1s;
}
.master-plan.animate .legend-item:nth-child(12) {
  animation-delay: 1.2s;
}
.master-plan.animate .legend-item:nth-child(13) {
  animation-delay: 1.3s;
}
.master-plan.animate .legend-item:nth-child(14) {
  animation-delay: 1.4s;
}
.master-plan.animate .legend-item:nth-child(15) {
  animation-delay: 1.5s;
}
.master-plan.animate .legend-item:nth-child(16) {
  animation-delay: 1.6s;
}
.master-plan.animate .legend-item:nth-child(17) {
  animation-delay: 1.7s;
}
.master-plan.animate .legend-item:nth-child(18) {
  animation-delay: 1.8s;
}

/* LEGEND ITEM SPAN */
.legend-item span {
  background: #0F0F0F;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* LEGEND HOVER & ACTIVE */
.legend-item:hover,
.legend-item.active {
  background-color: #0F0F0F;
  color: #e2e2e2;
}
.legend-item.active span {
  background-color: transparent;
  color: #e2e2e2;
}

/* LEGEND FADE KEYFRAMES */
@keyframes legendFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-label {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #0F0F0F;
  color: #fff;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.map-label.visible {
  opacity: 1;
}
.inner-icon {
      position: absolute;
    bottom: -20px;
    right: 10px;
    width: 55px;
    height: auto;
}    
@media (max-width: 1024px) {
  /* master plan */
  .legend-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .master-plan h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .plan-image-wrapper {
    /* width: 100%; */
    width: 97%;
  }
}
@media (max-width: 768px) {
  /* master plan */
  .inner-icon {
  position: absolute;
    bottom: -22px;
    right: 0px;
    width: 38px;
    height: auto;
} 
  .map-label {
    /* display: none; */
    font-size: 8px;
    padding: 5px 5px;
  }
  .master-plan {
    /* margin-top: -50px; */
    padding: 50px 20px;
  }
  .legend-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0px;
  }
  .map-button {
    position: absolute;
    transform: translate(-50%, -50%);
    background: #111;
    color: #fff;
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }

  .legend-item {
    font-size: 14px;
    padding: 4px;
    text-align: left;
  }
  .plan-container {
    gap: 25px;
  }
  .legend-item span {
    width: 24px;
    height: 24px;
    font-size: 8px;
    line-height: 24px;
  }
  .master-plan h2 {
    font-size: 32px;
    margin-bottom: 35px;
  }
}

/* ===================== FLOOR PLANS ===================== */

.floor-plans-section {
  padding: 60px ;
  background: #fff;
}

.floor-plans-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
.floor-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* ------------------ Tabs ------------------ */
.tabs {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  padding-bottom: 10px;
  margin-bottom: 35px;
}

.tab {
  background: transparent;
  border: none;
  color: #0F0F0F;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.tab.active {
  color: #0F0F0F;
  font-weight: 600;
  position: relative;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 100%;
  background: #0F0F0F;
}

/* ------------------ Content ------------------ */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ------------------ Layout Wrapper ------------------ */
.plan-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 30px;
}

.plan-details {
  flex: 0.45;
  padding: 35px 28px;
  /* background: #f6f4ee; */
  border-radius: 12px;
}

/* ------------------ Image ------------------ */
.plan-image-2 {
  flex: 0.7;
  text-align: center;
}

.plan-image-2 img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
#aesthetics .plan-image-2 img {
  /* width: 100%; */
  /* height: 550px; */
    height: 600px;
}
#aesthetics .plan-wrapper{
  justify-content: space-evenly;
}
#aesthetics h5{
  font-size: 20px ;
  font-weight: 600;
  margin-top: 40px;
}
/* ------------------ Info Grid ------------------ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-box {
  display: flex;
  gap: 12px;
}

.info-box img {
  width: 34px;
  height: 34px;
}

.info-box div {
  font-size: 16px;
  line-height: 1.4;
}

/* ------------------ Collapsible ------------------ */
.collapsible {
  margin-top: 30px;
}

.collapsible-header {
  padding: 25px 0 20px;
  border-top: 1px solid #d2d0c9;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.arrow-icon {
  width: 18px;
  height: 11px;
  transition: transform 0.3s ease;
}

.collapsible-content {
  display: none;
  padding-top: 18px;
}

/* ------------------ Dimensions Grid ------------------ */
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 25px;
}

.dimension-box {
  font-size: 14px;
}

/* ------------------ Room Table ------------------ */
.room-table-wrapper {
  border-radius: 15px;
  overflow: hidden;      /* REQUIRED */
  border: 1px solid #DEDEDE;
}
.room-table {
  width: 100%;
  border-collapse: separate; /* IMPORTANT */
  border-spacing: 0;         /* Removes gaps */
}

.room-table th,
.room-table td {
  padding: 12px 10px;
  text-align: left;
  font-size: 14px;
  color: #0F0F0F;
}
.room-table th {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background-color: #FFFCF4;
}

/* ------------------ Fade Animation ------------------ */
.fade-stagger .fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.fade-stagger .fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  #aesthetics .plan-image-2 img {
  height: auto;
}
  #aesthetics h5{
  font-size: 18px ;
  font-weight: 600;
  margin-top: 30px;
}
.info-box div{
  font-size: 16px;
}
  .dimension-box {
  font-size: 14px;
}
  .floor-plans-section {
    padding:40px 20px;
  }
  .floor-head{
    flex-direction: column;
}
  .floor-plans-section h2 {
    font-size: 32px;
    align-self: flex-start;
  }

  .tabs {
    overflow-y: scroll;
    gap: 8px;
    padding-bottom: 12px;
    width: 100%;
    justify-content: center;
  }

  .tab {
    font-size: 15px;
    flex: 0 0 auto;
  }

  .plan-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .plan-details {
    width: 100%;
    padding: 20px 0px;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 18px;
  }

  .dimension-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px 5px;
    margin-bottom: 30px;
  }

  .room-table th,
  .room-table td {
    font-size: 14px;
    padding: 8px 0px;
  }
}

/* ================= RHYTHM SECTION ================= */

.rhythm-section {
  padding:60px;
  max-width: 100%;
  margin: 0 auto 0px auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;

  /* Animation initial */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  flex-wrap: nowrap;
  justify-content: center;
  box-sizing: border-box;
  background: #FFFCF4;
}

/* content */
.rhythm-content {
  /* margin: 0px 20px 1.5rem 20px; */
  flex: 1;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Typography rules you requested */
.rhythm-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000000;
}

.rhythm-subtitle {
  font-size:18px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #6C6C6C;
}

.rhythm-description {
  font-size:16px;
  color: #0F0F0F;
  line-height: 150%;
}

/* image wrapper */
.rhythm-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  flex: 1;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rhythm-image {
  width: 100%;
  height: 660px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 1024px) {
  .rhythm-section {
    display: block;
    padding: 40px 20px;
  }

  .rhythm-image-wrapper {
    margin-bottom: 20px;
  }

  .rhythm-title {
    font-size: 32px;
    margin: 30px 0px;
  }

  .rhythm-subtitle {
    font-size: 18px;
  }

  .rhythm-description {
    font-size: 16px;
  }

  .rhythm-content {
    margin: 0;
  }

  .rhythm-image {
    height: auto;
  }
}

/* when visible */
.rhythm-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.rhythm-section.visible .rhythm-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.rhythm-section.visible .rhythm-image-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Slide animation for desktop */
@media (min-width: 1025px) {
  .rhythm-image-wrapper {
    transform: translateX(15px);
  }

  .rhythm-content {
    transform: translateX(-15px);
  }

  .rhythm-section.visible .rhythm-image-wrapper {
    transform: translateX(0);
  }

  .rhythm-section.visible .rhythm-content {
    transform: translateX(0);
  }
}
 

/* amenities */
.amenities-section {
  padding: 0px;
  margin:  0px;
  background-color: #FFFFFF
}

.amenities-wrapper {
  display: flex;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.amenities-content {
  flex: 1;
  /* padding-left: 100px; */
}
.amenities-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 110.00000000000001%;
  margin: 50px 0px 26px 0px;
}

.amenities-content h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
}

.amenities-content p {
  font-size:16px;
  line-height: 150%;
  margin-bottom: 0px;
  max-width: 500px;
}

.amenities-images {
  display: flex;
  gap: 16px;
  flex: 1;
  min-width: 300px;
  height: 750px;
  overflow: hidden;
}

.column {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-content img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 16px;
  object-fit: cover;
  height: 444px;
}

/* Scroll up */
.marquee-up .marquee-content {
  animation: scroll-up 80s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Scroll down */
.marquee-down .marquee-content {
  animation: scroll-down 80s linear infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.amenities-tabs {
  display: flex;
  gap: 25px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.asterisk {
  color: rgba(0, 0, 0, 0.5); /* 50% opacity black */
      margin-right: -9px;
    margin-left: -10px;
}

/* Redesigned Amenities Tabs */

.amenity-tab {
  background: transparent;
  border: none;
  padding: 12px 10px;
  font-size:16px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  color: #0F0F0F;
  transition: color 0.3s ease;
}

.amenity-tab::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0F0F0F;
  transition: width 0.3s ease;
}

.amenity-tab:hover {
  font-weight: 700;
}

.amenity-tab.active {
  background-color: transparent ;
  font-weight: 700;
}

.amenity-tab.active::after {
  width: 100%;
}

.amenity-tab-content {
  margin-top: 24px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0px;
}

.amenity-item {
  font-size:16px;
  padding: 12px 0px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

/* .amenity-item:hover {
  background-color: #e6e1d8;
} */

.amenity-item span {
  background-color: #a0897b;
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
}

.amenity-tab-content .amenity-list {
  display: none;
}

.amenity-tab-content .amenity-list.active {
  display: grid;
}
.amenities-image-set {
  display: none;
}

.amenities-image-set.active {
  display: flex;
}
/* black square with soft shadow / blur glass */
.amenity-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0F0F0F;
  backdrop-filter: blur(4px);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.35);
  display: inline-block;
}

@media (max-width: 768px) {
  .amenity-item::before {
  width: 8px;
  height: 8px;
}
.amenities-tabs {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

  /* amenities */
  .amenities-content h2{
    font-size: 32px;
    margin: 10px 0px 25px 0px;
  }
  .amenity-item{
    padding: 10px 0px;
    font-size: 14px;
  }
.amenity-tab {
  padding: 8px 0px;
  font-size: 16px;
  color: #0F0F0F;
}
  .amenities-section {
    margin-block: 0;
    padding-bottom: 50px;
  }

  .amenity-list {
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
  }
  .amenities-content {
    padding: 40px 20px;
    margin-bottom: 20px;
  }
  .amenities-content p {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .amenity-tab-content{
    margin-top: 0px;
  }
  .amenities-wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 0px;
  }

  .amenities-images {
    flex-wrap: nowrap;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    height: auto;
    gap: 0px;
  }

  .column {
    flex-direction: row;
    height: 100%;
    width: fit-content;
  }

  .marquee-content {
    flex-direction: row;
    animation: none;
  }

  .marquee-content img {
    /* height: auto; */
    height: 200px;
    width: 320px;
    margin-right: 16px;
  }
  .marquee-up .marquee-content {
    animation: scroll-up 80s linear infinite;
  }

  @keyframes scroll-up {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Scroll down */
  .marquee-down .marquee-content {
    animation: scroll-down 80s linear infinite;
  }

  @keyframes scroll-down {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
}


/* gallery section */
.custom-gallery-carousel {
  text-align: center;
  padding:60px 0;
  background: #fff;
  overflow: hidden;
}
.custom-gallery-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.custom-carousel-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.custom-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.custom-carousel-slide {
  flex: 0 0 975px;
  margin: 0 10px;
  /* opacity: 0.3; */
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 12px;
  overflow: hidden;
}

.custom-carousel-slide.active {
  transform: scale(1);
  opacity: 1;
}

/* .custom-carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
} */
.custom-carousel-slide img {
  width: 100%;
  height: 600px; /* Fixed height for consistency */
  object-fit: cover; /* Ensures image fills the box without distortion */
  display: block;
  border-radius: 12px;
}

/* .custom-carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
} */
 .custom-carousel-buttons {
display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* padding: 0 7em; */
    top: 40%;
    gap: 40px;
    margin-top: 40px;
}

.custom-carousel-btn {
  /* background: none;
  border: none;
  font-size:18px;
  cursor: pointer;
  background: #a0897b;
  color: white;
  padding: 0px 10px;
  border-radius: 61%; */
    background: none;
    border: 1px solid #949494;
    font-size:18px;
    cursor: pointer;
    background: transparent;
    color: #000000;
    padding: 15px 25px;
    border-radius: 5px;
}

.custom-carousel-btn:hover {
    background: #f0f0f0;
    border-color: #000;
    color: #000;
}
.carousel-caption-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  width: 100%;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.carousel-caption-2 h4 {
  margin: 0;
  font-size:18px;
  font-weight: 600;
}

.carousel-caption-2 p {
  margin-top: 5px;
  font-size:16px;
  line-height: 1.4;
}
.custom-gallery-p{
  margin-bottom: 50px;
  padding: 0px 50px;
  font-size:16px;
}
.custom-carousel-slide {
  flex: 0 0 975px;
  margin: 0 10px;
  transform: scale(0.7);
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 12px;
  overflow: hidden;
  will-change: transform, opacity;
}

@media (max-width: 900px) {
.custom-carousel-slide {
  flex: 0 0 850px;
}
}
@media (max-width: 768px) {
  .custom-gallery-carousel {
    padding: 40px 0px ;
  }
  .custom-carousel-buttons{
    margin-top: 0px;
    transform: translateX(0%);
  }
  .custom-gallery-p{
    margin-bottom: 50px;
    font-size: 16px;
    padding: 0px 20px;
    text-align: left;
  }
  .custom-carousel-slide {
    flex: 0 0 800px;
    margin: 0 10px;
    /* opacity: 0.3; */
    transform: scale(1) !important;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 12px;
    overflow: hidden;
  }
  /* gallery section */
  .custom-carousel-slide {
    flex: 0 0 85%;
    margin: 0 10px;
    /* opacity: 0.3; */
    transform: scale(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 12px;
    overflow: hidden;
  }
  .custom-carousel-slide img {
    height: 250px;
  }
  .custom-gallery-title {
    font-size: 32px;
    margin-bottom: 20px;
    padding-left: 20px;
    margin-top: 0px;
    text-align: left;
  }
  .carousel-caption-2 {
    position: relative;
    bottom: -15px;
    left: 0;
    padding: 20px;
    color: black;
    /* background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0)); */
    background: none;
    width: 100%;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .carousel-caption-2 h4 {
    margin: 0;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .carousel-caption-2 p {
    font-size: 16px;
  }
  .custom-carousel-btn {
    /* border: none;
    font-size: 15px;
    cursor: pointer;
    background: #a0897b;
    color: white;
    padding: 3px 9px;
    border-radius: 61%; */
        background: none;
    border: 1px solid #DEDEDE;
    font-size:18px;
    cursor: pointer;
    background: white;
    color: #DEDEDE;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .custom-carousel-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  position: static;
  padding: 0;
  top: 0;
  gap: 40px;
  margin-top: 0px;
}
}

/* specification */
.specifications-section {
  background: #FFFCF4;
  padding: 60px;
}

.specifications-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
}

.specifications-heading {
  flex: 1;
  min-width: 280px;
}

.specifications-heading h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

.specifications-heading p {
  font-size:18px;
  font-weight: 500;
  color: #000000;
}

.specifications-accordion {
  flex: 2;
  min-width: 300px;
}

.spec-item {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  padding: 20px 0;
}

.spec-title {
  font-size:18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0F0F0F;
}

.spec-title::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('/melodiesoflifeapartments/images/floor-plans/downward.webp'); 
  /* background-image: url('@/images/downward.webp');  */
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.spec-item.active .spec-title::after {
  background-image: url('/melodiesoflifeapartments/images/floor-plans/upward.webp');
  /* background-image: url('@/images/upward.webp');  */
}

.spec-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.spec-item.active .spec-content {
  max-height: 1000px; /* enough for two columns */
  margin-top: 20px;
}

/* Two-column inside content */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.spec-col {
  flex: 1;
  min-width: 250px;
}

.spec-col p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}
/* specification for mobile */
.mspec-section {
  background: #FFFCF4;
  padding: 60px 20px;
}

.mspec-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0F0F0F;
}

.mspec-subtitle {
  font-size: 16px;
  color: #0F0F0F;
  margin-bottom: 20px;
}

.mspec-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 30px 0px;
}

.mspec-tabs {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  padding-bottom: 4px;
}

.mspec-tab {
  background: transparent;
  color: #0F0F0F;
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mspec-tab.active {
  background: #3c2c22;
  color: #fff;
}

.mspec-content {
  display: none;
  /* border-top: 1px solid #e0ddd6; */
  padding-top: 20px;
}

.mspec-content.active {
  display: block;
}

.mspec-content h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0F0F0F;
}

.mspec-content p {
  font-size: 16px;
  color: #0F0F0F;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .spec-col p{
    font-size: 14px;
  }
  .mspec-content p{
    font-size: 16px;
  }
  .mspec-title {
    font-size: 32px;
  }

  .mspec-subtitle {
    font-size: 16px;
    font-weight: 600;
  }
  .mspec-tab {
    font-size: 16px;
    padding: 8px 16px;
    color: #0F0F0F;
  }
  .mspec-tabs::-webkit-scrollbar {
    display: none;
  }
  .mspec-tabs {
    scrollbar-width: none;
  }
}

/* sustainability */
.carbon-healing-section {
  color: #1a1a1a;
  background: #fff;
  padding: 60px;
}

.carbon-healing-container {
  max-width: 100%;
  margin: auto;
}

.carbon-healing-text {
  padding-left: 30px;
}

.carbon-healing-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 10px;
}

.carbon-healing-logo {
  height: 100px;
  margin-bottom: 20px;
  display: block;
}

.carbon-healing-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #464646;
  max-width: 700px;
  margin-bottom: 5px;
}

.carbon-healing-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  flex-wrap: wrap;
}

.carbon-healing-card {
  border: none;
  background: #FFFFFF;
  border: 1px solid #0000001A;
  border-radius: 20px;
  padding: 20px 25px;
  width: calc(25% - 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
}
.carbon-healing-card:hover{
  border-color: transparent;
  transition: 0.4s;
  background: #FFFCF4;
  box-shadow:
  /* Change x-offset from 0 to 5px */
  5px 20px 40px -10px rgba(0, 0, 0, 0.15),
  5px 5px 15px -5px rgba(0, 0, 0, 0.1);
}

.carbon-healing-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.carbon-healing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F0F0F;
  margin-bottom: -5px;
}

.carbon-healing-card p {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

/* Fade-up animation keyframes */
@keyframes ch-fadeUp {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ch-cardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carbon-healing-text {
  opacity: 0;
  transform: translateY(40px);
}

.carbon-healing-section.animate .carbon-healing-text {
  animation: ch-fadeUp 2s ease forwards;
}

.carbon-healing-section.animate .carbon-healing-card {
  animation: ch-cardFadeUp 0.8s ease forwards;
}

.carbon-healing-section.animate .carbon-healing-card:nth-child(1) {
  animation-delay: 0.4s;
}
.carbon-healing-section.animate .carbon-healing-card:nth-child(2) {
  animation-delay: 0.5s;
}
.carbon-healing-section.animate .carbon-healing-card:nth-child(3) {
  animation-delay: 0.6s;
}
.carbon-healing-section.animate .carbon-healing-card:nth-child(4) {
  animation-delay: 0.7s;
}

@media (max-width: 768px) {
  
  .carbon-healing-section {
    padding: 40px 20px;
  }

  .carbon-healing-text {
    padding-left: 0;
    text-align: center;
  }

  .carbon-healing-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .carbon-healing-logo {
    display: block;
    margin: 20px 0px 30px 0px;
    width: 80% !important;
    height: auto;
  }

  .carbon-healing-desc {
    font-size: 16px;
    margin: 0 auto 16px auto;
    max-width: 100%;
    text-align: left;
  }

  .carbon-healing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
  }

  .carbon-healing-card {
    border-radius: 16px;
    padding: 15px;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .carbon-healing-card img {
    width: 40px;
    height: 40px;
  }

  .carbon-healing-card h3 {
    font-size: 16px;
    font-weight: 700;
  }

  .carbon-healing-card p {
    font-size: 12px;
    text-align: center;
    line-height: 150%;
  }
  .carbon-healing-text .logo-wrapper {
    flex-shrink: 0;
    width: 70%;
  }
}
/* Only on desktop */
@media (min-width: 768px) {
  .carbon-healing-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 0px;
    padding-left: 0;
  }

  .carbon-healing-text .logo-wrapper {
    flex-shrink: 0;
  }

  .carbon-healing-text .carbon-healing-logo {
    height: 130px;
    width: auto;
    margin-bottom: 0;
  }

  .carbon-healing-text .text-wrapper {
    max-width: 550px;
    max-width: 50%;
  }
}

/* LOCATION SECTION */

.location-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #FFFCF4;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
}

.location-section.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT CONTENT */
.location-content {
  width: 50%;
  counter-reset: globalCount; /* GLOBAL COUNTER for all lists */
}

.location-section h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 40px;
}

/* TABS */
.location-tabs {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 34px;
}

.loc-tab {
  background: none;
  border: none;
  font-size: 16px;
  color: #8A8A8A;
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
  white-space: nowrap;
}

.loc-tab.active {
  color: #0F0F0F;
  font-weight: 500;
}

.loc-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  background: #0F0F0F;
  border-radius: 3px;
}

/* TAB CONTENT — default hidden */
.loc-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  padding-left: 10px;
}

/* Show active tab */
.loc-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* LIST */
.loc-tab-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LIST ITEMS */
.loc-tab-content li {
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  max-width: 380px;
  color: #0F0F0F;
  position: relative;
  padding-left: 40px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
.loc-tab-content li:hover{
  cursor: pointer;
}
/* LI HOVER → NUMBER BADGE BLACK */
.loc-tab-content li:hover::before {
  background: #000000 !important;
}
/* number badge */
.loc-tab-content li::before {
  content: attr(data-num); /* JS will insert the number here */
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
}
.loc-tab-content.active li {
  opacity: 1;
  transform: translateX(0);
}

.loc-tab-content.active li:nth-child(1) { transition-delay: .05s; }
.loc-tab-content.active li:nth-child(2) { transition-delay: .10s; }
.loc-tab-content.active li:nth-child(3) { transition-delay: .15s; }
.loc-tab-content.active li:nth-child(4) { transition-delay: .20s; }
.loc-tab-content.active li:nth-child(5) { transition-delay: .25s; }

/* NUMBER BADGE (shared styles) */

/* TAB-SPECIFIC BULLET COLORS */
.loc-tab-content.health li::before {
  background: #d3c794;
}

.loc-tab-content.education li::before {
  background: #D0A86B;
}

.loc-tab-content.dining li::before {
  background: #E5CA80;
}

.loc-tab-content.it li::before {
  background: #E6B558;
}

.loc-tab-content.shopping li::before {
  background: #C3B357;
}

/* Time label */
.loc-tab-content li span {
  font-weight: 600;
}

/* MAP */
.location-map {
  width: 50%;
}

.location-map img {
  width: 100%;
  height: auto;
}
/* MAP BUTTONS */
.locmap-wrapper {
  position: relative;
}

.locmap-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.locmap-btn.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

/* COLORS MATCHING LIST */
.locmap-btn.health { background: #d3c794; }
.locmap-btn.education { background: #D0A86B; }
.locmap-btn.dining { background: #E5CA80; }
.locmap-btn.it { background: #E6B558; }
.locmap-btn.shopping { background: #C3B357; }

/* ---------------------------------------------------
   MOBILE RESPONSIVE
--------------------------------------------------- */
@media (max-width: 768px) {
  .locmap-btn{
    width: 15px;
    height: 15px;
    font-size: 9px;
}
  .location-section {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .location-content,
  .location-map {
    width: 100%;
  }

  .location-tabs {
    overflow-x: auto;
    white-space: nowrap;
    gap: 15px;
  }

  .loc-tab {
    font-size: 16px;
  }

  .location-section h2 {
    font-size: 32px;
  }

  .loc-tab-content {
    padding-left: 0px;
  }

  .loc-tab-content li {
    font-size: 14px;
    padding-left: 34px;
  }

  .loc-tab-content li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

/* virtual tour */
.virtual-tour-section {
  padding:60px;
  text-align: center;
}

.virtual-tour-header {
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.virtual-tour-title {
  flex: 1 1 300px;
  font-size: 40px;
  font-weight: 600;
  line-height: 110%;
  margin: 0;
  text-align: left;
}

.virtual-tour-video {
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.virtual-tour-video iframe,
.virtual-tour-thumbnail {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.virtual-tour-thumbnail.hidden {
  display: none;
}

.iframe-element.hidden {
  display: none;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.video-play-button.hidden {
  display: none;
}

@media (max-width: 768px) {
  .virtual-tour-section{
    padding: 40px 20px ;
  }
  .virtual-tour-header {
    align-items: flex-start;
  }
  .virtual-tour-title {
    font-size: 32px;
    text-align: left;
  }
}

/* project gallery */
.project-gallery-section {
  padding: 60px;
  padding-right: 0px;
  background: #FFFCF4;
}

.pg-title {
  font-size: 40px;
  font-weight: 600;
  color: #0F0F0F;
  margin-bottom: 30px;
}

.pg-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

/* Wrapper */
.pg-slider-wrapper {
  position: relative;
}

/* Slider items */
.pg-item {
  padding: 10px;
  cursor: pointer;
}

.pg-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

/* Arrows */
.pg-arrow {
  position: absolute;
  top: -15%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1.5px solid #b8b8b8;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.left-arrow {
  right: 130px;
}

.right-arrow {
  right: 60px;
}

.left-arrow,
.right-arrow {
  background: none;
  border: 1px solid #DEDEDE;
  font-size: 18px;
  cursor: pointer;
  color: #DEDEDE;
  padding: 15px 25px;
  border-radius: 5px;
}

.left-arrow:hover,
.right-arrow:hover {
  background: #f0f0f0;
  border-color: #000;
  color: #000;
}

/* Slick spacing */
.pg-slider .slick-slide {
  margin-right: 20px;
}

.pg-slider .slick-list {
  padding-right: 50px;
}

/* ================= LIGHTBOX ================= */

.pg-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.pg-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.pg-lightbox-image {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 10px;
}

.pg-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 34px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.pg-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid #DEDEDE;
  font-size: 18px;
  cursor: pointer;
  color: #DEDEDE;
  padding: 15px 25px;
  border-radius: 5px;
}

.pg-lightbox-arrow.prev {
  left: 60px;
}

.pg-lightbox-arrow.next {
  right: 60px;
}
.pg-item {
  padding: 10px;
  cursor: pointer;
  overflow: hidden;  
}

.pg-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;

  transition: transform 0.4s ease; 
}

.pg-item:hover img {
  transform: scale(1.05); 
}

/* Responsive */
@media (max-width: 768px) {
  .pg-lightbox-arrow.prev {
 top: 75vh;
}

.pg-lightbox-arrow.next {
 top: 75vh;
}
.pg-lightbox-arrow {
      background: none;
    border: 1px solid #DEDEDE;
    font-size:18px;
    cursor: pointer;
    color: #DEDEDE;
    padding: 10px 20px;
    border-radius: 5px;
}
  .pg-desc {
    margin-bottom: 30px;
    width: 60%;
  }

  .pg-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .project-gallery-section {
    padding: 40px 20px;
    padding-right: 0px;
  }

  .pg-arrow {
    top: -55px;
  }

  .left-arrow {
    left: calc(100% - 135px);
  }

  .right-arrow {
    left: calc(100% - 75px);
  }

  .pg-item img {
    height: 260px;
  }

}

/* walkthrough  */
/* Walkthrough Section */
.walkthrough-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Background Video */
.walkthrough-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark Overlay */
.walkthrough-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 2;
}

/* Title */
.walkthrough-title {
  position: absolute;
  top: 60px;
  left: 60px;
  font-size: 40px;
  font-weight: 600;
  z-index: 3;
}

/* Button */
.walkthrough-btn {
  z-index: 3;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  font-size: 15px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.walkthrough-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .walkthrough-section {
    height: 80vh;
  }

  .walkthrough-title {
    font-size: 28px;
    left: 20px;
    top: 40px;
  }

  .walkthrough-btn {
    padding: 10px 26px;
    font-size: 16px;
  }
}

/* enquire section */
/* Section */
.enquiry-section {
  padding: 60px;
}

.enquiry-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

.enquiry-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
}

/* Form Container */
.enquiry-form {
  background: #FFFCF4;
  padding: 40px 35px;
  border-radius: 10px;
  margin: 50px 0px;
  /* box-shadow: 0 8px 18px rgba(0,0,0,0.06); */
  box-shadow: 5px 20px 40px -10px rgba(0, 0, 0, 0.15), 5px 5px 15px -5px rgba(0, 0, 0, 0.1);
}

/* Rows */
.form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

/* Labels */
.form-group label {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 600;
}

/* Inputs */
.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 6px 0;
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 60px;
}

/* Footer */
.form-footer {
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
}

.terms-check {
  font-size: 14px;
}

.terms-check input {
  margin-right: 6px;
}

.terms-check a {
  color: #0F0F0F;
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  background: #0F0F0F;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.85;
}
/* Floating Label Wrapper */
.float-group {
  position: relative;
}

/* Float Labels */
.float-group label {
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  pointer-events: none;
  transition: 0.35s ease;
}

/* Move Label Up */
.float-group input:focus ~ label,
.float-group input:valid ~ label,
.float-group textarea:focus ~ label,
.float-group textarea:valid ~ label {
  top: -14px;
  font-size: 12px;
  opacity: 0.8;
}

/* Inputs / Textarea Spacing Fix for Floating Labels */
.float-group input,
.float-group textarea {
  padding: 15px 0 15px 0;
}
/* Mobile */
@media (max-width: 768px) {
  .enquiry-title{
    font-size: 32px;
    margin-bottom: 30px;
  }
  .enquiry-subtitle {
    font-size: 16px;
  }
  .form-group label{
    font-size: 16px;
  }
  .submit-btn {
    font-size: 16px;
  }
  .enquiry-section{
    padding: 40px 20px;
  }
  .enquiry-form{
    padding: 40px 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-footer {
    flex-direction: column;
    /* align-items: flex-start; */
    justify-content: center;
    gap: 20px;
  }

  .submit-btn {
    align-self: flex-end;
  }
}

/* footer section */
.footer {
    background: #090909;
    color: #ffffff;
    padding: 60px 60px 30px 60px;
}

.footer a {
    color: #949494;
    text-decoration: none;
}

.footer a:hover {
   color: #FFFFFF !important;
}

/* --- Top Section Layout --- */

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.footer-logo {
    width: 280px;
}
.footer-logo-2{
  align-self: center;
  width: 100px;
  margin-top: -20px;
}

/* Brochure Button */
.brochure-button {
    width:100%;
    background: #FFFFFF;
    color: #0F0F0F !important;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500 !important;
    margin-top: 30px;
    text-align: center;
}

.brochure-button:hover {
    background: #f3f3f3;
}

/* --- Middle (Links Column) --- */

.footer-head {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 60px;
}

.footer-links-grid li {
    font-size: 18px;
}

/* --- Right Column (Contact) --- */

.footer-section.contact {
    min-width: 250px;
}

.contact-item a {
  margin-bottom: 20px;
    font-size: 18px;
    color: #949494 !important;
}
.contact-item{
  margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

/* Bottom Divider */
.footer-line {
    height: 1px;
    background: #FFFFFF1A;
    border: none;
    margin: 30px 0;
}
.footer-bottom p{
  color: #949494;
}

/* --- Footer Bottom --- */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom h4 {
    color: #fff;
    font-size: 16px;
}

.address {
    width: 23%;
    min-width: 220px;
}

.disclaimer {
    width: 260px;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* --- Copyright --- */

.footer-disclaimer-section {
  display: flex;
  width: 100%;
  justify-content: space-between;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    color: #777;
    font-size: 13px;
}
/* All footer h4 = 18px */
footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

/* All small text in footer = 16px */
footer p,
footer a,
.footer-bottom,
.footer-links-grid li,
.contact-item a,
.footer-disclaimer-section p {
    font-size: 16px;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .footer-logo-2{
  width: 130px;
  margin-top: 0;
}

  .footer-logo-block{
    width: 100%;
    text-align: center;
  }
  .footer-line{
    margin: 20px 0px;
  }

  .footer-section{
    width: 100%;
  }
    .footer {
        padding: 40px 20px;
    }
    .social-icons{
      justify-content: space-evenly;
    }
    .footer-disclaimer-section{
      flex-direction: column;
      margin-top: 0px;
      gap: 15px;
      padding: 0px;
    }
    /* h4 = 16px on mobile */
    footer h4 {
        font-size: 18px;
    }
    /* Small text = 14px on mobile */
    footer p,
    footer a,
    .footer-bottom,
    .footer-links-grid li,
    .contact-item a,
    .footer-disclaimer-section p {
        font-size: 16px;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 25px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .address {
        width: 100%;
    }

    .disclaimer {
        width: 100%;
        text-align: center;
    }
}

/* #Thankyou.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
} */