@charset "utf-8";

@font-face {
  font-family: "general-sans";
  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: 50px !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: 250vh;
  width: 100%;
  /* top: -150px; */
  top: 0px;
  display: flex;
  justify-content: left;
  text-align: left;
  align-items: center;
  padding: 0 40px;
  color: white;
  overflow: hidden;
  font-family: "general-sans";
  
}

/* Background Video */
.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;
  z-index: -1;
}

.custom-hero-text {
  position: relative;
  top: 40vh;
  left: 40px;
  max-width: 90%;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

.fixed-hero-text {
  position: fixed;
  top: 40vh;
  left: 40px;
  z-index: 10;
  transform: translateY(0);
  opacity: 1;
}

.unfixed-hero-text {
  position: relative;
  top: 40vh;
  left: auto;
  transform: translateY(30px); /* slide down a little */
  opacity: 0.6;                /* slight fade */
}
.custom-hero-text h1 {
  font-size: 75px;
  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: 40%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  background-color: #a0897b;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-family: "general-sans";
  z-index: 100;
  font-size: 16px;
  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: #fdfaf2;
  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: #2c2824;
  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;
}
/* Default: Show nav inline and hide hamburger for desktop (above 1024px) */
.custom-menu-toggle {
  display: none;
}

.custom-nav {
  display: block;
  position: static;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: auto;
}

.custom-nav ul {
  display: flex;
  align-items: left;
  gap: 30px;
}

.custom-nav ul img {
  display: none;
}

.custom-nav ul li {
  font-family: "general-sans";
  font-weight: 600;
  margin: 0;
}

.custom-nav ul li a {
  color: white !important;
  opacity: 0.9;
  font-size: 16px;
  font-family: "general-sans";
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .fixed-hero-text{
    left: 28%;
  }
  .unfixed-hero-text{
    left: 26%;
  }
  .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{
    margin-top: -40%;
  }
  .custom-hero-text h1 {
    font-size: 32px;
    padding-top: 3vh;
    font-style: Semibold;
    font-weight: 600;
  }

  .custom-hero-text p {
    font-size: 14px;
  }

  .enquire-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  /* show hamburger */
  .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;
  }
  .custom-secondary-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  /* .background-video{
   
            height: 123vh;
  } */
  /* .background-video {
  height: 100%;
  object-fit: cover;
} */
  .background-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .custom-nav ul li a {
    color: black !important;
  }
  /* .custom-hero {
    position: static;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    text-align: center;
    background: none;
  } */
  /* .custom-hero-text {
    margin-top: 0;     
    padding-top: 30vh;  
    text-align: center;
    position: relative;
    z-index: 2;
  } */
   .fixed-hero-text{
    left: 28%;
  }
  .unfixed-hero-text{
    left: 25%;
  }
  .custom-hero{
   /* height: 130vh; */
   height: 60em;
  }
  .custom-hero-text {
    margin-top: -111px;
    padding-top: 0px;
  }
  .custom-hero-text h1 {
    font-size: 32px;
    padding-top: 0vh;
  }

  .custom-hero-text p {
    font-size: 14px;
    line-height: 16px;
  }

  .custom-nav {
    right: 20px;
    width: 90%;
  }

  .custom-header {
    padding: 20px 25px;
  }

  .custom-logo img {
    height: 50px;
  }

  .enquire-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* clubhouse section */
.clubhouse-section {
  padding: 80px 70px;
  font-family: "general-sans", sans-serif;
}

.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;
}

.clubhouse-text {
  max-width: 500px;
}

.clubhouse-text h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 12px;
  margin-top: 0px;
  color: #111;
}

.clubhouse-text h4 {
  font-weight: 400;
  margin-bottom: 40px;
  color: #000000;
}

.clubhouse-text p {
  color: #444;
  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;
    font-family: "general-sans", sans-serif;
  }
  .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;
  }

  .clubhouse-text h4 {
    font-size: 16px;
  }
  .clubhouse-text p {
    font-size: 15px;
  }
}

/* Iconic Life Section */
.iconic-life-section {
  background-color: #f6f4ee;
  margin-top: -150px;
  padding: 80px 20px;
  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: #333;
  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;
  }
  .iconic-life-container h2 {
    font-size: 32px;
  }

  .iconic-life-container p {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* 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 25px;
  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: 20px;
}

.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;
  }
}

/* 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: 50px 30px;
  /* margin-top: 100px; */
  /* margin-top: 20vh; */
}

