@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background-color: #0c0c0e; /* Set global dark canvas for luxury brand */
}

.hero-container {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85)), url('../images/blue_vista_hero_day.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-container.subpage-header {
  background-image: none !important;
  background-color: #0c0c0e !important;
  border-bottom: 1px solid rgba(216, 195, 165, 0.25) !important;
}

/* Grid/flex columns that hold an image default to a min-width based on their
   content, which can push them (and the page) wider than the screen on
   narrow viewports. Zeroing it out lets them shrink properly instead. */
.about-images,
.about-content,
.dining-left,
.dining-right,
.grid-item,
.discover-card,
.card-img-wrapper,
.amenities-cards-column,
.amenities-inquiry-column,
.rooms-list-column,
.reservation-sidebar,
.support-pillars > * {
  min-width: 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-right {
  display: flex;
  gap: 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 210;
}

.hamburger .line {
  width: 24px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.hamburger .line:nth-child(2) {
  width: 18px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav-links span {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.stars {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1;
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.nav-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(216, 195, 165, 0.6);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(216, 195, 165, 0.3);
  pointer-events: none;
}

.nav-btn:hover {
  background: rgba(216, 195, 165, 0.1);
}

/* Navigation Dropdown Container */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.nav-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #111111;
  min-width: 180px;
  box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.6);
  border: 1px solid rgba(216, 195, 165, 0.3);
  z-index: 1000;
  border-radius: 2px;
  margin-top: 5px;
}

/* Links inside the dropdown */
.nav-dropdown-content a {
  color: #c0c0c0;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

/* Change color of dropdown links on hover */
.nav-dropdown-content a:hover {
  background-color: rgba(216, 195, 165, 0.1);
  color: #d8c3a5;
}

/* Show the dropdown menu on hover */
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 6%;
  padding-bottom: 6rem;
  width: 100%;
  position: relative;
}

.welcome-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #d8c3a5;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border-left: 2px solid #d8c3a5;
  padding-left: 1rem;
}

.main-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 900px;
}

.booking-bar {
  display: flex;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(216, 195, 165, 0.2);
  border-left: 1px solid rgba(216, 195, 165, 0.2);
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 4px;
}

.booking-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 2.5rem;
  position: relative;
}

.booking-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(216, 195, 165, 0.2);
}

.booking-item .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #a0a0a0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.booking-item .value {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.check-avail-container {
  padding: 0;
  display: flex;
}

.check-avail-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  padding: 0 3rem;
  cursor: pointer;
  height: 100%;
  transition: background 0.3s ease;
}

.check-avail-btn:hover {
  background: rgba(216, 195, 165, 0.1);
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12rem 5%;
  background-color: #0c0c0e; /* Pure luxury dark background */
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(216, 195, 165, 0.1);
}

.about-images {
  grid-column: 2; /* Force images to the right side */
  position: relative;
  height: 800px;
  width: 100%;
}

.img-main {
  width: 85%;
  height: 90%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border: 1px solid rgba(216, 195, 165, 0.15); /* Delicate frame */
  background-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.img-overlay {
  width: 55%;
  height: 60%;
  object-fit: cover;
  position: absolute;
  bottom: -5%;
  left: -15%; /* Pull out to overlap text */
  z-index: 2;
  border: 1px solid rgba(216, 195, 165, 0.25);
  padding: 8px;
  background-color: #141416;
  box-shadow: 15px -15px 35px rgba(0, 0, 0, 0.7);
}

.about-content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
  padding-left: 5%;
  padding-right: 15%;
  z-index: 3;
}

.subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #d8c3a5;
  margin-bottom: 1.5rem;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; /* Massive heading */
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.about-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
}

.start-exploring-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(216, 195, 165, 0.6);
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.start-exploring-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(216, 195, 165, 0.3);
  pointer-events: none;
}

.start-exploring-btn:hover {
  background: rgba(216, 195, 165, 0.1);
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(216, 195, 165, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.scroll-top-btn:hover {
  background: rgba(216, 195, 165, 0.1);
}

/* Dining Section */
.dining-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #0c0c0e;
  border-bottom: 1px solid rgba(216, 195, 165, 0.1);
  position: relative;
  align-items: stretch;
}

.dining-left {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
}

.dining-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-right: 1px solid rgba(216, 195, 165, 0.2);
}

