@charset "utf-8";

@font-face {
  font-family: "general-sans";
  /* src: url("../vendor/fonts/GeneralSans-Regular.otf") format("opentype"); */
  src: url("../vendor/fonts/GeneralSans-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* a {
  text-decoration: none !important;
  color: white !important;
} */

body {
  padding: 0px;
  margin: 0px;
  font-family: "general-sans";
  color: #000000;
}
.mobile-show {
  display: none;
}
@media (max-width: 768px) {
  .mobile-show {
    display: block;
  }
  .desktop-show {
    display: none;
  }
  .br {
    display: none;
  }
}
/* Header */
.custom-header {
  position: absolute;
  width: 100%;
  margin-bottom: -96px;
  display: flex;
  justify-content: space-between;
  padding: 35px 50px;
  z-index: 9999;
  align-items: center;
  font-family: "general-sans";
}

.custom-logo img {
  height: 40px;
}
.primary-logo {
  height: 60px !important;
}

.custom-menu-toggle {
  font-size: 30px;
  font-weight: lighter;
  cursor: pointer;
  color: white;
  display: block;
  z-index: 20;
}

/* Navigation */
.custom-nav {
  background: white;
  color: #333;
  position: absolute;
  top: 80px;
  right: 50px;
  padding: 35px;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 350px;
}

.custom-nav.active {
  display: flex;
}

.custom-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.custom-nav ul li {
  margin: 10px 0;
  margin-bottom: 0px;
}
.custom-nav ul li a {
  text-decoration: none;
  color: #333 ;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 1024px){
  .custom-nav ul li a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 12px;
    opacity: 1;
    transition: 0.2s;
  }  
}
/* Hero Section */
.custom-hero {
  position: relative;
  height: 110vh;
  width: 100%;
  top: 0px;
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: center;
  padding: 0;
  color: white;
  overflow: hidden;
  font-family: "general-sans";
}

.custom-hero:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .5;
}

.background-video {
  position: absolute;
  background: linear-gradient(
    238.24deg,
    rgba(0, 0, 0, 0) 0.63%,
    rgba(0, 0, 0, 0) 12.67%,
    rgba(0, 0, 0, 0.0475959) 29.77%,
    rgba(0, 0, 0, 0.0651854) 58.82%,
    rgba(0, 0, 0, 0.558732) 97.57%,
    #000000 115.26%
  );
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
    object-position: bottom;
  z-index: -1;
}

.custom-hero-text {
  width: 35%;
  position: relative;
  top: 40vh;
  right: -10px;
  max-width: 90%;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
  will-change: top, position;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;       /* centers horizontally */
  text-align: center;   /* centers text */
  right: auto;
}

.fixed-hero-text {
  position: fixed;
  top: 35vh;
  z-index: 10;
  transition: none; /* kill flash on swap */
}
.unfixed-hero-text {
  position: absolute;
   transition: none; /* kill flash on swap */
  /* top: 61.5vh; */
}

.custom-hero-text h1 {
  font-family: Font_family/Primary;
  font-size: 56px;
  font-weight: 600;
  margin: 0;
  line-height: 0.89;
}

.custom-hero-text p {
  font-size: 18px;
  margin-top: 10px;
}

.custom-hero-text h1,
.custom-hero-text p {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

.custom-hero-text h1 {
  animation: fadeSlideIn 1s ease-out 0.8s forwards;
}

.custom-hero-text p {
  animation: fadeSlideIn 1s ease-out 1.2s forwards;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  background-color: #000000;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-family: "general-sans";
  z-index: 100;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1px;
}

.enquire-btn:hover {
  background-color: #333;
}

/* Popup */
.popup-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-form {
  background: #F6F4EE;
  padding: 50px;
  border-radius: 16px;
  margin-top: 100px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-family: "general-sans";
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.popup-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup-overlay.show .popup-form {
  transform: translateY(0);
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-family: "general-sans";
}

.popup-form textarea {
  resize: none;
  height: 50px;
}

.popup-form button {
  background: #000000;
  color: white;
  padding: 14px 0;
  margin-top: 20px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-form button:hover {
  background: #1a1816;
}
@media (max-width: 768px) {
  .popup-form{
    padding: 30px 20px ;
  }
}

/* Nav */
.custom-menu-toggle {
  display: block;
}

.custom-nav {
  display: none;
  position: absolute;
  top: 80px;
  right: 50px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  padding: 35px;
  width: 300px;
  border-radius: 6px;
  z-index: 99;
}

.custom-nav.active {
  display: flex;
}

.custom-nav ul {
  flex-direction: column;
  align-items: left;
  gap: 12px;
}

.custom-nav ul img {
  display: block;
}

.custom-nav ul li {
  margin: 10px 0;
}

.custom-nav ul li a {
  color: #333;
  font-size: 16px;
  font-weight: 300;
}

/* ===================== */
/* TABLET (max 1024px)   */
/* ===================== */
@media (max-width: 1024px) {
  .custom-hero-text {
    margin-top: -40%;
  }

  /* Anchor left so fixed position doesn't jump */
  .fixed-hero-text {
    left: 5%;
    top: 55vh;
  }

  .unfixed-hero-text {
    left: 5%;
  }

  .custom-nav {
    top: 70px;
    right: 50px;
    width: 300px;
  }

  .custom-nav ul li a {
    color: black !important;
  }

  .custom-nav ul li a:hover {
    opacity: 0.7;
  }

  .custom-hero-text h1 {
    font-size: 32px;
    padding-top: 3vh;
    font-weight: 600;
  }

  .custom-hero-text p {
    font-size: 14px;
  }

  .enquire-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* ===================== */
/* MOBILE (max 768px)    */
/* ===================== */
@media (max-width: 768px) {
  .background-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-position: right;
  }

  .custom-nav ul li a {
    color: black !important;
  }

  .custom-hero {
    height: 60em;
    justify-content: center;
  }

  /* Natural starting position */
  .custom-hero-text {
    position: relative;
    top: auto;
    right: auto;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-top: 20vh;
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
    text-align: left;
    z-index: 2;
    will-change: top;
    backface-visibility: hidden;
transform: translateZ(0);
  }

  /* Fixed state on mobile — full width, left aligned with padding */
  .fixed-hero-text {
    position: fixed;
    top: 12vh;
    left: 0 !important;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: center;
  }

  /* Released state on mobile */
  .unfixed-hero-text {
    position: absolute;
    left: 0 !important;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: center;
  }

  .custom-hero-text h1 {
    font-size: 32px;
    padding-top: 0;
  }

  .custom-hero-text p {
    font-size: 14px;
    line-height: 16px;
  }

  .custom-nav {
    right: 20px;
    width: 90%;
  }

  .custom-header {
    padding: 20px 20px;
  }

  .custom-logo img {
    height: 40px !important;
  }

  .enquire-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .mspec-content h5 {
    font-size: 14px;
  }

  .carbon-healing-logo-new {
    width: 190px !important;
    margin-bottom: 20px;
  }

  .virtual-tour-video {
    height: 350px;
  }
}


/* ===================== */
/* CLUBHOUSE SECTION     */
/* ===================== */
.clubhouse-section {
  padding: 80px 70px;
  font-family: "general-sans", sans-serif;
  background-color: #F6F4EE;
}

.clubhouse-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.clubhouse-image {
  width: 60%;
}

.clubhouse-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  height: 350px;
  object-fit: cover;
}

.clubhouse-text {
  max-width: 490px;
}

.clubhouse-text h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
  margin-top: 0px;
  color: #000000;
}

.clubhouse-text h4 {
  font-weight: 400;
  margin-bottom: 40px;
  color: #000000;
  
}

.clubhouse-text p {
  color: #464646;
  font-size: 16px;
  line-height: 1.6;
}
.clubhouse-text p strong{
  color: #464646;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.clubhouse-image,
.clubhouse-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.clubhouse-section.animate .clubhouse-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.clubhouse-section.animate .clubhouse-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .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,
  .highlights-mobile h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .clubhouse-text h4 {
    font-size: 16px;
  }

  .clubhouse-text p {
    /* font-size: 15px; */
  }
}

/* Iconic Life Section */
.iconic-life-section {
  background-color: #F6F4EE;
  /* margin-top: -150px; */
  margin-top: 0px;
  padding: 80px 70px;
  text-align: center;
  font-family: "general-sans", sans-serif;
}

.iconic-life-container h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #000;
}