.master-plan.animate {
  opacity: 1;
  transform: translateY(0);
}

/* TITLE */
.master-plan h2 {
  font-size: 40px;
  font-weight: 400;
  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: 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.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(2, 1fr);
  text-align: center;
  width: auto;
  height: 60%;
  flex: 1;
}

/* LEGEND ITEM BASE */
.legend-item {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 13px;
  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: #a0897b;
  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: #a0897b;
  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: -10px;
    right: 10px;
    width: 55px;
    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;
  }
  .plan-image-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  /* master plan */
  .inner-icon {
  position: absolute;
    bottom: -18px;
    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%;
  }
  .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: 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: 30px;
  }
}

/* floor plans */

.floor-plans-section {
  padding: 50px 30px;
  font-family: general;
  background-color: #fff;
  font-family: "general-sans", sans-serif;
}

.floor-plans-section h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* ====== Tabs ====== */
.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  flex-wrap: wrap;
  border-radius: 40px;
  background: #f6f4ee;
  justify-content: space-between;
}

.tab {
  background: transparent;
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab.active {
  background: #a0897b;
  color: #fff;
}

/* ====== 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;
}

.plan-details {
  flex: 0.4;
  min-width: 300px;
  padding: 35px;
  background: #f6f4ee;
  border-radius: 10px;
}

.plan-image-2 {
  flex: 0.6;
  min-width: 320px;
  text-align: center;
}

.plan-image-2 img {
  max-width: 100%;
  height: 70vh;
  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: 2px solid #D2D0C9;
}

.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: #a0897b;
  border-radius: 10px;
}
.room-table th,
.room-table td {
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}

.room-table th{
  border-bottom: 1px solid white;
  padding: 20px 0px !important;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.info-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, 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);
}
/* ====== Responsive ====== */
@media (max-width: 768px) {
  
.plan-image-2 img {
  height: auto;
}
  .floor-plans-section h2 {
    font-size: 32px;
    padding-left: 10px;
  }
  .collapsible-content {
    padding: 10px 0px;
  }
  .collapsible-header {
    padding: 20px 0px;
  }
  .plan-details {
    min-width: 100%;
    padding: 25px 15px;
    background: #f6f4ee;
    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;
  }

  .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;
  }

  .room-table th,
  .room-table td {
    color: white;
    padding: 8px 5px;
    text-align: center;
    font-size: 10px;
  }
}

/* amenities */
.amenities-section {
  padding: 0px;
  margin: 100px 0px;
  background-color: #fbf7ef;
  font-family: "general-sans", sans-serif;
}

.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: 400;
  line-height: 110.00000000000001%;
  margin-bottom: 16px;
}

.amenities-content h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
}

.amenities-content p {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 50px;
  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: 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: #e6e1d8;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}
.amenity-tab.active {
  background-color: #a0897b;
  color: #fff;
}

.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: #000;
}

.amenity-item span {
  background-color: #a0897b;
  color: #fff;
  width: 24px;
  height: 24px;
  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 20px 20px 20px;
    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%);
    }
  }
}

/* gallery 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;
}

.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-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background: #a0897b;
  color: white;
  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), 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: 500;
}

.carousel-caption-2 p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4;
}
.custom-gallery-p{
  margin-bottom: 50px;
  padding: 0px 50px;
}
.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: 15px;
    cursor: pointer;
    background: #a0897b;
    color: white;
    padding: 3px 9px;
    border-radius: 61%;
  }
}

/* specification */
.specifications-section {
  background: #f6f4ee;
  padding: 80px 30px;
  font-family: "general-sans", sans-serif;
}

.specifications-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.specifications-heading {
  flex: 1;
  min-width: 280px;
}

.specifications-heading h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
}

.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: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-title::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('/meruandmeadow/images/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('/meruandmeadow/images/upward.webp');
  /* background-image: url('@/images/upward.webp');  */
}

.spec-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  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: 14px;
}

/* 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-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: 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;
}

/* 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;
    margin-top: 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: 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: 30%;
  }
}

/* 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-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
}

.why-meru-card p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  height: 120px;
  color: #000000;
}

/* 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-masonry {
  padding: 0px 30px 70px 30px;
  font-family: "general-sans", sans-serif;
  margin-bottom: -150px;
}

.gallery-masonry h2 {
  font-size: 40px;
  font-weight: 400;
}

.gallery-masonry p {
  font-weight: 300;
  font-size: 16px;
}

/* Overlay Wrapper */
.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Overlay */
.gallery-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Only bottom 50% */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.gallery-image-wrapper:hover::after {
  height: 0%; /* Shrink overlay height on hover */
}
/* animations */
.gallery-image-wrapper {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  will-change: transform, opacity;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}
.gallery-masonry-scroll:not(:hover) .gallery-masonry-track {
  animation-play-state: paused;
}

