.brand-logo {
  left: 7%;
  width: 140px;
  height: auto;
  padding: 0.3rem 0;
  background: transparent !important;
  transform: scale(1.1) !important;
}

.brand-logo img {
  max-height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .brand-logo {
    background: transparent !important;
  }
  
  .nav-ctas.hide-mobile-logo {
    background: transparent !important;
  }
  
  .nav-ctas .button.hide-desktop {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }
  
  .button.hide-mobile .button-border-svg,
  .button.hide-mobile svg.btn,
  .button.hide-mobile svg.btn rect {
    display: none !important;
  }
}

.logo {
  /* width:320px;
  max-width: 0px; */
}

.nav-wrapper {
  background-color: black;
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-wrapper .pdp-nav-wrapper {
  height: 44px !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/*top navigation gaps betweebn links reduced*/
.subnav-list {
  grid-column-gap: 2rem;
}


.amenities_ {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  list-style: none;
  padding: 0;
}

.amenities_clubhouse {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  list-style: none;
  padding: 0;
}


.amenity_ {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 1.25rem;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.amenity_empty {
  padding: 2rem 1rem;
}

.amenity_:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: #d1b075;
}

.amenity_ svg {
  width: 46px;
  height: 46px;
  color: #b6934a;
  /* soft gold icon */
  margin-bottom: 1rem;
  stroke-width: 1.8;
}

.amenity_ span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a3a3a;
}

/* ✅ Responsive adjustments */
@media (max-width: 900px) {
  .amenities_ {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {

  .amenities_ {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 30px;
  }

  .amenity_ {
    padding: 1.5rem 0.75rem;
  }

  .amenity_empty {
    display: none;
  }

  .amenity_ svg {
    width: 36px;
    height: 36px;
  }

}

@media (max-width: 400px) {
  .amenities_ {
    /* grid-template-columns: 1fr;  */
    /* stack in one column on very small screens */
  }
}

.card_text_alternate {
  height: 400px;
  position: static;
}



/*interest form*/

/* Button to trigger modal */
.open-modal-btn {
  display: inline-block;
  background-color: #1e1b39;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin: 40px auto;
  display: block;
}

/* Modal background overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #1e1b39;
  font-weight: 500;
  text-transform: uppercase;
}

/* Close button */
.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.close:hover {
  color: #1e1b39;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

label {
  font-size: 0.95rem;
  color: #1e1b39;
  margin-bottom: 6px;
}

#interestForm1 label {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"] {

  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 4px;
  font-size: 1rem;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

select {
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 4px;
  font-size: 1rem;
  background: transparent;
  outline: none;
  color: black;
  transition: border-color 0.3s ease;
}


#interestForm1 input[type="text"],
input[type="email"],
select {
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 4px;
  font-size: 1rem;
  background: transparent;
  outline: none;
  color: white;
  transition: border-color 0.3s ease;
  font-size: 14px;
}


input:focus,
select:focus {
  border-color: #1e1b39;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  accent-color: #1e1b39;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.radio-group input[type="radio"] {
  accent-color: #1e1b39;
}

#interestForm1 .submit-btn {
  margin-top: 1.5rem;
  padding: 12px;
  background-color: #1e1b39;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#interestForm1 .submit-btn:hover {
  background-color: #2f2b52;
}

.loader {
  display: none;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1e1b39;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.response {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
}

.response_footer {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  color: white;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }
}




/* slider*/

/* #owl-demo .item{
border: 1px solid rgb(241, 241, 241);
  padding: 0px;
  margin: 10px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  background-color: white;
}

    #owl-demo .item h1{
      color: #0b0b3c;
      font-size: 25px;
      padding: 30px;
    }

    .owl-dot {
      display: none;
      visibility: hidden;
    } */

.residences_intro1,
.residences_intro2,
.residences_intro3 {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}

.residences_intro_map {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}

.residences_intro_location {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}

.residences_intro_main {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}

.residences_intro_master_plan {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}


.residences_intro_amenities {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}

.residences_intro_club_house {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  position: relative;
}


@media (max-width: 600px) {
  .brand-logo {
    /* left:7%; */
    width: 160px;
  }

  .subnav-list {
    grid-column-gap: 1rem;
  }

  .subnav-link {
    padding: 0px 0px;
    font-size: .75rem;
  }

  .residences_intro1 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  .residences_intro {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .residences_intro2 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro3 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro_main {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro_cha {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro5 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro_rda {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro_master_plan {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 5vh;
    display: flex;
    position: relative;
  }

  .residences_intro_map {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro_location {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  .residences_intro_amenities {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .residences_intro_club_house {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    position: relative;
  }

  .content-container-main {
    padding-bottom: 20px !important;
  }

  .amenities_ {
    margin-bottom: 20px !important;
  }

  .subnav-wrapper {
    display: none !important;
  }

  .subnav-wrapper.show-mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 44px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    background: black !important;
    max-height: calc(100vh - 44px) !important;
    overflow-y: auto !important;
  }

}

@media (max-width: 442px) {
  .subnav-link {
    padding: 0px 0px;
    font-size: .75rem;
  }

}

.stacked-images-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.stacked-image-item {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.stacked-image-item img {
  width: 100%;
  height: auto;
  display: block;
}

.stacked-image-item .full_carousel_slide_content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
  width: auto;
}

.stacked-image-item .full_carousel_slide_title {
  color: #ffffff;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .stacked-images-container {
    gap: 20px;
  }
  
  .stacked-image-item .full_carousel_slide_content {
    bottom: 1rem;
    left: 1rem;
  }
}
/* .gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 100%;
  width: 100%;
  margin-bottom: 100px;
}

.gallery .item {
  text-align: center;
  border: 1px solid rgb(241, 241, 241);
}

.gallery img {
  width: 100%;
  height: auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
} */

/* --- Tabs --- */
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  background: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background: #e2e2e2;
}

.tab.active {
  background: #ddae4d;
  color: white;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  /* Allows wrapping to next line */
  gap: 20px;
  /* Space between items */
  justify-content: center;
  /* Center content if needed */
  width: 100%;
  margin-bottom: 100px;
}

.gallery .item {
  flex: 0 0 calc(50% - 20px);
  /* ✅ 2 items per row */
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgb(241, 241, 241);
    opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
  cursor: pointer;
}
/* Hidden state (sliding up + fade out) */
.gallery .item.hide {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

.gallery h1 {
  text-transform: capitalize;
}

.content-container {
  padding: 1rem 3rem;
}

.content-container-main {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
  display: flex;
}

@media (max-width: 767px) {
  .content-container-main {
    padding: 1rem 1.5rem !important;
  }
}

.content-container-main--compact {
  padding: 2rem 3rem 1.5rem;
}

@media (max-width: 767px) {
  .content-container-main--compact {
    padding: 1.5rem 1.5rem 1rem;
  }
}

.content-container-ld {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12rem 3rem;
  display: flex;
}

.content-container-location {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem;
  display: flex;
}

.content-container_location {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem;
  display: flex;
}

@media (max-width: 767px) {
  .content-container-location,
  .content-container_location {
    padding: 3rem 1.5rem 3rem;
  }
}


.content-container-plan {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem;
  display: flex;
}

.content-container-master-plan {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0rem 3rem;
  display: flex;
}

.content-container-amenities {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem;
  display: flex;
}

.content-container-club-house {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem;
  display: flex;
}


/* Responsive: 1 per row on small screens */
@media (max-width: 768px) {
  .gallery .item {
    flex: 0 0 100%;
  }

  .content-container {
    padding: 0rem 3rem;
  }
}

.gallery img {
  width: 100%;
  height: auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}



.gallery img:hover {
  transform: scale(1.03);
}

.gallery .item h1 {
  color: #0b0b3c;
  font-size: 25px;
  padding: 30px;
}

.residence_feature_media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem 0;
}

.residence_feature_media .feature_image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.residence_feature_media .feature_image.hide-mobile {
  margin-top: 0;
}

.residence_feature_media .feature_image.hide-desktop {
  padding-top: 0;
}

@media (max-width: 991px) {
  .residence_feature_media {
    padding: 0.5rem 1rem 0;
  }
}

@media (max-width: 600px) {
  .residence_feature_media {
    padding: 0.5rem 0 0;
  }
}


.location-bullets li {
  padding: 10px 0px;
}

.location-map-container {
  padding: 2rem;
  margin-top: 0;
}

.location-map-iframe {
  width: 100%;
  height: 750px;
  border: 0;
}

.full_carousel_slide iframe {
  display: block;
  width: 96%;
  height: 750px;
  border: 0;
  margin: 0 auto;
}

.full_carousel_slide iframe.hide-desktop {
  width: 90%;
  height: 650px;
}

.mobile-menu-float {
  display: none;
}

.mobile-floating-menu-container {
  display: none;
}

@media (max-width: 767px) {
  /* Ensure header doesn't cover menu button */
  .nav-wrapper,
  .nav-wrapper.pdp-nav-wrapper {
    z-index: 4 !important;
  }
  
  .brand-logo {
    left: 1.5rem !important;
    padding-top: 0.5rem !important;
  }

  .hide-desktop.mobile-floating-menu-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    position: relative !important;
  }

  .mobile-floating-menu-container.hide-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    position: relative !important;
  }

  .mobile-floating-menu-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    position: relative !important;
  }

  .floating-menu-btn {
    display: flex !important;
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 999999 !important;
    width: 48px !important;
    height: 48px !important;
    background: #ffffff !important;
    border: 2px solid #10103D !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-wrapper,
  .nav-bar,
  .pdp-nav-bar,
  .subnav-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
  }

  .floating-menu-btn:hover {
    background: #f0f0f0 !important;
    transform: scale(1.05) !important;
  }

  .floating-menu-panel {
    position: fixed !important;
    top: 0 !important;
    right: -300px !important;
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 999998 !important;
    transition: right 0.3s ease !important;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3) !important;
  }

  .floating-menu-panel.active {
    right: 0 !important;
  }

  .floating-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px !important;
    background: #10103D !important;
    color: white !important;
  }

  .floating-menu-header h3 {
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: white !important;
  }

  .close-menu-btn {
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 32px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
  }

  .floating-menu-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .floating-menu-list li {
    border-bottom: 1px solid #e0e0e0 !important;
  }

  .floating-menu-list a {
    display: block !important;
    padding: 18px 20px !important;
    color: #10103D !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: background 0.2s ease !important;
  }

  .floating-menu-list a:hover {
    background: #f5f5f5 !important;
  }

  .menu-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 999997 !important;
  }

  .menu-overlay.active {
    display: block !important;
  }

  .mobile-menu-float {
    display: flex !important;
    position: fixed !important;
    top: 10px !important;
    right: 15px !important;
    z-index: 9999 !important;
    width: 50px !important;
    height: 50px !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mobile-menu-float:hover {
    background: #f0f0f0 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  }

  .mobile-menu-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  .mobile-menu-float svg line {
    stroke: #000000 !important;
  }

  .pdp_hero_intro {
    padding-top: 80px !important;
  }
}


@media (max-width: 991px) {
  .location-map-container {
    padding: 1.5rem;
    margin-top: 0;
  }
  
  .location-map-iframe {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .location-map-container {
    padding: 1rem;
    margin-top: 0;
  }
  
  .location-map-iframe {
    height: 400px;
  }
}

@media (max-width: 479px) {
  .location-map-container {
    padding: 0.5rem;
    margin-top: 0;
  }
  
  .location-map-iframe {
    height: 350px;
  }
}


/* Lightbox styles */
.lightbox {
  display: none;
  /* hidden by default */
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.caption {
  color: #fff;
  margin-top: 15px;
  font-size: 1.1rem;
  text-align: center;
}

.close_lt {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close_lt:hover {
  color: #ccc;
}


/* Floating call button */
.call-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  background-color: #1e1b38;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  animation: pulse 1.6s infinite, slideUp 0.8s ease-out;
  z-index: 1999;
  transition: transform 0.3s ease, background 0.3s;
}

.call-button:hover {
  background-color: #2e2958;
  transform: scale(1.1);
}

/* Icon inside button */
.call-button i {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
  color: #eca242;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Entry animation */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.full_carousel_veil {
  background-color: transparent !important;
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 767px) {
  .hide-mobile-logo {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: block !important;
  }
  
  .nav-wrapper.pdp-nav-wrapper {
    overflow: visible !important;
  }
  
  .subnav-wrapper {
    display: none;
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    max-height: calc(100vh - 44px);
    overflow-y: auto;
  }
  
  .nav-wrapper {
    z-index: 100000;
  }
  
  .subnav-wrapper.show-mobile-menu {
    display: block !important;
  }
  
  .subnav-wrapper .subnav-bar {
    padding: 20px 0;
  }
  
  .subnav-wrapper .subnav-list {
    flex-direction: column;
    gap: 0;
    display: flex !important;
  }
  
  .subnav-wrapper .subnav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .subnav-wrapper .subnav-link {
    padding: 15px 20px;
    display: block;
    width: 100%;
  }
  
  .content-container-main,
  .content-container-main--compact,
  .content-container-ld,
  .content-container-location,
  .content-container_location,
  .content-container-plan,
  .content-container-master-plan,
  .content-container-amenities,
  .content-container-club-house,
  .content-text,
  .content-heading,
  .content-caption {
    text-align: center !important;
  }
  
  .location-bullets,
  ul.text-color-richblue {
    text-align: left !important;
    display: inline-block;
    margin: 0 auto;
  }
  
  .footer_container {
    text-align: center;
  }
  
  .footer_header,
  .footer_logo_link {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  
  .footer_links_col_container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer_links_col {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .footer_links_title {
    text-align: center;
  }
  
  .footer_links_list {
    text-align: center;
  }
  
  .footer_links_newsletter {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer_links_newsletter .form-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .footer_links_newsletter .form-group {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .footer_links_newsletter label {
    text-align: center;
    display: block;
    width: 100%;
  }
  
  .footer_links_newsletter input,
  .footer_links_newsletter select {
    text-align: center;
    width: 100%;
  }
  
  .footer_links_newsletter .submit-btn {
    margin: 1rem auto 0;
    display: block;
    width: 100%;
    max-width: 300px;
  }
  
  .footer_form_block {
    text-align: center;
    width: 100%;
  }
  
  .footer_links_social {
    justify-content: center;
  }
  
  .footer_links_row {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
}

.owl-carousel .full_carousel_slide:not(:first-child) {
  margin-top: 20px;
}

.section_residences {
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  .section_residences {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .section_residences {
    margin-top: 0 !important;
  }
}

@media (max-width: 479px) {
  .section_residences {
    margin-top: 0 !important;
  }
}

/* Force show mobile floating menu on mobile devices */
@media (max-width: 767px) {
  div.mobile-floating-menu-container.hide-desktop,
  .hide-desktop.mobile-floating-menu-container,
  div.hide-desktop.mobile-floating-menu-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
    position: relative !important;
  }

  /* Mobile menu button must be above everything */
  .floating-menu-btn,
  button#floatingMenuBtn,
  #floatingMenuBtn {
    z-index: 999999 !important;
    position: fixed !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  /* Keep header below menu button */
  .nav-wrapper,
  .nav-bar,
  .pdp-nav-bar,
  .nav-wrapper.pdp-nav-wrapper,
  nav,
  nav.nav-wrapper {
    z-index: 4 !important;
    position: fixed !important;
  }
}

/* Android-specific fixes */
@media (max-width: 767px) {
  /* Fix viewport height issues on Android */
  html, body {
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  
  /* Ensure proper responsive scaling on Android */
  * {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Fix floating menu button for Android */
  .floating-menu-btn {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 2147483647 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }
  
  /* Improve touch targets for Android */
  .floating-menu-btn,
  .floating-menu-list a,
  .close-menu-btn {
    min-height: 48px !important;
    min-width: 48px !important;
  }
  
  /* Fix panel positioning on Android */
  .floating-menu-panel {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85vw !important;
    max-width: 320px !important;
    height: 100vh !important;
    height: -webkit-fill-available !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .floating-menu-panel.active {
    right: 0 !important;
  }
  
  /* Fix overlay on Android */
  .menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: -webkit-fill-available !important;
    z-index: 999997 !important;
  }
  
  /* Fix content spacing on Android */
  .page-wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Ensure images scale properly */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix full carousel on Android */
  .full_carousel_container,
  .full_carousel_slide {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden;
  }
  
  .full_carousel_image {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }
  
  /* Fix stacked images on Android */
  .stacked-images-container {
    width: 100% !important;
    overflow: hidden;
  }
  
  .stacked-image-item {
    width: 100% !important;
    position: relative;
    overflow: hidden;
  }
  
  .stacked-image-item img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  /* Fix text overlay on images for Android */
  .stacked-image-item .full_carousel_slide_content {
    position: absolute !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    z-index: 10 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important;
    padding: 1rem !important;
  }
  
  .stacked-image-item .full_carousel_slide_title {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7) !important;
  }
  
  /* Fix navigation on Android */
  .nav-wrapper {
    width: 100% !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  .brand-logo {
    max-width: 120px !important;
  }
  
  /* Fix section spacing on Android */
  .section_residences,
  .residences_intro {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
}

/* Additional Android Chrome fixes */
@media screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
  .floating-menu-btn {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .floating-menu-panel {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
