  /* Overlay */
  .unfo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(4px);
  }

  /* Popup box */
  .unfo-content {
    background: #fff;
    display: flex;
    flex-direction: row;
    max-width: 900px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.4s ease;
  }

  /* Left side image */
  .unfo-left {
    width: 45%;
  }

  .unfo-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
  }

  .unfo-left:hover img {
    transform: scale(1.1);
  }

  /* Right side content */
  .unfo-right {
    width: 55%;
    padding: 50px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafaf8;
  }

  .unfo-right h2 {
    font-size: 30px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 16px;
  }

  .unfo-right p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 28px;
  }

  /* Book Now button */
  .unfo-btn {
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    background-color: #948f5f;
    padding: 14px 20px;
    text-align: center;
    width: 100%;
    max-width: 260px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .unfo-btn:hover {
    background-color: #948f5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  /* Close button */
  .unfoclose-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    /* ensures it stays above image */
  }

  .unfoclose-btn:hover {
    background: #fff;
    color: #948f5f;
    transform: rotate(90deg);
  }

  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .unfo-content {
      flex-direction: column;
      max-width: 95%;
    }

    .unfo-left,
    .unfo-right {
      width: 100%;
    }

    .unfo-right {
      padding: 30px 20px;
    }

    .unfo-left img {
      width: 100%;
      height: 220px !important;
      object-fit: cover;
      transform: scale(1.05);
      transition: transform 0.6s ease;
    }

    /* keep close button visible on mobile */
    .unfoclose-btn {
      top: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.95);
      font-size: 26px;
      width: 34px;
      height: 34px;
    }

    /* .unfo-btn {
      width: 100%;
    } */
    .unfo-btn {
      text-decoration: none;
      font-size: 9px;
      letter-spacing: 1px;
      font-weight: 600;
      color: #fff;
      background-color: #948f5f;
      padding: 7px 14px !important;
      text-align: center;
      width: 100%;
      max-width: 260px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
  }

  .unforgetable-section {

    padding: 80px 0;
    position: relative;
  }

  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
  }

  .unforgetable-slider {
    overflow: hidden;
    position: relative;
  }

  /* Card styling */
  .unfo-card {
    text-align: center;
    padding: 0px !important;
    margin: 0px !important;
  }

  .unfo-card img {
    width: 90%;
    height: 400px;
    /* reduced height */
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
  }

  .unfo-card img:hover {
    transform: scale(1.03);
  }

  .unfo-text {
    margin-top: 12px;

  }

  .unfo-text span {
    display: block;
    width: 50px;
    height: 1px;
    background: #000;
    margin: 0 auto 8px;
  }

  .unfo-text p {
    text-align: center !important;
    letter-spacing: 1px;
  }


  /* Navigation arrows */
  .unfo-button-prev,
  .unfo-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid #948f5f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    background: #948f5f !important;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .unfo-button-prev:hover,
  .unfo-button-next:hover {
    background: #948f5f;
    color: #fff;
  }

  .unfo-prev {
    left: -40px !important;
  }

  .unfo-next {
    right: -40px !important;
  }

  .unfo-button-prev::after,
  .unfo-button-next::after {
    display: none !important;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .unfo-card {
      width: 90%;
    }

    .unfo-card img {
      height: 240px;
    }
  }

  @media (max-width: 992px) {
    .unfo-card {
      width: 90%;
    }

    .unfo-card img {
      height: 220px;
    }

    .unfo-prev {
      left: -30px !important;
    }

    .unfo-next {
      right: -30px !important;
    }
  }

  @media (max-width: 768px) {
    .unfo-card {
      width: 100%;
    }

    .unfo-card img {
      height: 220px !important;
    }

    .unfo-button-prev,
    .unfo-button-next {
      background: #948f5f;
      border: none;
      width: 35px;
      height: 35px;
      top: 50%;
      transform: translateY(-50%);
    }

    .unfo-prev {
      left: 10px !important;
    }

    .unfo-next {
      right: 10px !important;
    }

    .unfo-text p {
      text-align: center !important;
    }
  }

  @media (max-width: 576px) {
    .unfo-card {
      width: 100%;
    }

    .unfo-card img {
      height: 220px !important;
    }

    .unfo-text {
      margin-top: 0px;
      padding: 10px 30px;
    }

    .unfo-text p {
      text-align: center !important;
    }

    .amenities-section {
      margin-top: 0px !important;
      text-align: center;
      background: #ffffef;
      padding: 20px;
    }
  }