.dining-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  padding: 0 10%;
  position: relative;
}

.dining-content {
  max-width: 600px;
}

.dining-heading {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #ffffff;
}

.dining-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 3rem;
}

.dining-food-img {
  position: absolute;
  bottom: -5%;
  left: -32%;
  width: 40%;
  max-width: 400px;
  object-fit: cover;
  border: 1px solid rgba(216, 195, 165, 0.25);
  padding: 8px;
  background-color: #141416;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  z-index: 5;
}

/* Services Section */
.services-section {
  display: flex;
  background-color: #0c0c0e; /* Pure luxury dark background */
  padding: 15rem 10%;
  border-bottom: 1px solid rgba(216, 195, 165, 0.1);
}

.services-content {
  flex: 1;
  max-width: 900px;
}

.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.services-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: #a0a0a0;
}

.services-right {
  flex: 1;
}

/* Facilities Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background-color: #0c0c0e;
  border-bottom: 1px solid rgba(216, 195, 165, 0.15);
  margin-bottom: 10rem;
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-item.img-item {
  overflow: hidden;
  position: relative;
  height: 500px;
}

.grid-item.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.grid-item.img-item:hover img {
  transform: scale(1.06);
}

.grid-item.text-item {
  padding: 6rem 12%;
  background-color: #141416; /* Clean charcoal matted background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(216, 195, 165, 0.05);
}

.grid-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.grid-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
}

/* Hospitality Section */
.hospitality-section {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('../images/blue_vista_actual.jpg');
  background-size: cover;
  background-position: center;
  padding: 10rem 0 15rem 0;
}

.hospitality-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hospitality-content {
  text-align: left;
  max-width: 800px;
}

.hospitality-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.5rem;
}

/* Testimonial Section */
.testimonial-section {
  width: 100%;
  margin-top: -10rem; /* Overlaps the bottom of hospitality section */
  position: relative;
  z-index: 10;
  display: flex;
  padding-left: max(5%, calc((100% - 1200px) / 2));
  padding-bottom: 6rem;
}

.testimonial-left {
  width: calc(min(90%, 1200px) / 2); /* Half of container width */
  flex-shrink: 0;
}