.gallery-image-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-image-wrapper img {
  transition: transform 0.4s ease;
}

.gallery-image-wrapper:hover img {
  transform: scale(1.10);
}
.gallery-image-wrapper::after {
  transition: height 0.4s ease;
}
.cancel-expand-btn {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-image-wrapper:hover .cancel-expand-btn {
  opacity: 1;
  transform: scale(1);
}
.gallery-masonry h2,
.gallery-masonry p {
  opacity: 1 !important;
}
.gallery-image-wrapper {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Optional hover effect (desktop only) */
@media (min-width: 768px) {
  .gallery-image-wrapper::after {
    transition: background 0.3s ease;
  }
}

/* Mobile auto-scroll styles */
.gallery-masonry-scroll {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 10px;
}

.gallery-masonry-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 30s linear infinite;
  width: max-content;
}

.gallery-masonry-track .gallery-image-wrapper {
  height: 260px;
  width: 85vw;
  flex-shrink: 0;
}

/* Scroll animation */
@keyframes scrollGallery {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* .fade-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-image.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* Hover effect for desktop */
@media (min-width: 768px) {
  /* .gallery-image-wrapper img {
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .gallery-image-wrapper:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
  } */
  .gallery-image-wrapper:hover{
    cursor: pointer;
  }
}
/* Responsive Text */
@media (max-width: 768px) {
  .gallery-masonry {
    padding: 0px 0px 70px 0px;
        margin-bottom: -60px;
  }

  .gallery-masonry h2 {
    padding-left: 20px;
    font-size: 32px;
  }

  .gallery-masonry p {
    padding-left: 20px;
    width: 70%;
    font-size: 14px;
  }
}
/* Expanded State */
.gallery-image-wrapper.expanded {
  position: fixed !important;
  top: 50%;
  left: 50%;
  width: 90vw !important;
  height: 90vh !important;
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 9999;
  background: #000;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-image-wrapper.expanded img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: brightness(1.1);
}

/* Cancel Button */
.cancel-expand-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 50%;
  z-index: 10000;
  cursor: pointer;
  display: none;
}

.gallery-image-wrapper.expanded .cancel-expand-btn {
  display: block;
}

body.no-scroll {
  overflow: hidden;
}
/* Lightbox Styling */
.img-popup {
  position: fixed;
  inset: 0;
  background: rgba(38, 40, 52, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: pop-in 0.5s ease;
}

.img-popup img {
  max-width: 80%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close-lightbox {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 32px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 0px 15px 5px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100000;
  border: 2px solid #fff;
}

/* Pop In */
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade Out */
@keyframes fade-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.1);
  }
}

.lightboxfadeout {
  animation: fade-out 0.5s forwards;
}
/* Mobile continuous gallery */
.mobile-gallery-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.mobile-gallery-track {
  display: flex;
  gap: 16px;
  animation: mobileGalleryScroll 80s linear infinite;
  width: max-content;
}

.mobile-gallery-item {
  flex: 0 0 auto;
  width: 80vw;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.mobile-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animation loop */
@keyframes mobileGalleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* virtual tour */
.virtual-tour-section {
  background-color: #F6F4EE;
  padding: 80px 20px;
  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: 300;
  line-height: 110%;
  margin: 0;
  font-family: 'general-sans';
}

.virtual-tour-video {
  max-width: 1160px;
  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 {
  background-color: #ffffff;
  padding: 0px;
  padding-top: 90px;
}

.walkthrough-container {
  max-width: 100%;
  width: 100%;
}

.walkthrough-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 30px;
  text-align: center;
  margin-left: 40px;
  color: #000;
  font-family: 'general-sans';
}

.walkthrough-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: none;
  /* height:600px; */
}

.walkthrough-thumbnail {
  width: 100%;
  display: block;
}

.walkthrough-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
}

.play-icon {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .walkthrough-section {
    padding-left: 0px;
    padding-top: 15px;
  }
  .walkthrough-title {
    font-size: 32px;
    text-align: left;
    padding-left: 0px;
    margin-left: 20px;
    padding-top: 40px;
  }

  .walkthrough-play-btn {
    width: 60px;
    height: 60px;
  }
  .walkthrough-thumbnail {
    width: 90%;
    margin: auto;
    border-radius: 20px;
  }
}