.iconic-life-container p {
  font-size: 16px;
  color: #464646;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial State */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Active State */
.animate-on-scroll.active {
  animation: fadeUp 1s ease forwards;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .iconic-life-section{
    /* margin-top: -150px; */
    margin-top: 0px;
  }
  .iconic-life-container h2 {
    font-size: 32px;
  }

  .iconic-life-container p {
    /* font-size: 15px; */
    padding: 0 10px;
    line-height: 1.6;
  }
}


/* 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;
}
.highlights-section h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 12px;
    margin-top: 0px;
    color: #000000;
  }
  .highlights-section p{
  color: #464646;
    font-size: 16px;
    line-height: 1.6;
  }
  
.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 25px;
  background-color: #F6F4EE;
  font-family: "general-sans", sans-serif;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}
.highlight-card strong {
  font-weight: 600;
  font-size: 18px;
}

.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;
  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: 400;
  color: #000000;
}

.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);
}

@media (max-width: 768px) {
  .highlights-heading {
    font-size: 32px;
    text-align: center;
  }

  .highlights-para {
    font-size: 14px;
    text-align: center;
  }
}
/* mobile highlights */
.object-fit-cover {
  object-fit: cover;
  height: 100%;
}
.highlights-mobile .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}

.highlights-mobile .highlight-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.highlights-mobile .highlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60.44%,
    rgba(0, 0, 0, 0.73) 96.51%,
    #000000 119.31%
  );
}

.highlights-mobile .highlight-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0;
}

.highlights-mobile .highlight-subtitle {
  font-size: 0.85rem;
  margin: 0;
}
.highlight-overlay {
  color: #fff;
}
.highlight-overlay{
  padding: 20px;
}
.highlight-overlay strong,
.highlight-overlay small,
.highlight-overlay p {
  color: #fff;
}

/* master-plan */
/* INITIAL STATE */
.master-plan {
  font-family: "general-sans", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 60px 60px;
}

.master-plan.animate {
  opacity: 1;
  transform: translateY(0);
}

/* TITLE */

.master-plan h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 0px;
    color: #000000;
}
.master-plan p{
    color: #464646;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}
.text-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-left: 10px;
    text-align: left;
    margin-bottom: 10px;
}
/* CONTAINER */
.plan-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  align-items: center;
  justify-content: flex-start;
}

/* IMAGE WRAPPER */
.plan-image-wrapper {
  position: relative;
  width: 90%;
}
.text-section{
    position: absolute;
    right: 2em;
    bottom: 8%;
}
.plan-image {
  width: 100%;
  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: 14px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  opacity: 0.5;
  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(2, 1fr);
  text-align: center;
  width: auto;
  height: 60%;
  flex: 1;
}


/* LEGEND ITEM BASE */
.legend-item {
  display: flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;
  color: #000000;
  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: #202020;
  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: #202020;
  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: #000;
  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: 5%;
    right: 42%;
    width: 45px;
    height: auto;
}    
@media (max-width: 1024px) {
  /* master plan */
  .legend-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .master-plan h2 {
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .plan-image-wrapper {
    width: 100%;
  }
  .text-section{
    position: static;
  }

}
@media (max-width: 768px) {
   .text-section h2 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
}
  /* master plan */
  .inner-icon {
  position: absolute;
      right: 35%;
      top: 72%;
      width: 30px;
    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%;
  }

  .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.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }

  .legend-item {
    /* font-size: 12px; */
    padding: 4px 15px;
    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: 15px;
    margin-top: 20px;
  }

  .tab::after {
    bottom: -2px !important;
  }
}