.testimonial-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(216, 195, 165, 0.25);
  border-right: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.testimonial-right {
  flex-grow: 1;
  background-color: #141416; /* Charcoal luxury dark card */
  border: 1px solid rgba(216, 195, 165, 0.25);
  border-left: none;
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.testimonial-right-content {
  max-width: 500px;
}

.testimonial-stars {
  display: flex;
  margin-bottom: 2rem;
  color: #d8c3a5; /* Pure luxury gold */
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  margin-bottom: 3rem;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.author-source {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #d8c3a5; /* Gold brand source reference */
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background-color: #fff;
}

/* Discover Section */
.discover-section {
  padding: 10rem 10%;
  background-color: #0c0c0e; /* Pure luxury dark background */
  border-top: 1px solid rgba(216, 195, 165, 0.1);
  width: 100%;
}

.discover-header {
  text-align: center;
  margin-bottom: 6rem;
}

.discover-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.discover-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.discover-card {
  position: relative;
  background-color: transparent; /* Pure minimalist background */
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  overflow: hidden;
}

.discover-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: #d8c3a5;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.discover-card:hover::after {
  width: 100%;
}

.discover-card.offset-card {
  margin-top: 6rem; /* Increase offset for more asymmetry */
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: #d8c3a5; /* Gold brand color */
  color: #0c0c0e;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  letter-spacing: 0.1em;
  z-index: 2;
}

.card-img-wrapper {
  width: 100%;
  height: 350px; /* Taller editorial images */
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.discover-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

.card-content {
  padding: 2.5rem 0 1rem 0; /* Minimalist: no side padding, sits flush with image edge */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; /* Larger heading */
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.card-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.card-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 195, 165, 0.4);
  padding-bottom: 0.3rem;
  display: inline-block;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #d8c3a5;
  border-bottom-color: #d8c3a5;
}

/* Footer Section */
.footer-section {
  background-color: #050505;
  padding: 6rem 5% 2rem 5%;
  border-top: 1px solid rgba(216, 195, 165, 0.2);
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-desc {
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #d8c3a5;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #d8c3a5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-detail span {
  color: #d8c3a5;
  margin-right: 0.5rem;
  font-weight: 600;
}

.footer-inquiry p {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-inquiry-form .form-group input,
.footer-inquiry-form .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 195, 165, 0.2);
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-inquiry-form .form-group input:focus,
.footer-inquiry-form .form-group textarea:focus {
  border-color: #d8c3a5;
}

.footer-inquiry-form .submit-inquiry-btn {
  background: #d8c3a5;
  color: #0c0c0e;
  border: none;
  padding: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 0.5rem;
}

.footer-inquiry-form .submit-inquiry-btn:hover {
  background: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #666;
  font-size: 0.8rem;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #d8c3a5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .main-heading {
    font-size: 3.5rem;
  }
  .booking-bar {
    flex-direction: column;
  }
  .booking-item:not(:last-child)::after {
    display: none;
  }
  .booking-item {
    border-bottom: 1px solid rgba(216, 195, 165, 0.4);
    justify-content: space-between;
  }
  .check-avail-container {
    padding: 1.25rem;
    justify-content: center;
  }

  .about-section {
    display: flex;
    flex-direction: column;
    padding: 6rem 5%;
  }
  .about-images {
    width: 100%;
    height: 500px;
  }
  .img-overlay {
    display: none;
  }
  .about-content {
    max-width: 100%;
  }

  .dining-section {
    display: flex;
    flex-direction: column;
  }
  .dining-content {
    padding: 4rem 5%;
    max-width: 100%;
  }
  .dining-left {
    height: 400px;
  }
  .dining-food-img {
    display: none;
  }

  .services-section {
    flex-direction: column;
    padding: 6rem 5%;
  }
  .services-content {
    max-width: 100%;
  }
  .services-right {
    display: none;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    margin: 0 5% 6rem 5%;
  }

  /* Make sure images appear above text on mobile for Row 2 */
  .facilities-grid > .grid-item:nth-child(3) {
    order: 4;
  }
  .facilities-grid > .grid-item:nth-child(4) {
    order: 3;
  }

  .hospitality-heading {
    font-size: 2.8rem;
  }

  .testimonial-section {
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  .testimonial-left {
    width: 100%;
    height: 400px;
  }

  .testimonial-right {
    padding: 3rem;
  }

  .discover-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .discover-card.offset-card {
    margin-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar, .nav-right span {
    display: none;
  }
  .navbar {
    justify-content: space-between;
  }
  .logo-container {
    flex: unset;
  }
  .nav-btn {
    display: none;
  }
  
  .about-heading {
    font-size: 2.5rem;
  }
  .about-images {
    height: 350px;
  }
  
  .dining-heading, .services-heading, .hospitality-heading, .discover-heading {
    font-size: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   BOOKING FLOW & SEARCH RESULTS STYLES
   ========================================================================== */

/* Booking Input Elements in Hero Section */
.booking-input-field {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  width: 100%;
  padding: 0.25rem 0;
}
.booking-input-field.select-field {
  appearance: none;
  -webkit-appearance: none;
}
.booking-input-field::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.7;
}

/* Availability Page Layout */
.availability-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  min-height: 100vh;
}

.search-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2.5rem;
  border-radius: 4px;
  margin-bottom: 3.5rem;
  backdrop-filter: blur(10px);
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.summary-item.border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2.5rem;
}

.summary-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #a0a0a0;
  font-weight: 500;
}

.summary-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d8c3a5;
  letter-spacing: 0.05em;
}

