/* luxury.css - Styles specific to Luxury Experiences page */
.luxury-experiences {
  width: 100%;
  overflow-x: auto;
  padding: 1rem 0;
  box-sizing: border-box;
  
}

.luxury-hidden-experiences {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}

.luxury-hidden-experiences.show {
  max-height: 2000px;
  opacity: 1;
}
 
.luxury-experience-details {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  transition: all 0.4s ease;
  text-align: center;
}

.experience-section {
  height: 33rem;
  width: 22rem;
  border-radius: 50px;
}

.experience-details {
  color: whitesmoke;
  font-size: 1.2rem;
  text-align: center;
  margin: 0 30px 0 30px;
  z-index: 2;
}

.experience-details .exp-head {
    width: 18rem;
    color: white;
    text-align: left;
    font-size: 30px;
    padding: 20px;
    top: 15.5rem;
    right: 1.5rem;
    margin: auto;
}

.experience-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}


.luxury-experience.open .luxury-experience-details {
  display: block;
  animation: fadeSlide 0.4s ease-in-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.luxury-experience-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 0 1rem;
  scroll-padding: 1rem;
  justify-content: flex-start;
}

.luxury-experience {
  flex: 0 0 auto;
  width: 80%;
  min-width: 280px;
  scroll-snap-align: start;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Thumbnails beside main image in detail view */
.experience-gallery {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
} 

.experience-details p {
    font-family: 'Poppins';
    color: #f5f5f5c9;
    margin: 15rem 3rem 0 0;
    text-align: left;
    font-size: 15px;
}

.experience-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  position: absolute;
  filter: brightness(0.5);
}

.experience-gallery img.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}


.exp-btn {
  width: 7rem;
  height: 3rem;
  background-color: transparent;
  border: 2px solid white;   /* Correct white border */
  border-radius: 30px;
  margin: 1rem 7rem 0 0;
  padding: 0 10px;            /* Simplified padding */
  display: flex;
  justify-content: center;
  align-items: center;       /* Vertically center the button content */
}

.exp-btn:hover {
    background-color: rgba(18, 170, 204, 0.25);
    text-decoration: none;
}

.view-btn {
  color: white;
  text-decoration: none;
}


.enquire-btn {
    height: 2rem;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: transparent; /* or any other button color */
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1;
    border: none;
}

.luxury-detail-gallery img#detailImg {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 1.5rem;
  flex: 1;
}

.luxury-thumbnail-column {
  position: absolute;
  right: 1rem;
  top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 20px;
}

.luxury-thumbnail-column img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.luxury-thumbnail-column img:hover {
  transform: scale(1.05);
}

.luxury-thumbnail-column img.active-thumb {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.luxury-text-section {
  padding: 2rem 1.5rem;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  font-family: 'Open Sans', sans-serif;
  z-index: 1001;
}

.luxury-detail-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.luxury-detail-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-width: 900px;
  margin: auto;
}

.luxury-detail-text ul {
  list-style: disc;
  margin-left: 1.5rem;
  color: #555;
}

.luxury-hero-image {
    filter: brightness(0.5);
}


/* Encquire Modal */
.enquiry-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.enquiry-content {
  background: #fff;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
}

.close-enquiry {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* 🎞️ Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#booking-form {
  height: 103vh;
  background-color: #009abd09;
  background-size: cover;
  background-position: center;
}



#contact-form {
  width: 70rem;
  gap: 10px;
  padding: 20px;
}