/* floor plans */

.floor-plans-section {
  padding: 50px 30px;
  font-family: "general-sans", sans-serif;
}

.floor-plans-section h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000 !important;
}
.floor-plans-section p{
 color: #464646;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.overlay-text {
    position: relative;
    top: 8.2em;
    right: 74px;
    color: #5F5654;
    font-family: Inter;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0%;
}
@media (max-width: 768px) {
  .overlay-text {
    position: relative;
    bottom: 3em;
    right: -40%;
    color: #5F5654;
    font-size: 19px;
    line-height: 150%;
}
}

/* ====== Tabs ====== */
.tabs {
  display: flex;
  gap: 35px;
  margin-bottom: 20px;
  margin-top: 15px;
  padding-inline: 0;
}

/* base tab */
.tab {
  background: transparent;
  border: none;
  color: #777;
  padding: 8px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

/* active tab */
.tab.active {
  color: #000;
  font-weight: 500;
}

/* underline animation */
.tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
  pointer-events: none; /* 🔥 critical */
}

.tab.active::after {
  width: 100%;
}
/* ====== Tab Content ====== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ====== Layout: Details + Image ====== */
.plan-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.new-plan-wrapper{
  align-items: flex-end !important;
}

.type-a-image img{
  max-width: 85% !important;
}

.collapsible-header img{
  margin-right: 10px !important;
}

.plan-details {
  flex: 0.5;
    min-width: 300px;
    padding: 25px 0px 10px 0px;
    color: #000000;
    margin-top: 20px;
    border-top: 1px solid #DDDDDD;
}

.plan-image-2 {
  flex: 0.6;
  min-width: 320px;
  text-align: center;
}

.plan-image-2 img {
  max-width: 100%;
  height: 38em;
  border-radius: 8px;
}

/* ====== Info Section (SBUA, Area, etc) ====== */
.plan-details .info p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

/* ====== Collapsible (Dropdown) ====== */
.collapsible {
  margin-top: 20px;
  /* border: 1px solid #ddd; */
  border-radius: 10px;
  overflow: hidden;
}

.collapsible-header {
  padding: 28px 0px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  border-top: 1px solid #DDDDDD;
}

.collapsible-header .arrow {
  font-size: 18px;
}

.collapsible-content {
  display: none;
  /* padding: 20px; */
}

.collapsible-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.collapsible-content li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* ====== Room Table ====== */
.room-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
  background-color: #F6F4EE;
  border-radius: 10px;
}
.room-table th,
.room-table td {
  color: #000000;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}

.room-table th{
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0px !important;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #464646;
  line-height: 1.4;
}

.info-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.info-box strong{
  font-weight: 600;
  font-size: 18px;
  color: #202020;
}
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.dimension-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.dimension-box img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.arrow-icon {
  width: 17px;
  height: 10px;
  transition: transform 0.3s ease;
}
.fade-stagger .fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-stagger .fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}
/* apply only where needed */
.plan-shift {
  margin-top: -6em;
}
/* ====== Responsive ====== */
@media (max-width: 768px) {
  
.plan-image-2 img {
  height: auto;
}
  .floor-plans-section h2 {
    font-size: 32px;
    padding-left: 0px;
  }
  .collapsible-content {
    padding: 10px 0px;
  }
  .collapsible-header {
    padding: 20px 0px;
  }
  .plan-details {
    min-width: 100%;
    /* padding: 0px; */
    /* border-radius: 10px; */
  }
  .floor-plans-section {
    padding: 50px 10px;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0px;
    padding: 5px;
  }
  .tabs {
    flex-wrap: nowrap;
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* gap: 12px; */
    scrollbar-width: none;
  }
  .info-box strong {
    font-size: 16px;
}

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto; /* Prevent shrinking and keep width */
    white-space: nowrap;
    /* font-size: 14px; */
    color: #000;
  }

  .plan-wrapper {
    flex-direction: column;
  }

  .plan-image-2 {
    text-align: center;
  }
  .dimension-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .room-table th,
  .room-table td {
    padding: 8px 5px;
    text-align: center;
    font-size: 10px;
  }
}

/* amenities */
.amenities-section {
  padding: 0px;
  margin: 100px 0px;
  font-family: "general-sans", sans-serif;
}

.amenities-wrapper {
  display: flex;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.amenities-content {
  flex: 1;
  /* padding-left: 100px; */
}

.amenities-content h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 110.00000000000001%;
  margin-bottom: 16px;
  color: #000000;
}
.amenities-content h3 {

color: #464646;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}



.amenities-content h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
  
}

.amenities-content p {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 560px;
  color: #464646;
}

.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: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.asterisk {
  color: rgba(0, 0, 0, 0.5); /* 50% opacity black */
      margin-right: -9px;
    margin-left: -10px;
}

.amenity-tab {
  background-color: transparent;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
  color: #464646;
}
.amenity-tab.active {
  background-color: #202020;
  color: #FFFFFF;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0px 0px;
  margin-top: 36px;
}

.amenity-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 10px;
  border-top: 1px solid #D2D0C9;
  color: #464646;
}

.amenity-item span {
  background-color: #000000;
  color: #FFFFFF;
  min-height: 25px;
  min-width: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}
.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;
}

@media (max-width: 768px) {
  /* amenities */
  .amenities-content h2{
    font-size: 32px;
  }
  .amenity-item{
    padding: 15px 0px;
  }
.amenity-tab {
  padding: 8px 16px;
  /* font-size: 14px; */
  color: #000;
}
  .amenities-section {
    margin-block: 0;
    padding-bottom: 50px;
  }

  .amenity-list {
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
  }
  .amenities-content {
    padding: 50px 0px 20px 0px;
    margin-bottom: 20px;
  }
  .amenities-content p {
    margin-bottom: 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%);
    }
  }
}

/* experience section */
.custom-gallery-carousel {
  font-family: "general-sans", sans-serif;
  text-align: center;
  padding:0px 0px 60px 0;
  background: #fff;
  overflow: hidden;
}

.custom-gallery-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000000;
}

