    .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);
    }

    .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;
    }

    /* ===============================
WEDDING ALT SECTION
================================ */
    .wedding-alt-section {
      padding: 80px 0;
      background-color: rgb(0, 0, 0);
    }

    .wedding-alt-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px 40px;
      align-items: center;
    }

    /* BOX STYLES */
    .alt-box {
      width: 100%;
    }

    .text-box h2 {
      margin-bottom: 15px;
      color: #fff;
    }

    .text-box p,
    .text-box ul li {
      color: #ffffffcc;
      line-height: 1.7;
    }

    /* LIST */
    .text-box ul {
      padding-left: 18px;
    }

    .text-box ul li {
      margin-bottom: 8px;
    }

    /* 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);
    }


    /* IMAGE BOX */
    .image-box img {
      width: 100%;
      height: auto;
      max-height: 520px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    }

    /* CTA SECTION */
    .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 h2 {
      margin-bottom: 10px;
      color: #fff;
    }

    .stone-palace-cta p {
      color: #ffffffcc;
      max-width: 800px;
      margin: 0 auto 20px;
    }

    /* BUTTON */
    .btn-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      color: #ffffffb3;
      text-decoration: none;
    }

    /* ==============================
   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;
      }
    }

    /* ===============================
MOBILE & TABLET FIX
================================ */
    @media (max-width: 991px) {

      .wedding-alt-section {
        padding: 60px 0;
      }

      .wedding-alt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .image-box img {
        max-height: none;
        aspect-ratio: 16 / 9;
      }

      .text-box {
        text-align: center;
      }

      .text-box ul {
        text-align: left;
        display: inline-block;
      }

      .stone-palace-cta {
        margin-top: 60px;
        padding: 0 15px;
      }
    }

    /* 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;
      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;
      }
    }
