        .heading {
                text-align: center;
                color: #cda45e,;
            }
        .center-heading {
                text-align: center;
                color: #fff;
            }
    .box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* width: 300px;
            height: 400px; */
        padding: 25px;
        color: #fff;
        background-color: rgb(0, 0, 0);
        box-sizing: border-box;
        z-index: 9;
    }

      .box:before {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        z-index: -1;
    }

    .box:after {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        z-index: -2;
        filter: blur(10px);
    }

    .box:before,
    .box:after {
        background: linear-gradient(135deg, #cda45e, rgb(0, 0, 0), #cda45e);
    }

    .border-gallery {
        border: 3px solid #cda45e !important;
    }

    .border-food {
        border: 5px solid #cda45e !important;
    }

/* ==============================
   STONE PALACE CONTENT
============================== */
.stone-palace-section {
  background: #050505;
  padding: 70px 0;
  color: #ffffff;
}

.stone-palace-intro p {
  font-size: 15.5px;
  color: #dddddd;
  margin-bottom: 14px;
  max-width: 900px;
}

/* GRID */
.stone-palace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* BOXES */
.stone-palace-box {
  background: #0f0f0f;
  padding: 22px 26px;
  border-radius: 6px;
  border-left: 3px solid #cda45e;
}

.stone-palace-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.stone-palace-box ul {
  padding-left: 18px;
}

.stone-palace-box li {
  font-size: 14.5px;
  color: #cccccc;
  margin-bottom: 8px;
}

/* PERFECT FOR */
.perfect-for {
  margin-top: 30px;
}

/* CTA */
.stone-palace-cta {
  margin-top: 35px;
  background: #0f0f0f;
  padding: 25px 30px;
  border-radius: 8px;
  text-align: center;
  border-left: 3px solid #cda45e;
  border-right: 3px solid #cda45e;
}

.stone-palace-cta h3 {
  margin-bottom: 8px;
}

.stone-palace-cta p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border: 2px solid #cda45e;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
}

.btn-arrow:hover {
  background: #cda45e;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .stone-palace-grid {
    grid-template-columns: 1fr;
  }
}
 /* ===============================
            LOCATION SECTION
          ================================ */
          .location-section {
              background-color: rgba(5, 5, 5, 1);
          }

          /* Map */
          .map-wrapper {
              height: 100%;
              border-radius: 8px;
              overflow: hidden;
              box-shadow: 0 10px 25px rgba(0,0,0,0.1);
          }

          .map-wrapper iframe {
              width: 100%;
              height: 100%;
              min-height: 400px;
              border: 0;
          }

          /* Right content */
          .location-info {
              background: #ffffff;
              padding: 35px;
              border-radius: 8px;
              box-shadow: 0 10px 25px rgba(0,0,0,0.08);
              height: 100%;
          }

          .location-info h3 {
              font-size: 26px;
              font-weight: 600;
              margin-bottom: 15px;
              color: #2b2b2b;
          }

          .location-info p {
              font-size: 15px;
              line-height: 1.7;
              color: #555;
              margin-bottom: 25px;
          }

          /* List */
          .location-list {
              list-style: none;
              padding: 0;
              margin: 0;
          }

          .location-list li {
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 12px 0;
              border-bottom: 1px dashed #ddd;
          }

          .location-list li span {
              font-weight: 500;
              color: #333;
          }

          .location-list li strong {
              color: #caa45d;
              font-weight: 600;
          }

          /* Responsive */
          @media (max-width: 768px) {
              .location-info {
                  padding: 25px;
              }

              .location-info h3 {
                  font-size: 22px;
              }

              .location-list li {
                  flex-direction: column;
                  align-items: flex-start;
                  gap: 4px;
              }
          }
              .center-list {
                list-style-position: inside;   /* keeps dot aligned with text */
                text-align: center;            /* centers bullet + text */
                padding: 0;
                margin: 0;
                }

                .center-list li {
                font-size: 16px;
                color: #fff;
                margin-bottom: 10px;
                }