.custom-carousel-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.custom-carousel-track {
  display: flex;
  /* transition: transform 0.5s 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: 30em; /* 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-btn {
  background: none;
    border: black 2px solid;
    font-size: 20px;
    cursor: pointer;
    background: white;
    color: black;
    padding: 0px 10px;
    border-radius: 61%;
}
.carousel-caption-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 53%, 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: 10px;
  font-size: 18px;
  font-weight: 500;
}

.carousel-caption-2 p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4;
}
.custom-gallery-p{
  margin-bottom: 50px;
  padding: 0px 50px;
  color: #000000;
}
.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-carousel-buttons{
    margin-top: 0px;
  }
  .custom-gallery-p{
    margin-bottom: 50px;
    padding: 0px 0px;
    text-align: left;
    padding-left: 20px;
  }
  .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: 60px;
    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;
    font-size: 18px;
    font-weight: 500;
  }

  .carousel-caption-2 p {
    font-size: 16px;
  }
  .custom-carousel-btn {
    /* display: none; */
        border: none;
        font-size: 14px;
        cursor: pointer;
        background: #363026;
        color: white;
        padding: 2px 8px;
        border-radius: 61%;
  }
}

/* specification */
.specs__section { padding: 80px 60px;font-family: "general-sans";  }
.specs__wrapper { display:flex; flex-wrap:wrap; gap:60px; max-width:100%; margin:0 auto; justify-content:space-between; }
.specs__heading { flex:1; min-width:280px; }
.specs__heading h2 {     
    font-size: 40px;
    text-align: center;
    margin-bottom: 55px;
    color: #000000;
    text-align: left; 
  }
.specs__heading-image { display:block; margin-top:16px; max-width:100%; height:auto; border-radius: 20px;}

.specs__accordion { flex:1.5; min-width:300px; align-self: flex-start;margin-top: 80px;}

/* Item */
.specs__item { border-bottom:1px solid #ddd; padding: 18px 0; }

/* Header button */
.specs__header {
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:0;
  font-size:18px;
  color: #000000;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

/* add an icon using pseudo element if you'd like */
.specs__header::after {
  content: "";
  display:inline-block;
  width:18px;
  height:18px;
  background-image:url('Images/Floor-Plan/downward.webp');
  background-size:contain;
  background-repeat:no-repeat;
  transition: transform 0.3s ease;
}

/* panel */
.specs__panel {
  max-height:0;
  overflow:hidden;
  transition: max-height 350ms ease;
  font-size:16px;
  font-weight: 400;
  line-height:135%;
  color:#6C6C6C;
  margin-top:0;
}
.specs__panel strong{
  color:#000000;
}

/* when item has class is-open, header arrow flips (we don't set a CSS max-height) */
.specs__item.is-open .specs__header::after {
  transform: rotate(180deg);
  background-image: url('Images/Floor-Plan/downward.webp') ;
}
.specs__item.is-open .specs__panel {
  /* keep margin, but don't force max-height here — JS controls it inline */
  margin-top: 20px;
}

/* Two-column panel content */
.specs__panel--two-column { display:flex; flex-wrap:wrap; gap:40px; }
.specs__col { flex:1; min-width:250px; font-weight: 400;}
.specs__col p { margin-bottom:20px; font-size:14px; }

/* for mobile */
.specification-mobile-section { 
  padding: 40px 20px;
  font-family: "general-sans";
  text-align: center;
}
.specification-mobile-content{
  color: #6c6c6c;
}
.specification-mobile-content strong {
    color: black;
}
.specification-mobile-title {
  font-size: 32px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}

.specification-mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 24px;
}

.specification-mobile-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-bottom: 20px;
  border-bottom: 2px solid #E3E3D9;
  padding-bottom: 0px;
}

.specification-mobile-tabs::-webkit-scrollbar {
  display: none; /* hide scrollbar on mobile for cleaner look */
}

.specification-mobile-tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  color: #000;
  white-space: nowrap;
}

.specification-mobile-tab.active {
  font-weight: 600;
}

.specification-mobile-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

/* Animation-ready content */
.specification-mobile-content {
  display: none;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.specification-mobile-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}
/* sustainability */
.carbon-healing-section {
  color: #1a1a1a;
  background: #fff;
  padding: 60px 20px;
  font-family: "general-sans", sans-serif;
}

.carbon-healing-container {
  max-width: 100%;
  margin: auto;
}
.carbon-healing-card h4{
font-weight: 500;
font-style: Medium;
line-height: 125%;
letter-spacing: 0%;
color: #464646;
font-size: 18px;
}

.carbon-healing-text {
  padding-left: 30px;
}

.carbon-healing-title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  
}

.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: 20px;
  margin-top: 55px;
  flex-wrap: wrap;
}

.carbon-healing-card {
  border: none;
  background: #F6F4EE;
  border-radius: 20px;
  padding: 50px 35px;
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.carbon-healing-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.carbon-healing-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: -5px;
}

.carbon-healing-card p {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-top: -20px;
}

/* 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-card h4 {
    color: #464646;
    font-size: 14px;
    text-align: center;
}
  .carbon-healing-section {
    padding: 40px 20px;
    margin-top: 20px;
  }

  .carbon-healing-text {
    padding-left: 0;
    text-align: left;
  }

  .carbon-healing-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .carbon-healing-logo {
    display: block;
    margin: 0 auto 30px auto;
    width: 80% !important;
    height: auto;
  }

  .carbon-healing-desc {
    /* font-size: 14px; */
    margin: 0 auto 16px auto;
    max-width: 100%;
  }

  .carbon-healing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 60px;
  }

  .carbon-healing-card {
    background: #fbf7ef;
    border-radius: 16px;
    padding: 24px 16px;
    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%;
  }
}
/* 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%;
  }
}

/* why meru section */
.why-meru-section {
  padding: 60px 0;
  text-align: center;
  font-family: "general-sans", sans-serif;
}

.why-meru-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: left;
  padding: 30px;
}