/* 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 {
  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: 350px;
  height: auto;
}

.brochure-button {
      width: 280px;
    margin-top: 25px;
    background: #a0897b;
    align-self: center;
    color: #fff;
    padding: 15px 24px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
}

.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: 20%;
}
.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;
  }
}
/* 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;
}

/* 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 {
  background: transparent;
  color: #000;
  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: #000;
}

.mspec-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

@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 */
.uniqloc-section {
  padding: 40px 20px;
  font-family: "general-sans", sans-serif;
  background: #fff;
}

.uniqloc-section h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 25px;
  color: #2e2e2e;
}

.uniqloc-section p {
  text-align: center;
  font-size: 16px;
  width: 70%;
  color: #555;
  margin: auto;
  margin-bottom: 30px;
}

.uniqloc-tabs-wrapper {
  background: #f9f7f3;
  padding: 15px 8px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  /* margin-bottom: 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;
}

.uniqloc-tab.active {
  background: #A0897B;
  color: #fff;
}

.uniqloc-icon {
  font-size: 16px;
  line-height: 1;
}

/* Content */
.uniqloc-content {
  display: none;
}
.uniqloc-content.active {
  display: block;
  text-align: center;
}

.uniqloc-map-img {
  position: relative;
  display: inline-block;
  width: 80%;
  margin-top: 20px;
  max-width: 100%;
}
.uniqloc-map-img img {
  width: 100%;
  height: auto;
  /* padding: 0px 50px; */
}

/* Marker */
.uniqloc-marker {
  position: absolute;
  width: 17px;
  height: 17px;
  background: #9B9B9B;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.uniqloc-marker:hover{
  background: #000;
}

.uniqloc-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #6b8a93;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.uniqloc-marker:hover .uniqloc-tooltip,
.uniqloc-marker:focus-within .uniqloc-tooltip {
  opacity: 1;
  visibility: visible;
  z-index: 500;
}

.uniqloc-label {
  z-index: 3;
  pointer-events: none;
}
.connectivity-numbered-list {
  counter-reset: list-counter;
  list-style: none;
  /* padding-left: 0; */
  margin: 0;
  /* margin-left: 60px; */
}

.connectivity-numbered-list li {
  counter-increment: list-counter;
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.connectivity-numbered-list li::before {
  content: counter(list-counter);
  width: 28px;
  height: 28px;
  background-color: #A0897B;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 13px;
  flex-shrink: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-text {
  font-size: 14px;
  color: #3c2c22;
  line-height: 1.2;
}

.location-time {
  font-size: 13px;
  font-weight: bold;
  color: #3c2c22;
  margin-top: 4px;
  text-align: left;
}

/* Default marker opacity on mobile */
@media (max-width: 768px) {
  .uniqloc-map-img{
    width: 100%;
  }
  .connectivity-numbered-list{
    padding-left: 0px;
    margin-left: 0px;
  }
  .uniqloc-section h2 {
    text-align: left;
    font-size: 32px;
  }
  .uniqloc-tabs-wrapper{
    background: none;
    border-radius: 0px;
    margin-bottom: 0px;
  }
  .uniqloc-tab{
    border: none;
    /* padding: 0px 20px; */
    cursor: pointer;
    font-size: 12px;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .uniqloc-tabs {
    display: flex;
    gap: 0px;
    flex-wrap: nowrap; /* important */
    overflow-x: auto;
  }
  .uniqloc-section p{
    width: 100%;
    text-align: left;
    font-size: 12px;
  }
  .uniqloc-marker {
    height: 13px;
    width: 13px;
    font-size: 10px;
    opacity: 0.4;
  }

  .uniqloc-marker .uniqloc-tooltip {
    display: none !important;
  }

  .uniqloc-hover-texts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
  }

  .uniqloc-hover-texts .hover-text-button {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    color: #3c2c22;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #d0ccc5;
  }
}
@media (max-width: 768px) {
  .uniqloc-hover-texts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 0px;
    padding: 10px 0px;
  }

  .hover-text-block {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #3c2c22;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    padding: 5px;
    text-align: left;
  }
  .hover-text-block:hover{
    background-color:#A0897B;
    color: white;
    border-radius: 20px;
  }

  .hover-text-block .marker-number {
    width: 26px;
    height: 26px;
    background-color: #A0897B;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  .uniqloc-marker{
    opacity: 1 !important;
  }
}