.edit-search-btn {
  background: transparent;
  border: 1px solid #d8c3a5;
  color: #d8c3a5;
  padding: 0.75rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.edit-search-btn:hover {
  background: #d8c3a5;
  color: #050505;
}

/* Availability Grid/Layout */
.availability-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.rooms-list-column {
  display: flex;
  flex-direction: column;
}

.rooms-list-column .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.rooms-list-column .section-subtitle {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
}

.rooms-search-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.room-search-card {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-search-card:hover {
  border-color: rgba(216, 195, 165, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.room-search-card.selected {
  border-color: #d8c3a5;
  background: rgba(216, 195, 165, 0.03);
}

.room-card-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #d8c3a5;
  color: #050505;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  z-index: 2;
  text-transform: uppercase;
}

.room-card-img {
  width: 40%;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-search-card:hover .room-card-img img {
  transform: scale(1.05);
}

.room-card-body {
  width: 60%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.room-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.room-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.room-card-price {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.room-card-price .rate {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d8c3a5;
}

.room-card-price .per-night {
  font-size: 0.65rem;
  color: #a0a0a0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: #c0c0c0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}

.room-card-specs span strong {
  color: #d8c3a5;
  font-weight: 500;
}

.room-card-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-pill {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  color: #c0c0c0;
}

.room-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.select-room-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.85rem 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.select-room-btn:hover {
  border-color: #d8c3a5;
  color: #d8c3a5;
}

.select-room-btn.active {
  background: #d8c3a5;
  border-color: #d8c3a5;
  color: #050505;
}

/* Sticky Reservation Sidebar */
.reservation-sidebar {
  position: sticky;
  top: 2rem;
}

.sticky-sidebar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
}

.sticky-sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

.res-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.res-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.res-row .label {
  color: #a0a0a0;
  font-weight: 500;
}

.res-row .val {
  color: #fff;
  font-weight: 600;
}

.selected-room-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #d8c3a5;
  margin-bottom: 0.35rem;
}

.selected-room-info .base-price {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.invoice-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #c0c0c0;
}

.invoice-row.grand-total {
  font-size: 1rem;
  color: #fff;
}

.invoice-row .price-bold {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d8c3a5;
}

.proceed-checkout-btn {
  width: 100%;
  background: #d8c3a5;
  color: #050505;
  border: none;
  padding: 1.15rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  margin-top: 2rem;
}

.proceed-checkout-btn:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(216, 195, 165, 0.15);
}

.no-room-selected p {
  font-size: 0.8rem;
  color: #a0a0a0;
  line-height: 1.6;
  text-align: center;
}

/* ==========================================================================
   CHECKOUT PAGE & FORM STYLES
   ========================================================================== */
.checkout-page {
  background: #1a1a1a;
  min-height: 100vh;
  padding: 5rem 2rem;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-header {
  margin-bottom: 3.5rem;
}

.checkout-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.checkout-header p {
  font-size: 0.85rem;
  color: #a0a0a0;
}

.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.checkout-form-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 3rem;
}

.lux-checkout-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #d8c3a5;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #a0a0a0;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 1rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d8c3a5;
  background: rgba(255, 255, 255, 0.05);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.checkout-back-btn {
  background: transparent;
  border: none;
  color: #a0a0a0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-back-btn:hover {
  color: #fff;
}

.checkout-confirm-btn {
  background: #d8c3a5;
  color: #050505;
  border: none;
  padding: 1.15rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.checkout-confirm-btn:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(216, 195, 165, 0.2);
}

.checkout-summary-panel {
  position: sticky;
  top: 2rem;
}

.checkout-summary-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}

.checkout-summary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.checkout-room-preview {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.checkout-room-preview img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
}

.preview-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.preview-info p {
  font-size: 0.7rem;
  color: #a0a0a0;
}

.checkout-invoice-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkout-invoice-rows .invoice-row strong {
  color: #fff;
  font-weight: 600;
}

.checkout-invoice-rows .total-row {
  margin-top: 0.5rem;
}

.checkout-invoice-rows .price-primary {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d8c3a5;
}

/* ==========================================================================
   BOOKING SUCCESS TICKETING RECEIPT STYLES
   ========================================================================== */
.booking-success-page {
  background: #0d0d0d;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
}

.success-card {
  max-width: 650px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 4rem;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(216, 195, 165, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  border: 1px solid rgba(216, 195, 165, 0.2);
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.success-subtitle {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

/* Luxury Receipt Design */
.success-ticket {
  background: #141414;
  border: 1px solid rgba(216, 195, 165, 0.15);
  border-radius: 4px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  text-align: left;
}

.success-ticket::before,
.success-ticket::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0d0d0d;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.success-ticket::before {
  left: -11px;
  border-right: 1px solid rgba(216, 195, 165, 0.15);
}

.success-ticket::after {
  right: -11px;
  border-left: 1px solid rgba(216, 195, 165, 0.15);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(216, 195, 165, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.ticket-header h3 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #c0c0c0;
}

.ticket-header .ref-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d8c3a5;
  letter-spacing: 0.1em;
}

.ticket-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.ticket-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticket-col .label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: #808080;
  font-weight: 600;
  text-transform: uppercase;
}

.ticket-col .val {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.ticket-footer {
  border-top: 1px dashed rgba(216, 195, 165, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-footer span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #a0a0a0;
  font-weight: 500;
}

.ticket-footer .price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d8c3a5;
}

.success-instructions {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
  margin-bottom: 3.5rem;
}

.success-instructions h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #d8c3a5;
  margin-bottom: 1rem;
}

.success-instructions ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.success-instructions ul li {
  font-size: 0.8rem;
  color: #a0a0a0;
  line-height: 1.6;
  position: relative;
  padding-left: 1.25rem;
}

.success-instructions ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d8c3a5;
  font-size: 1.2rem;
  line-height: 1;
}

.return-home-btn {
  background: #d8c3a5;
  color: #050505;
  border: none;
  padding: 1.25rem 3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.return-home-btn:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(216, 195, 165, 0.25);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .availability-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .reservation-sidebar {
    position: static;
  }
  .checkout-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .checkout-summary-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .search-summary-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem;
  }
  .summary-item.border-left {
    border-left: none;
    padding-left: 0;
  }
  .room-search-card {
    flex-direction: column;
  }
  .room-card-img {
    width: 100%;
    height: 220px;
    min-height: auto;
  }
  .room-card-body {
    width: 100%;
    padding: 2rem;
  }
  .form-row-double {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkout-form-panel {
    padding: 2rem;
  }
  .success-card {
    padding: 2.5rem;
  }
  .success-ticket {
    padding: 1.5rem;
  }
  .ticket-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   ACTIVE TAB & SUBPAGE COMMON STYLES
   ========================================================================== */
.nav-links span {
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links span.active-tab {
  color: #d8c3a5 !important;
}

.nav-links span.active-tab::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d8c3a5;
}

.subpage-hero {
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(216, 195, 165, 0.15);
}

.subpage-hero .hero-inner {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
}

.subpage-hero .hero-inner .subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #d8c3a5;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subpage-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.subpage-hero .hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cccccc;
}

.glass-morphic {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(15px);
  border-radius: 4px;
}

/* ==========================================================================
   DEDICATED DINING PAGE (VISTRA BISTRO)
   ========================================================================== */
.dining-page {
  background-color: #1a1a1a;
  color: #fff;
  min-height: 100vh;
}

.dining-main-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.menu-selection-section {
  display: flex;
  flex-direction: column;
}

.menu-header {
  margin-bottom: 3.5rem;
}

.menu-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.menu-header p {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
}

.menu-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1rem;
}

.menu-tabs .tab-btn {
  background: transparent;
  border: none;
  color: #a0a0a0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.menu-tabs .tab-btn:hover {
  color: #fff;
}

.menu-tabs .tab-btn.active {
  color: #d8c3a5;
}

.menu-tabs .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d8c3a5;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-card {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-card:last-child {
  border-bottom: none;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.item-title-row h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
}

.diet-indicator {
  font-size: 0.55rem;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  font-weight: bold;
}

.diet-indicator.veg {
  color: #4caf50;
  border-color: #4caf50;
}

.diet-indicator.non-veg {
  color: #f44336;
  border-color: #f44336;
  font-size: 0.45rem;
}

.menu-badge {
  font-size: 0.55rem;
  background: rgba(216, 195, 165, 0.1);
  border: 1px solid rgba(216, 195, 165, 0.3);
  color: #d8c3a5;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.item-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #d8c3a5;
}

.item-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #a0a0a0;
  max-width: 80%;
}

/* Sidebar Forms & Success Alerts */
.table-reservation-section {
  position: sticky;
  top: 2rem;
}

.sidebar-booking-form {
  display: flex;
  flex-direction: column;
}

.booking-complete-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.booking-complete-alert .success-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(216, 195, 165, 0.1);
  color: #d8c3a5;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 195, 165, 0.3);
  margin-bottom: 1.25rem;
}

.booking-complete-alert h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
}

/* ==========================================================================
   DEDICATED AMENITIES PAGE (SPA, GYM, MEETINGS)
   ========================================================================== */
.amenities-page {
  background-color: #1a1a1a;
  color: #fff;
  min-height: 100vh;
}

.amenities-layout-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.amenities-cards-column {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.amenity-detail-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.amenity-detail-card:hover {
  border-color: rgba(216, 195, 165, 0.2);
  transform: translateY(-2px);
}

.amenity-card-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.amenity-card-content {
  padding: 3rem;
}

.amenity-card-content .card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #d8c3a5;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.amenity-card-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.card-lead {
  font-size: 0.95rem;
  color: #d8c3a5;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.card-body-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #a0a0a0;
  margin-bottom: 2rem;
}

.amenity-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #c0c0c0;
}