.why-meru-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.why-meru-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.why-meru-slide {
  /* min-width: 60%; */
  min-width: 45%;
  /* width: 800px; */
  box-sizing: border-box;
  padding: 0 30px;
}

.why-meru-card {
  background-color: #f6f4ee;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}

.why-meru-card img {
  width: 50px;
  margin-bottom: 12px;
}

.why-meru-card h4 {
font-weight: 600;
line-height: 150%;
letter-spacing: 0%;
  color: #000000;
  font-size: 18px;
}

.why-meru-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  height: 120px;
  color: #464646;
}

/* Arrows */
.why-meru-buttons {
  display: flex;
  justify-content: right;
  gap: 15px;
  padding-right: 50px;
  margin-top: 50px;
}

.why-meru-btn {
  border: none;
  font-size: 20px;
  cursor: pointer;
  background: #a0897b;
  color: white;
  padding: 0px 10px;
  border-radius: 61%;
}

/* Responsive */
@media (max-width: 768px) {
  .why-meru-card {
    padding: 20px;
  }
  .why-meru-title {
    font-size: 32px;
  }
  .why-meru-card p {
    font-size: 13px;
  }
  .why-meru-slide {
    min-width: 100%;
  }
}

/* Gallery Masonry */

.gallery-section {
  padding: 60px 0;
  overflow: hidden;
}

.gallery-header {
        font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
    padding: 0px 60px;
}

.gallery-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
}

.gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 0;
  animation: scrollLeft 30s linear infinite;
}

.gallery-row:hover .gallery-track { animation-play-state: paused; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* column wrapper holding 2 images */
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.gallery-item {
  width: 310px;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
  border-radius: 10px;
}

.gallery-item:hover::after { background: rgba(0,0,0,0.1); }

.lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,12,18,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lb-backdrop.active { display: flex; }

.lb-inner {
  position: relative;
  max-width: min(860px, 92vw);
  width: 100%;
}

.lb-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  background: #111;
}

.lb-img-wrap img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-close:hover { background: rgba(255,255,255,0.22); }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: -62px; }
.lb-next { right: -62px; }

.lb-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .gallery-header{
    font-size: 32px;
    padding: 0px 20px;
  }
  .lb-prev {
    left: 27%;
    top: 105%; 
  }
  .lb-next { 
    right: 27%;
    top: 105%;  
  }
  .lb-arrow { width: 34px; height: 34px; font-size: 17px; }
}

/* virtual tour */
/* .virtual-tour-section {
  background-color: #F6F4EE;
  padding: 80px 20px;
  text-align: center;
} */

.virtual-tour-section {
  /* background-color: #F6F4EE; */
  padding: 0px 40px;
  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: 400;
    line-height: 110%;
    margin: 0;
    font-family: 'general-sans';
    text-align: left;
    color: #000000;
}

.virtual-tour-video {
  max-width: 100%;
  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-header {
    align-items: flex-start;
  }
  .virtual-tour-title {
    font-size: 32px;
    text-align: left;
  }
}


/* walkthrough section  */
.walkthrough-section {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}

.walkthrough-wrapper {
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.walkthrough-text h2 {
  font-size: 40px;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}

.walkthrough-video {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: #000;
}

/* Thumbnail */
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* YouTube iframe */
.youtube-video {
  width: 100%;
  height: 100%;
  display: none;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {

  .walkthrough-wrapper {
    padding: 0 20px;
  }

  .walkthrough-text h2 {
    font-size: 28px;
  }

  .walkthrough-video {
    height: 350px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }
}

/* footer  */
.footer {
  background: #090909;
  color: #ffffff;
  padding: 60px 60px 30px 60px !important;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  display: flex;
  flex-direction: row;
  gap: 80px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-item > a > img{
  width: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  /* margin-bottom: 12px; */
  color: #ffffff;
}
.contact-item:hover{
  opacity: 0.7;
}
.contact-item a{
  text-decoration: none;
}
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: start;
}
.social-icons a img:hover{
  background-color: #333;
  border-radius: 20px;
}
.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  width: auto;
}

.footer-logo {
  width: 300px;
  height: auto;
}

.brochure-button {
    
    width: 330px;
    margin-top: 25px;
    background: #94786B;
    align-self: center;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
}

.brochure-button:hover{
  background-color: #333;
}

.footer-divider {
  height: 1px;
  margin: 0px 0 30px 0px;
}

footer {
  font-family: 'general-sans';
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 12px;
  color: #a0a0a0;
  position: relative;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 300;
  color: white;
  font-family: "general-sans", sans-serif;
}

.footer-bottom .address h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: "general-sans", sans-serif;
  margin-bottom: 8px;
}
.address {
  width: 21%;
}
.footer-bottom .disclaimer {
  font-size: 10px;
  font-style: italic;
  font-weight: 200;
  line-height: 135%;
  color: #868686;
  width: 280px;
  text-align: left;
}
.footer-disclaimer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin:15px 0px 30px 0px;
}
@media (max-width: 1024px) {
  /* footer */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center text for better readability */
  }

  .footer-logo-block {
    align-items: center; /* Center the logo and button */
  }

  .brochure-button {
    width: 100%;
    padding: 12px 29px;
  }

  .footer-bottom {
    flex-direction: column; /* Stack the addresses vertically */
    align-items: center; /* Center the addresses */
    text-align: center; /* Center text for better readability */
  }

  .footer-divider {
    margin: 20px 0; /* Adjust margin */
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px; /* Less padding for mobile */
    padding: 50px 0px 50px 0px !important;
    /* margin-top: 100px; */
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center all text */
  }

  .footer-logo {
    width: 200px; /* Smaller logo for mobile */
  }

  .footer-section h4 {
    font-size: 14px; /* Smaller headings */
  }

  .contact-item {
    /* font-size: 12px; Smaller font for contact info */
    justify-content: center;
  }

  .social-icons {
    flex-direction: column; /* Stack social icons vertically */
    align-items: center; /* Center social icons */
  }

  .footer-bottom {
    flex-direction: column; /* Stack addresses vertically */
    align-items: center; /* Center addresses */
    text-align: center; /* Center text for better readability */
  }

  .footer-bottom .address {
    margin-bottom: 20px; /* Space between address sections */
    width: 100%; /* Make sections full width */
  }

  .footer-bottom .disclaimer {
    margin-top: 10px; /* Space above disclaimer */
    text-align: center;
  }
  .footer-top {
    gap: 70px;
  }
  .social-icons {
    flex-direction: row;
    justify-content: space-evenly;
    margin: 20px 60px;
  }
}
.main-site-footer {
  background-color: #111111;
  color: #f4f4f4;
  padding: 80px 40px 30px;
  font-family: "general-sans", sans-serif;
}