@media (min-width: 768px) {
  /* LUXURY EXPERIENCES */
.luxury-hero-screen {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.luxury-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  animation: zoomInOut 20s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/* Card Enhancements */
.luxury-card {
  transition: transform 0.3s ease;
}
.luxury-card:hover {
  transform: scale(1.03);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.luxury-card p i {
  color: #888;
  margin-right: 5px;
}

.luxury-hero-text {
  position: absolute;
  bottom: 40%;
  padding: 0 1rem;
  width: 100%;
  text-align: center;
  color: white;
}

.luxury-hero-text h1 {
  font-family: 'Playfair Display';
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out forwards;
}

.luxury-hero-text p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out forwards;
}

.luxury-hero-text button {
  background-color: white;
  color: black;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
}

  .luxury-discover {
  height: 46rem;
  background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
}

.exp-head {
  font-size: 2rem;
}

/* Refined section title */
.luxury-discover h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #111;
  position: relative;
}
.luxury-discover h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: whitesmoke;
  opacity: 80%;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.luxury-subtext {
  text-align: center;
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.luxury-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: -60px;
  justify-content: center;
  flex-wrap: wrap;
}

.luxury-tags .tag-btn {
    padding: 0.6rem 1.2rem;
    background-color: #12AACC;
    color: white;
    border: 1px solid #ccc;
    font-weight: 600;
    width: auto;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.luxury-tags .tag-btn:hover {
  background-color: black;
  color: #ddd;
}

.luxury-tags .tag-btn.active {
  background-color: black;
  color: white;
  border-color: black;
}

.luxury-card-scroll {
  display: flex;
  overflow-y: hidden;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.2rem;
  max-height: 530px;
  max-width: 1470px;
  height: 100%;
  width: 100%;
  bottom: -90px;
  justify-content: flex-start;
   overflow-x: auto;
}

.experience-scroll-wrapper {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.experience-section {
  height: 25rem;
  flex: 0 0 auto;
  width: 335px; /* You can adjust this to your design */
  scroll-snap-align: start;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  overflow: hidden;
  margin: 0 0 0 0;
}

/* Optional: hide scroll bar */
.experience-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.experience-scroll-wrapper {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.luxury-card {
  min-width: 350px;
  flex: 0 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.luxury-card h3 {
  padding: 0.5rem 1rem;
  color: #222;

}

.luxury-card p {
  padding: 0.2rem 1rem;
  font-size: 0.9rem;
  color: #777;
}

.slideshow {
  position: relative;
  width: 100%;
  height:300px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
  z-index: 1;
}


.luxury-detail {
  position: fixed;
  inset: 0;
  background: white;
  padding: 1rem;
  z-index: 1000;
  overflow-y: auto;
  top: 70px;
}

.luxury-detail h3 {
  padding-left: 20px;
  padding-top: 20px;
  font-size: 1.5rem;
  color: white;
}

.luxury-detail p {
  padding-left: 20px;
}

#detailDesc {
  margin-top: -40px;
  margin-left: 10px;
}

.luxury-detail img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.luxury-detail-info {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 20px;
}

.luxury-detail-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20rem;
  font-size: 1.2rem;
  padding: 20px;
  color: #000;
}

.luxury-detail-price strong {
  margin-right: 45rem;
}

.close-detail {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 20px;
}

  .luxury-experience-grid {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
  }

  .luxury-experience {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 300px;
  }

  .luxury-detail h3 {
    padding-left: 20px;
    padding-top: 20px;
    font-size: 3rem;
    color: white;
}

/* Detail Info Boxes */
.luxury-detail-info {
  display: flex;
  justify-content: space-around;
  gap: 77rem;
  padding: 20px;
}
.info-box {
  text-align: center;
  background: #f4f4f4;
  padding: 0.8rem;
  border-radius: 10px;
  flex: 1;
}
.info-box strong {
  display: block;
  font-size: 1.2rem;
  color: #000;
}
.info-box span {
  font-size: 0.9rem;
  color: #666;
}

.luxury-pill {
  font-size: 1.2rem;
}

.luxury-detail p {
  font-size: 1.2rem;
  margin-left: 25px;
}

.luxury-detail-gallery img#detailImg {
  height: 500px;
}

.luxury-detail-text p {
  text-align: left;
  width: 100%;
  max-width: 1500px;
  margin: auto;
}

/* Price Panel Enhancements */
.luxury-detail-price {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin: 25rem 1rem 1rem;
  font-size: 1.2rem;
  color: #000;
}
.luxury-action-btn {
  background: black;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 5px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

.dropdown-section {
  margin-top: 20px;
  padding-bottom: 200px;
}

.dropdown-toggle:hover {
  background-color: transparent;
}

.dropdown-content {
  display: none;
  padding: 10px 20px;
  background-color: #fff;
  border-left: 2px solid #ddd;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}

.dropdown-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.dropdown-content p,
.dropdown-content li {
  font-size: 17px;
  line-height: 1.6;
}

 .enquiry-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }

  .enquiry-content input {
    height: 60px;
    width: 440px;
  }

  .enquiry-content textarea {
    height: 90px;
    width: 440px;
  }

  .enquiry-content button {
    width: 200px;
    height: 40px;
    border-radius: 20px;
    align-self: center;
  }

}

@media (min-width: 1024px) {
.experience-section {
  height: 30rem;
  flex: 0 0 auto;
  width: 335px; /* You can adjust this to your design */
  scroll-snap-align: start;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  overflow: hidden;
  margin: 0 0 3rem 0;
}

.experience-details {
    height: 33rem;
}

}


@media (min-width: 1440px) {
.luxury-discover {
    height: 48rem;
}

.luxury-card-scroll {
    max-height: 565px;
}
    
    .experience-section {
  height: 32rem;
  flex: 0 0 auto;
  width: 335px; /* You can adjust this to your design */
  scroll-snap-align: start;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  overflow: hidden;
  margin: 0 0 3rem 0;
}
}


/* === Enhanced Styles Based on UI Mockup === */



/* Responsive Enhancements */
@media (max-width: 768px) {
  /* LUXURY EXPERIENCES */
.luxury-hero-screen {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.luxury-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 2s ease-in-out forwards;
}

.luxury-hero-text {
  position: absolute;
  bottom: 20%;
  padding: 0 1rem;
  width: 100%;
  text-align: center;
  color: white;
}

.luxury-hero-text h1 {
  font-family: 'Playfair Display';
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 2s ease-out forwards;
}

.luxury-hero-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  animation: fadeIn 2s ease-in-out forwards;
}

.luxury-hero-text button {
  background-color: white;
  color: black;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  animation: fadeIn 3s ease-in-out forwards;
}
  
  .luxury-discover {
  background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 2rem 1rem;
  margin: 0 0 0 0;
}

/* Refined section title */
.luxury-discover h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #111;
  position: relative;
}
.luxury-discover h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: whitesmoke;
  opacity: 80%;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.luxury-subtext {
  text-align: center;
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.luxury-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.luxury-tags .tag-btn {
  width: 6rem;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1rem;
  color: white;
  background-color: #12AACC;
  border: 1px solid transparent;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.luxury-tags .tag-btn:hover {
  background-color: #ddd;
  color: black;
}

.luxury-tags .tag-btn.active {
  background-color: black;
  color: white;
  border-color: black;
}

.luxury-card-scroll {
  height: 25rem;
  display: flex;
  overflow-y: hidden;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.2rem;
  margin: 0 0 5rem 0;
}

.luxury-card {
  height: 25rem;
  min-width: 235px;
  flex: 0 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.luxury-card h3 {
  padding: 0.5rem 1rem;
  color: #222;

}

.luxury-card p {
  padding: 0.2rem 1rem;
  font-size: 0.9rem;
  color: #777;
}

.experience-details {
    height: 38rem;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
  z-index: 1;
}


.luxury-detail {
  position: fixed;
  inset: 0;
  background: white;
  padding: 1rem;
  z-index: 1000;
  overflow-y: auto;
  top: 70px;
}

.luxury-detail h3 {
  padding-left: 20px;
  padding-top: 20px;
  font-size: 1.5rem;
  color: white;
}

.luxury-detail p {
  padding-left: 2px;
}

#detailDesc {
  margin-top: -50px;
}

.luxury-detail img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.luxury-detail-info {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 20px;
}

.luxury-detail-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10rem;
  font-size: 1.2rem;
  padding: 20px;
  color: #000;
}


.close-detail {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 20px;
}

  .luxury-detail-info {
    flex-direction: column;
    gap: 1rem;
  }

  /* Detail Info Boxes */
.luxury-detail-info {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  padding: 20px;
}
.info-box {
  text-align: center;
  background: #f4f4f4;
  padding: 0.8rem;
  border-radius: 10px;
  flex: 1;
}
.info-box strong {
  display: block;
  font-size: 1.2rem;
  color: #000;
}
.info-box span {
  font-size: 0.9rem;
  color: #666;
}

/* Price Panel Enhancements */
.luxury-detail-price {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin: 3rem 1rem 1rem;
  font-size: 1.2rem;
  color: #000;
}
.luxury-action-btn {
  background: black;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sticky Bottom Booking CTA for mobile UX */
.luxury-detail-price {
  position: relative;
  margin-top: 320px;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  z-index: 1002;
}

.luxury-detail-price strong {
  margin-right: 30rem;
}


.dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 5px;
  border-radius: 8px;
  font-weight: bold;
}

.dropdown-section {
  margin-top: 20px;
  padding-bottom: 200px;
}

.dropdown-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-content {
  display: none;
  padding: 10px 20px;
  background-color: #fff;
  border-left: 2px solid #ddd;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}

.dropdown-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.dropdown-content p,
.dropdown-content li {
  font-size: 15px;
  line-height: 1.6;
}

 .enquiry-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }

  .enquiry-content input {
    height: 50px;
  }

  .enquiry-content textarea {
    height: 50px;
  }

  .enquiry-content button {
    width: 200px;
    height: 40px;
    border-radius: 20px;
    align-self: center;
  }

}


/* === Mobile-First Extra Enhancements === */
/* Better touch target for close button */
.close-detail {
  padding: 1rem;
  font-size: 2rem;
}



/* Hover effect only on non-touch devices */
@media (hover: hover) {
  .luxury-card:hover {
    transform: scale(1.03);
  }

.luxury-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
}

@media (max-width: 425px) {
   .luxury-hero-screen {
  position: relative;
  height: 40vh;
  overflow: hidden;
}
    
  .luxury-text-section {
    height: fit-content;
    animation: fadeInUp 1s ease-out forwards;
  }

  #detailDesc  {
    margin-top: -60px;
    margin-left: 20px;
  }

  .luxury-detail-price {
    margin-top: 280px;
  }

  .luxury-detail-price strong {
    margin-right: 120px;
    padding: 10px;
  }

.luxury-discover {
  display: flex;
  flex-direction: column;
  height: fit-content;
  overflow: hidden;
  margin-top: 0;
  padding-top: 1rem;
}

.luxury-discover > h2 {
  position: sticky;
  top: 0;
  background: #f8f9fb;
  padding: 0 1rem 0 1rem;
  margin-bottom: 0;
  z-index: 10;
  font-size: 2rem;
  border-bottom: 1px solid #e7e8e991;
}
  

.luxury-tags {
  width: 25rem;
  position: sticky;
  top: 3.5rem; /* adjust based on actual heading height */
  z-index: 10;
  background: #f8f9fb;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #f8f9fb;
}

.luxury-card-scroll {
  flex: 1;
  overflow-y: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 1rem 0 1rem;
  justify-content: flex-start;
}

.experience-section {
   width: 23rem;
   height: 25rem;
   margin: 0 0 2rem 0;
}

.experience-scroll-wrapper {
    gap: 2rem;
}

.experience-details {
    height: 40rem;
}

  .luxury-card {
    min-width: 370px;
  }

  .slideshow {
    height: 250px;
  }

  .enquiry-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }

  .enquiry-content input {
    height: 50px;
  }

  .enquiry-content textarea {
    height: 50px;
  }

  .enquiry-content button {
    width: 200px;
    height: 40px;
    border-radius: 20px;
    align-self: center;
  }

  /* 🎞️ Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

}




@media (max-width: 375px) {

    .luxury-text-section {
    height: fit-content;
  }

  #detailDesc  {
    margin-top: -60px;
    margin-left: 20px;
  }

  .luxury-detail-price {
    margin-top: 280px;
  }

  .luxury-detail-price strong {
    margin: 0px 115px 0px -20px;
    padding: 0px 0 0 0;
    font-size: 15px;
    animation: fadeIn 2s ease-in-out forwards;
  }

  .luxury-detail-text h4 {
    font-size: 1.7rem;
  }

  .luxury-card {
    min-width: 30px;
    min-height: 300px;
  }

  .luxury-card-scroll {
    width: 370px;
    height: 425px;
    margin: 5px 0 0 0px;
    padding-right: 15px;
  }
  
  .experience-section {
      width: 22rem;
  }

  .slideshow {
    height: 250px;
  }

  .enquiry-content {
    height: fit-content;
    margin-top: 50px;
  }

  .enquiry-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .enquiry-content input {
    height: 30px;
  }

  .enquiry-content textarea {
    height: 50px;
  }

  .enquiry-content button {
    width: 200px;
    height: 40px;
    border-radius: 20px;
    align-self: center;
  }
}

@media (max-width: 320px) {
    .experience-section {
        width: 20rem;
    }
}
    


