.floating-icons {
  position: fixed;
  top: 40%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #f08bb6;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg);
  position: relative;
  z-index: 10;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 20px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    width: 70%;
  }
  .col-lg-9 {
    width: 80%;
  }
}
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}

.footer-social .social-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* background: #cccccc; */
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.25s ease;
}

.footer-social .social-icon:hover {
  background: var(--theme-color);
  transform: translateY(-3px);
}
.footer hr {
  margin: 10px;
}


/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);

}

.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 697px;
  height: 697px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}

/* Slider Styles */
.popup-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .wsmobileheader img {
    margin-left: 20px;
    max-height: 50px !important;
  }
  .price-name p,
  .price-number p {
    font-size: 1.2125rem;
  }
  .floating-icons {
    top :20%;
  }
  .wsmobileheader.cntr-menu .smllogo {
    margin-top: 15px;
  }
  .footer-social {
    justify-content: center;
  }
  .popup-content {
  width: 400px;
  height: 400px;
  
}
.popup-close {
  width: 30px;
  height: 30px;
}
}