.main-site-footer a {
  color: #a5a5a5;
  text-decoration: none;
}

.main-site-footer a:hover {
  color: #ffffff;
}

/* ====== FLEX WRAPPING STRUCTURE ====== */
.footer-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 200px;
  margin-bottom: 50px;
}

/* ====== BRANDING SECTION ====== */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: auto;
}

.footer-project-logo {
  width: 350px;
  height: auto;
}

.footer-tagline {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.footer-cta-btn {
  width: 350px;
  background: #2d281d;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}
.footer-cta-btn:hover {
  background-color: #ffffff;
  color: #111;
}

/* ====== NAVIGATION SECTION ====== */
/* .footer-navigation {
  flex: 2 1 400px;
} */

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 20px 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid li {
  font-size: 16px;
  color: #222 !important;
}
.footer-links-grid li a {
  color: white;
  text-decoration: none;
  font-family: "general-sans", sans-serif;
}
.footer-links-grid li a:hover{
  opacity: 0.7;
}
.footer-links-grid:hover {
  color: #ffffff;
}

/* ====== CONTACT INFO ====== */
.footer-contact-info {
  flex: 1 1 220px;
}

.footer-contact-col {
  margin-bottom: 20px;
}
.footer-contact-col {
  text-align: right;
}
.footer-contact-col h4 {
  font-size: 16px;
}

.footer-contact-col p {
  display: flex;
  justify-content: flex-end; /* Align content to right */
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 15px;
}

.footer-contact-col img {
  width: 16px;
  height: 16px;
}

.footer-line {
  border: none;
  height: 2px;
  background: #ffffff;
  margin: 20px 0;
}

.custom-line {
  margin-top: 60px;
  border-top: 0.01px solid #333;
  font-size: 13px;
  color: #777;
  text-align: center;
}
.custom-responsive-line {
  border-top: 0.01px solid #333;
  font-size: 13px;
  color: #777;
  text-align: center;
  display: none;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-icons img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social-icons img:hover {
  opacity: 1;
}

/* ====== BOTTOM DETAILS ====== */
.footer-bottom-details {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center !important;
  gap: 30px;
  font-size: 14px;
  color: #bbb;
  margin-bottom: 30px;
}

.footer-detail {
  flex: 1 1 220px;
}

/* ====== DISCLAIMER ====== */
.footer-disclaimer-section {
  border-top: 1px solid #333;
  padding-top: 20px;
  padding: 20px;
  font-size: 13px;
  color: white;
  text-align: center;
  margin-top: 30px;
}

.footer-disclaimer-section p {
  margin: 7px 0px 0px 0px;
}

.footer-detail strong {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}
/* specification for mobile */
.mspec-section {
  background: #f9f7f3;
  padding: 60px 20px;
  font-family: "general-sans", sans-serif;
}

.mspec-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #000;
}

.mspec-subtitle {
  font-size: 16px;
  color: #000;
  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 {
  border: 0;
  background: transparent;
  color: #000;
  border-bottom: transparent;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mspec-tab.active {
  background: transparent;
  color: #000;
  border-bottom: 1px solid #3c2c22;
  font-weight: 600;
}

.mspec-content {
  display: none;
  /* border-top: 1px solid #e0ddd6; */
  padding-top: 20px;
}

.mspec-content.active {
  display: block;
}

.mspec-content h5 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
}

.mspec-content p {
  font-size: 14px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1.7rem;
}

@media (max-width: 768px) {
  .mspec-title {
    font-size: 32px;
  }

  .mspec-subtitle {
    font-size: 14px;
    font-weight: 600;
  }
  .mspec-tab {
    font-size: 14px;
    padding: 8px 16px;
    color: #000;
  }
  .mspec-content p {
    font-size: 14px;
  }
  .mspec-tabs::-webkit-scrollbar {
    display: none;
  }
  .mspec-tabs {
    scrollbar-width: none;
  }
}
/* Unique Location Section Styles */
/* ── SECTION ─────────────────────────────────────────────────── */
.uniqloc-section {
  padding: 40px 20px;
  font-family: "general-sans", sans-serif;
  background: #fff;
}

.uniqloc-section h2 {
  font-size: 40px;
  text-align: left;
  margin-bottom: 25px;
  color: #000;
}

.uniqloc-section p {
  text-align: left;
  font-size: 16px;
  width: 100%;
  color: #6c6c6c;
  margin: auto;
  margin-bottom: 10px;
}

/* ── TABS ────────────────────────────────────────────────────── */
.uniqloc-tabs-wrapper {
  background: #f6f4ee;
  padding: 15px 8px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  overflow-x: auto;
}

.uniqloc-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-around;
}

.uniqloc-tab {
  background: transparent;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #3c2c22;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.uniqloc-tab img {
  height: 25px;
  filter: brightness(0);
}

.uniqloc-tab.active {
  background: #000;
  color: #fff;
}

.uniqloc-tab.active img {
  filter: brightness(0) invert(1);
}

/* ── CONTENT PANELS ──────────────────────────────────────────── */
.uniqloc-content {
  display: none;
}

.uniqloc-content.active {
  display: block;
}

/* ── MAP + SIDE LIST WRAPPER ─────────────────────────────────── */
.uniqloc-map-list-wrap {
  display: flex;
  flex-direction: row-reverse; /* list left, map right */
  gap: 40px;
  align-items: flex-start;
  margin-top: 20px;
  justify-content: center;
}

/* ── MAP ─────────────────────────────────────────────────────── */
.uniqloc-map-img {
  position: relative;
  flex: 1 1 65%;
  max-width: 65%;
}

.uniqloc-map-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── MARKERS ─────────────────────────────────────────────────── */
.uniqloc-marker {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #00000047;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
  /* z-index: 2; */
}

.uniqloc-marker:hover,
.uniqloc-marker.active-marker {
  background: #000;
  opacity: 1;
}

.uniqloc-label {
  z-index: 3;
  pointer-events: none;
}

/* ── TOOLTIP ─────────────────────────────────────────────────── */
.uniqloc-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #f6f4ee;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.uniqloc-marker:hover .uniqloc-tooltip,
.uniqloc-marker.active-marker .uniqloc-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ── DESKTOP SIDE LIST ───────────────────────────────────────── */
.uniqloc-side-list {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 10px;
}

.uniqloc-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.uniqloc-list-item:hover {
  background: #f0ece6;
}

.uniqloc-list-item:hover .marker-num,
.uniqloc-list-item.active-hover .marker-num {
  background: #555;
}

.marker-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-text {
  font-size: 14px;
  color: #000;
  line-height: 1.3;
}

.location-time {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  margin-top: 3px;
}

/* ── SHOW / HIDE HELPERS ─────────────────────────────────────── */
.desktop-only { display: flex; }
.mobile-only  { display: none;  }

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .uniqloc-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .uniqloc-section p {
    font-size: 14px;
  }

  .uniqloc-tabs-wrapper {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-top: 20px;
  }

  .uniqloc-tabs {
    gap: 0;
    overflow-x: auto;
  }

  .uniqloc-tab {
    font-size: 13px;
    padding: 8px 14px;
    flex-shrink: 0;
  }

  /* Stack map on top, mobile list below */
  .uniqloc-map-list-wrap {
    flex-direction: column;
    gap: 0;
  }

  .uniqloc-map-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Markers smaller on mobile */
  .uniqloc-marker {
    width: 14px;
    height: 14px;
    font-size: 9px;
    opacity: 0.5;
  }

  .uniqloc-marker .uniqloc-tooltip {
    display: none !important;
  }

  .uniqloc-marker.active-marker {
    opacity: 1;
    background: #000;
  }

  /* Show/hide swap */
  .desktop-only { display: none !important; }
  .mobile-only  { display: grid !important; }

  /* Mobile list grid */
  .uniqloc-hover-texts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 10px 0;
  }

  .hover-text-block {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #3c2c22;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    padding: 6px 5px;
    text-align: left;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .hover-text-block:hover {
    background-color: #000;
    color: #fff;
    border-radius: 20px;
  }

  .hover-text-block:hover .marker-number {
    background-color: #fff;
    color: #000;
  }

  .marker-number {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }
}

/* @media (min-width: 768px) {
  .uniqloc-marker{
    opacity: 1 !important;
  }
} */


.info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0px;
    color: #fff;
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin-top: 10px;
}