.amenity-specs strong {
  color: #d8c3a5;
}

.amenities-inquiry-column {
  position: sticky;
  top: 2rem;
}

/* Responsive Overrides for Dining & Amenities */
@media (max-width: 1024px) {
  .dining-main-layout, .amenities-layout-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .table-reservation-section, .amenities-inquiry-column {
    position: static;
  }
}

@media (max-width: 768px) {
  .subpage-title {
    font-size: 2.5rem;
  }
  .subpage-hero {
    height: 350px;
  }
  .menu-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .menu-tabs .tab-btn {
    padding: 0.5rem 1rem;
  }
  .item-title-row h4 {
    font-size: 1.1rem;
  }
  .item-desc {
    max-width: 100%;
  }
  .amenity-card-hero-img {
    height: 250px;
  }
  .amenity-card-content {
    padding: 2rem;
  }
}

/* Travel & Tours Support Hub Pages Styles */
.support-page {
  padding: 0;
}

.support-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.support-pillar-card {
  background: rgba(30, 30, 30, 0.65);
  border: 1px solid rgba(216, 195, 165, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3.5rem 3rem;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.support-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d8c3a5, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.support-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 195, 165, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.support-pillar-card:hover::before {
  opacity: 1;
}

.support-pillar-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 1rem 0 1.5rem 0;
  color: #fff;
  letter-spacing: 0.05em;
}

.support-pillar-card .pillar-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d8c3a5;
  margin-bottom: 2rem;
  font-weight: 500;
}

