        .center-heading {
                text-align: center;
                color: #cda45e;
            }
        .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);
    }
 
/* SECTION */
.wedding-alt-section {
  background: #050505;
  padding: 80px 0;
  color: #ffffff;
}

/* GRID */
.wedding-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

/* BOX */
.alt-box {
  background: #0f0f0f;
  padding: 30px;
  border-left: 3px solid #cda45e;
  border-radius: 8px;
}

.text-box h2 {
  margin-bottom: 14px;
}

.text-box p {
  font-size: 15px;
  color: #dddddd;
}

/* IMAGE */
.image-box {
  padding: 0;
  border: none;
}

.image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* AOS SMOOTHNESS */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-40px, 0, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(40px, 0, 0);
}

/* 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;
              }
          }
/* FAQ Section Wrapper */
.faq-section {
  max-width: 100%;
  margin: auto;
  padding: 60px 20px;
  background: #000;
}

/* Section Title */
.faq-title {
  text-align: center;
  color:#cda45e;
  margin-bottom: 40px;
}

/* Individual FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Rotate + to × */
.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: #cda45e;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #ddd;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  background-color: #1a1a1a;
  margin-bottom: 10px;
  border-radius: 6px;
}
  
/* Mobile Optimization */
@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
  }
}
/* ==============================
   WEDDING ALT SECTION – FINAL RESPONSIVE
============================== */

.wedding-alt-section {
  background: #050505;
  padding: 80px 0;
  color: #ffffff;
}

.wedding-alt-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* ==============================
   GRID LAYOUT
============================== */
.wedding-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

/* ==============================
   BOX STYLING
============================== */
.wedding-alt-section .alt-box {
  background: #0f0f0f;
  padding: 30px;
  border-left: 3px solid #cda45e;
  border-radius: 8px;
}

.wedding-alt-section .text-box h2 {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.wedding-alt-section .text-box p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #dddddd;
}

.wedding-alt-section .text-box ul {
  padding-left: 18px;
  margin: 15px 0;
}

.wedding-alt-section .text-box ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* ==============================
   IMAGE BOX
============================== */
.wedding-alt-section .image-box {
  padding: 0;
  border: none;
}

.wedding-alt-section .image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ==============================
   CTA
============================== */
.wedding-alt-section .stone-palace-cta {
  margin-top: 60px;
  text-align: center;
  background: #0f0f0f;
  padding: 35px 20px;
  border-radius: 8px;
  border-left: 3px solid #cda45e;
}

.wedding-alt-section .stone-palace-cta h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.wedding-alt-section .stone-palace-cta p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 22px;
}

/* BUTTON */
.wedding-alt-section .btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid #cda45e;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.wedding-alt-section .btn-arrow:hover {
  background: #cda45e;
  color: #fff;
}

/* ==============================
   TABLET (≤ 991px)
============================== */
@media (max-width: 991px) {
  .wedding-alt-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wedding-alt-section .image-box img {
    height: 300px;
  }

  .wedding-alt-section .text-box h2 {
    font-size: 24px;
  }

  .wedding-alt-section .stone-palace-cta h2 {
    font-size: 26px;
  }
}

/* ==============================
   MOBILE (≤ 576px)
============================== */
@media (max-width: 576px) {
  .wedding-alt-section {
    padding: 60px 0;
  }

  .wedding-alt-section .alt-box {
    padding: 22px;
  }

  .wedding-alt-section .text-box h2 {
    font-size: 21px;
  }

  .wedding-alt-section .text-box p,
  .wedding-alt-section ul li {
    font-size: 14.5px;
  }

  .wedding-alt-section .image-box img {
    height: 230px;
  }

  .wedding-alt-section .btn-arrow {
    width: 100%;
    justify-content: center;
  }
}
/* ==============================
   SECTION SPACING
============================== */
.dual-flip-section {
  background: #000;          /* TRUE BLACK */
  padding: 80px 0;
}

/* ==============================
   GRID LAYOUT
============================== */
.dual-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; /* MORE space between cards */
}

/* ==============================
   CARD SIZE
============================== */
.dual-flip-card {
  perspective: 1200px;
  height: 400px; /* Increased height */
  margin-top: 10px;
}

/* ==============================
   INNER FLIP
============================== */
.dual-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.85s ease;
  transform-style: preserve-3d;
}

/* Hover flip (desktop) */
.dual-flip-card:hover .dual-flip-inner {
  transform: rotateY(180deg);
}

/* ==============================
   FRONT & BACK
============================== */
.dual-flip-front,
.dual-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

/* ==============================
   FRONT IMAGE
============================== */
.dual-flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   FRONT TEXT OVERLAY
============================== */
.dual-front-text {
  position: absolute;
  bottom: 25px; /* More breathing space */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(94, 92, 92, 0.6);
  color: #fff;
  padding: 10px 24px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  white-space: nowrap;
}

/* ==============================
   BACK SIDE
============================== */
.dual-flip-back {
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  text-align: center;
}

.dual-flip-back h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.dual-flip-back p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ==============================
   MOBILE CLICK TO FLIP
============================== */
@media (hover: none) {
  .dual-flip-card:active .dual-flip-inner {
    transform: rotateY(180deg);
  }
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .dual-flip-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dual-flip-card {
    height: 360px;
  }

  .dual-front-text {
    font-size: 15px;
    padding: 8px 20px;
  }
}