/* Add divider lines */
.info-bar span {
  position: relative;
  padding: 0 10px;
}

.info-bar span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px;
  color: #ccc;
}

/* Responsive */
 @media (max-width: 768px) {
  /* .info-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .info-bar span:not(:last-child)::after {
    content: ""; 
  } */
  .info-bar span {
    position: relative;
    padding: 0 5px;
}
} 


/* New slider CSS Start Here */

/* .new-slider h2 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
    padding-inline: 0;
}

.new-slider p {
    color: #464646;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-inline: 0;
}

.highlight-slider-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .highlight-slider .slick-list { overflow: visible !important; }
  .highlight-slider .slick-track { display: flex !important; }

  .highlight-item {
    position: relative;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 15px;
  }

  .highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.6s ease, transform 0.8s ease;
  }

  .highlight-item:hover img {
    transform: scale(1.04);
  }

  .highlight-item.slick-current img {
    filter: brightness(0.93);
  }

  .highlight-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.18) 50%,
      transparent 100%
    );
    z-index: 1;
  }
  .overlay {
    position: absolute;
    bottom: 22px;
    left: 20px;
    z-index: 2;
    font-family: "general-sans", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
  }

  .highlight-item.slick-current .overlay {
    font-size: 40px;
  }

  .overlay .label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,237,232,0.55);
    margin-top: 4px;
    font-family: "general-sans", sans-serif;
    font-weight: 400;
  }

.highlight-slider .slick-slide {
  margin: 0 15px;
}

.highlight-slider .slick-list {
  margin: 0 -8px;
}

  @media (max-width: 767px) {
    .highlight-item {
      height: 340px;
      border-radius: 14px;
      margin: 0 8px;
    }

    .overlay {
      font-size: 14px;
      bottom: 16px;
      left: 16px;
    }

    .highlight-item.slick-current .overlay {
      font-size: 32px;
    }

    .overlay .label {
      font-size: 10px;
    }
  } */

/* Whispers of a greener tomorrow CSS */

.carbon-healing-logo-new{
  width: 190px;
  margin-bottom: 20px;
}

/* specifications section CSS */

.specifications-section-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specification-image img{
  width: 100%;
  border-radius: 20px;
}

@media(max-width: 991px){
.specifications-section-div {
    display: block;
    justify-content: space-between;
    align-items: center;
}
}

/* Gallery slider CSS */

.gallery-masonry {
  padding: 30px 30px 70px 30px;
  font-family: "general-sans", sans-serif;
  margin-bottom: 0px;
  position: relative;
}

.new-custom-carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: absolute;
    right: 70px;
    top: 0px;
}
.new-custom-carousel-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    background: #363026;
    color: white;
    padding: 0px 10px;
    border-radius: 61%;
}

@media(max-width: 768px){
.new-custom-carousel-buttons{
  display: none;
}
.gallery-masonry{
  padding-top: 30px;
}
}

/* Location tabs CSS */