.support-pillar-card .pillar-body-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.support-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-benefits-list li {
  font-size: 0.85rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-benefits-list li svg {
  color: #d8c3a5;
  flex-shrink: 0;
}

.support-pillar-card .pillar-footer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #a0a0a0;
  display: flex;
  justify-content: space-between;
}

/* Excursions & Experience Showcase */
.gear-showcase-section {
  background-color: #111;
  padding: 6rem 10%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-title-area {
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.showcase-title-area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.showcase-title-area p {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.6;
}

.gear-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gear-logo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gear-logo-card:hover {
  background: rgba(216, 195, 165, 0.05);
  border-color: rgba(216, 195, 165, 0.3);
  transform: translateY(-4px);
}

.gear-logo-card .logo-symbol {
  font-size: 2.5rem;
  color: #d8c3a5;
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gear-logo-card:hover .logo-symbol {
  opacity: 1;
}

.gear-logo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #fff;
}

.gear-logo-card span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #a0a0a0;
  text-transform: uppercase;
}

/* Call To Action Banner */
.support-cta-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9)), url('../images/room_double.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(216, 195, 165, 0.2);
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.cta-banner-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 3rem;
}

/* Support Application / Request Page */
.support-apply-page {
  padding: 4rem 2rem 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.apply-header-area {
  text-align: center;
  margin-bottom: 4rem;
}

.apply-header-area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.apply-header-area p {
  font-size: 0.9rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto;
}

.support-form-card {
  background: rgba(25, 25, 25, 0.8);
  border: 1px solid rgba(216, 195, 165, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 4rem;
  border-radius: 4px;
  position: relative;
}

.support-form-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(216, 195, 165, 0.15);
  pointer-events: none;
}

/* Support Success Ticket */
.support-success-container {
  max-width: 650px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.support-success-card {
  background: rgba(25, 25, 25, 0.9);
  border: 1px solid rgba(216, 195, 165, 0.5);
  padding: 4rem 3rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.support-success-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(216, 195, 165, 0.15);
  pointer-events: none;
}

.success-ticket-receipt {
  background-color: #111;
  border: 1px solid rgba(216, 195, 165, 0.25);
  margin: 2.5rem 0;
  text-align: left;
}

.receipt-header {
  background: rgba(216, 195, 165, 0.08);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted rgba(216, 195, 165, 0.3);
}

.receipt-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #d8c3a5;
}

.receipt-header .ticket-id {
  font-family: monospace;
  font-size: 0.85rem;
  color: #fff;
  font-weight: bold;
}

.receipt-details-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.receipt-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.receipt-item .label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
}

