.logo {
  /* width:320px;
  max-width: 0px; */
}

.nav-wrapper {
  background-color: black;
}

.nav-wrapper.pdp-nav-wrapper {
  /* height: 144px; */

}

/*top navigation gaps betweebn links reduced*/
.subnav-list {
  grid-column-gap: 2rem;
}

.text-size-large {
  font-size: 16px;
}

.amenities_ {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 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;
  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 */
/* ===== Modal 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;
  min-width: 100%;
}

label {
  font-size: 0.95rem;
  color: #1e1b39;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
select {
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 4px;
  font-size: 16px;
  /* Prevent mobile zoom issue */
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  position: relative;
  z-index: 1;
  /* Fix cursor misalignment */
}

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;
}

.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;
}

.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;
}

/* ===== Modal Adjustments for Mobile Cursor Issue ===== */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  opacity: 1;
  transform: none !important;
  /* Crucial fix for mobile cursor misalignment */
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}

/* Optional: Prevent background scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .form-group {
    min-width: 100%;
  }
}




/* 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: 100vh;
  display: flex;
  position: relative;
}

.residences_intro_cha {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 200vh;
  display: flex;
  position: relative;
}

.residences_intro_rda {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 200vh;
  display: flex;
  position: relative;
}

.residences_intro5 {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 200vh;
  display: flex;
  position: relative;
}

.residences_intro_main {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 230vh;
  display: flex;
  position: relative;
}

.residences_intro_location {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 220vh;
  display: flex;
  position: relative;
}

@media (max-width: 600px) {
  .residences_intro1 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 140vh;
    display: flex;
    position: relative;
  }

  .residences_intro2 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 170vh;
    display: flex;
    position: relative;
  }

  .residences_intro3 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 130vh;
    display: flex;
    position: relative;
  }

  .residences_intro5 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 330vh;
    display: flex;
    position: relative;
  }

  .residences_intro_main {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }

  .residences_intro_dhl {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }

  .residences_intro_cha {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }

  .residences_intro_rda {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }
}

.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;
  /* border-radius: 14px; */
  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;
}


.location-bullets li {
  padding: 10px 0px;
}


/* 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;
}

.residences_intro_main {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 230vh;
  display: flex;
  position: relative;
}

.residences_intro_location {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 220vh;
  display: flex;
  position: relative;
}

@media (max-width: 600px) {
  .residences_intro1 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 140vh;
    display: flex;
    position: relative;
  }

  .residences_intro2 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 170vh;
    display: flex;
    position: relative;
  }

  .residences_intro3 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 130vh;
    display: flex;
    position: relative;
  }

  .residences_intro5 {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 330vh;
    display: flex;
    position: relative;
  }

  .residences_intro_main {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }

  .residences_intro_dhl {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }

  .residences_intro_cha {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }

  .residences_intro_rda {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 260vh;
    display: flex;
    position: relative;
  }
}

.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;
  /* border-radius: 14px; */
  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;
}


.location-bullets li {
  padding: 10px 0px;
}


/* 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;
  }
}

/* Remove shadow from carousel images */
.full_carousel_image,
.full_carousel_slide,
.full_carousel_container {
  box-shadow: none !important;
  background: none !important;
}

.full_carousel_slide_content,
.full_carousel_slide_content::before,
.full_carousel_slide_content::after,
.full_carousel_slide::before,
.full_carousel_slide::after {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.residences_intro_dhb .full_carousel_container {
  height: 100vh !important;
}