.location-section {
  padding: 60px 0;
}

/* LEFT */
.location-tabs .tab-item {
  border-bottom: 1px solid #ddd;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "general-sans", sans-serif;
  color: #000000;
}

.tab-header > span > img{
  width: 20px;
  margin-right: 10px;
}

.new-tab-content {
  display: none;
  padding: 10px 15px;
  font-size: 14px;
}

.tab-item.active .new-tab-content {
  display: block;
}

/* RIGHT IMAGES */
.location-images {
  position: relative;
  text-align: center;
}

.location-images img {
  width: 80%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.location-images img.active {
  opacity: 1;
  position: relative;
}

.accordion-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.tab-item .accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon {
  width: 16px;
  transition: transform 0.3s ease;
}

.tab-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* .location-desktop-show{
  display: none !important;
} */

.tab-item.active .location-desktop-show{
   display: block !important;
}

.location-mobile-show{
   display: none !important;
}

.page-sections{
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.legend-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  width: auto;
  height: 60%;
  flex: 1;
}

/* .legend-item-new {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 300;
  color: #000000;
  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-new {
  animation: legendFade 0.6s ease forwards;
}

.master-plan.animate .legend-item-new:nth-child(1) {
  animation-delay: 0.1s;
}
.master-plan.animate .legend-item-new:nth-child(2) {
  animation-delay: 0.2s;
}
.master-plan.animate .legend-item-new:nth-child(3) {
  animation-delay: 0.3s;
}
.master-plan.animate .legend-item-new:nth-child(4) {
  animation-delay: 0.4s;
}
.master-plan.animate .legend-item-new:nth-child(5) {
  animation-delay: 0.5s;
}
.master-plan.animate .legend-item-new:nth-child(6) {
  animation-delay: 0.6s;
}
.master-plan.animate .legend-item-new:nth-child(7) {
  animation-delay: 0.7s;
}
.master-plan.animate .legend-item:nth-child(8) {
  animation-delay: 0.8s;
}
.master-plan.animate .legend-item-new:nth-child(9) {
  animation-delay: 0.9s;
}
.master-plan.animate .legend-item-new:nth-child(10) {
  animation-delay: 1s;
}
.master-plan.animate .legend-item-new:nth-child(11) {
  animation-delay: 1.1s;
}
.master-plan.animate .legend-item-new:nth-child(12) {
  animation-delay: 1.2s;
}
.master-plan.animate .legend-item-new:nth-child(13) {
  animation-delay: 1.3s;
}
.master-plan.animate .legend-item:nth-child(14) {
  animation-delay: 1.4s;
}
.master-plan.animate .legend-item-new:nth-child(15) {
  animation-delay: 1.5s;
}
.master-plan.animate .legend-item-new:nth-child(16) {
  animation-delay: 1.6s;
}
.master-plan.animate .legend-item-new:nth-child(17) {
  animation-delay: 1.7s;
}
.master-plan.animate .legend-item-new:nth-child(18) {
  animation-delay: 1.8s;
}

/* LEGEND ITEM SPAN */
.legend-item-new span {
  background: #202020;
  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-new:hover,
.legend-item.active {
  background-color: #202020;
  color: #e2e2e2;
  border-radius: 20px;
}
.legend-item-new.active span {
  background-color: transparent;
  color: #e2e2e2;
}

.map-button-new {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #111;
  color: #fff;
  font-size: 14px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.map-button-new:hover {
  /* transform: scale(1.2); */
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .location-images {
    margin-top: 20px;
  }

.location-mobile-show{
   display: none !important;
}

.tab-item.active .location-mobile-show{
   display: block !important;
}

.location-desktop-show{
  display: none !important;
}

.page-sections{
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.location-amenity-item{
  padding: 8px 20px 1px 20px;
}

.legend-item-new {
    font-size: 12px;
        padding: 4px 10px;
        text-align: left;
}

.legend-item-new span {
    width: 24px;
    height: 24px;
    font-size: 8px;
    line-height: 24px;
}

.legend-grid-new {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.map-button-new {
    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.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }
}

@media (max-width: 1024px) {
.legend-grid-new {
  grid-template-columns: repeat(2, 1fr);
}
}

.location-amenity-item {
    font-size: 14px;
    font-family: "general-sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    color: #6C6C6C;
    cursor: pointer;
}
.location-amenity-item span {
    background-color: #202020;
    color: #fff;
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.terms-and-condi{
  font-size: 14px;
  width: 100%;
  color: #6C6C6C;
  margin: auto;
  margin-bottom: 10px;
  text-align: left;
}

.map-button-new {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.map-button-new.active {
  opacity: 1;
}

.map-button-new.fade {
  opacity: 0.5;
}

.map-label {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-label.visible {
  opacity: 1;
}

.legend-item-new.active {
  font-weight: bold;
}

.hide-points{
  display: none !important;
}

/* why meru section */
.why-meru-section {
  padding: 60px 0;
  text-align: center;
  font-family: "general-sans", sans-serif;
}

.why-meru-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: left;
  padding: 30px 60px;
}

.why-meru-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.why-meru-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.why-meru-slide {
  /* min-width: 60%; */
  min-width: 45%;
  /* width: 800px; */
  box-sizing: border-box;
  padding: 0 30px;
}

.why-meru-card {
  background-color: #F6F4EE;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}

.why-meru-card img {
  width: 50px;
  margin-bottom: 12px;
}



/* Arrows */
.why-meru-buttons {
  display: flex;
  justify-content: right;
  gap: 15px;
  padding-right: 50px;
  margin-top: 50px;
}

.why-meru-btn {
  border: none;
  font-size: 20px;
  cursor: pointer;
  background: #000000;
  color: white;
  padding: 0px 10px;
  border-radius: 61%;
}

/* Responsive */
@media (max-width: 768px) {
  .why-meru-card {
    padding: 20px;
  }
  .why-meru-title {
    font-size: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .why-meru-card p {
    font-size: 13px;
  }
  .why-meru-slide {
    min-width: 100%;
  }
}