.receipt-item .val {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
}

.receipt-item.full-width {
  grid-column: span 2;
}

.receipt-footer-notes {
  border-top: 1px dotted rgba(216, 195, 165, 0.3);
  padding: 1.25rem 2rem;
  font-size: 0.75rem;
  color: #a0a0a0;
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
}

/* Responsiveness overrides for support hub */
@media (max-width: 1024px) {
  .support-pillars {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .gear-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gear-logo-grid {
    grid-template-columns: 1fr;
  }
  .support-form-card {
    padding: 2.5rem 1.5rem;
  }
  .receipt-details-grid {
    grid-template-columns: 1fr;
  }
  .receipt-item.full-width {
    grid-column: span 1;
  }
}


/* =========================================================================
   Mobile menu, logo sizing, image-overflow safety net, and animation
   ------------------------------------------------------------------------
   Everything below was added to fix: the header title wrapping to two
   lines on mobile, the mobile menu not opening, and accent images
   overflowing the viewport edge — plus the requested extra motion/polish.
   Nothing above this line was restyled; these are additive/targeted only.
   ========================================================================= */

/* The "pull out to overlap text" accent images already hide at 1024px;
   extend that a little further so wide tablets (landscape iPads etc.,
   ~1024-1200px) never show them overflowing either. */
@media (max-width: 1200px) {
  .img-overlay,
  .dining-food-img {
    display: none;
  }
}

@media (max-width: 768px) {
  /* --- Logo/title: guarantee "THE BLUE VISTA" always stays on one line --- */
  .navbar {
    padding: 1.1rem 1.25rem;
  }

  .nav-left,
  .nav-right {
    flex: 0 0 auto;
  }

  .logo-container {
    flex: 1;
    min-width: 0;
  }

  .logo-text {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .stars {
    font-size: 0.45rem;
  }

  /* --- Mobile nav: a real slide-in panel the hamburger opens/closes --- */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: min(80vw, 300px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 6.5rem 2rem 2rem;
    background: #0c0c0e;
    border-right: 1px solid rgba(216, 195, 165, 0.2);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
    font-size: 0.95rem;
    overflow-y: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-between;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 190;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  /* Hamburger morphs into an X while the panel is open */
  body.nav-open .hamburger .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .hamburger .line:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .hamburger .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 769px) {
  .nav-backdrop {
    display: none !important;
  }
}

/* --- Scroll-reveal entrance for section content (site-wide) ---
   Defaults to fully visible so content never depends on JavaScript running;
   only becomes an animated reveal once site.js confirms it can watch for
   scroll position (adds html.reveal-ready). */
.reveal {
  opacity: 1;
  transform: none;
}

html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll-to-top button only appears once the visitor has scrolled --- */
.scroll-top-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Fallback ("page not found") page --- */
.fallback-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.fallback-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.fallback-content p {
  color: #a0a0a0;
  margin-bottom: 2rem;
}

/* --- Respect visitors who have asked their device for reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .nav-links,
  .hamburger .line,
  .scroll-top-btn {
    transition: none;
  }
}

/* A few cards (room, amenity, support-pillar, gear-logo) already had their
   own hover lift before this update. Once scroll-reveal marks one visible,
   its higher-specificity transform:translateY(0) would otherwise pin the
   transform and silently cancel that hover effect — these restore it. */
html.reveal-ready .room-search-card.is-visible:hover {
  transform: translateY(-4px);
}

html.reveal-ready .amenity-detail-card.is-visible:hover {
  transform: translateY(-2px);
}

html.reveal-ready .support-pillar-card.is-visible:hover {
  transform: translateY(-8px);
}

html.reveal-ready .gear-logo-card.is-visible:hover {
  transform: translateY(-4px);
}
