/* Booking Bar */
.booking-bar {
  position: fixed;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--white);
  padding: 8px 12px; /* Slightly reduced padding */
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
  transition:
    top 0.5s var(--transition-smooth),
    box-shadow 0.5s ease;
}

.booking-bar.sticky {
  top: 15px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 15px;
  border-right: 1px solid var(--light-grey);
}

.booking-field:last-of-type {
  border-right: none;
}

.booking-field label {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--deep-teal);
}

.booking-field input,
.booking-field select {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  border: none;
  background: transparent;
  outline: none;
  min-width: 100px;
  padding: 2px 0; /* Reduced padding for input/select */
}

.booking-btn {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.booking-btn::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s var(--transition-smooth);
  display: inline-block;
}

.booking-btn:hover {
  background: var(--deep-teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(35, 170, 166, 0.25);
}

.booking-btn:hover::after {
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12vh; /* Lift content up to create space from bottom elements */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 26, 26, 0.7) 0%,
    rgba(46, 128, 124, 0.2) 40%,
    rgba(35, 170, 166, 0.15) 60%,
    rgba(15, 26, 26, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  margin-top: 80px;
}

.hero-words {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-word {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(120px) rotateX(-90deg) scale(0.8);
  transform-origin: center bottom;
  transform-style: preserve-3d;
}

.hero-word.animate {
  animation: wordReveal3D 1.4s var(--transition-smooth) forwards;
}

.hero-word:nth-child(1).animate {
  animation-delay: 0.3s;
}
.hero-word:nth-child(2).animate {
  animation-delay: 0.6s;
}
.hero-word:nth-child(3) {
  color: var(--mid-teal);
  font-weight: 700;
  text-shadow: 0 0 60px rgba(35, 170, 166, 0.5);
}
.hero-word:nth-child(3).animate {
  animation-delay: 0.9s;
}

@keyframes wordReveal3D {
  0% {
    opacity: 0;
    transform: translateY(120px) rotateX(-90deg) scale(0.8);
    filter: blur(10px);
  }
  50% {
    opacity: 0.8;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

.hero-tagline {
  margin-top: 60px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--transition-smooth) 1.2s forwards;
  margin-bottom: 20px;
}

.hero-booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 28px;
  margin-top: 10px;
  background: var(--deep-teal);
  color: var(--white);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(35, 170, 166, 0.22);
  transition: all 0.3s var(--transition-smooth);
  opacity: 0;
  animation: fadeUp 1s var(--transition-smooth) 1.45s forwards;
}

.hero-booking-cta:hover {
  background: var(--mid-teal);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(35, 170, 166, 0.3);
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--mid-teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* Floating Price Tag */
.floating-price {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9998;
  background: linear-gradient(135deg, var(--deep-teal), var(--muted-teal));
  padding: 12px 18px;
  color: var(--white);
  text-align: center;
  transform: translateY(150%);
  transition: transform 0.5s var(--transition-bounce);
  box-shadow: 0 10px 40px rgba(35, 170, 166, 0.3);
}

.floating-price.visible {
  transform: translateY(0);
}

.floating-price .label {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.floating-price .price {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--warm-gold);
}

.floating-price .price-night {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Section Styles */
.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Parallax Elements */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

.parallax-slow {
  --parallax-speed: 0.3;
}

.parallax-medium {
  --parallax-speed: 0.5;
}

.parallax-fast {
  --parallax-speed: 0.8;
}

.parallax-reverse {
  --parallax-speed: -0.4;
}

/* Philosophy Section */
.philosophy-section {
  background: var(--white);
  position: relative;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2323AAA6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.philosophy-text {
  padding-right: 50px;
}

.philosophy-image {
  position: relative;
  perspective: 1000px;
}

.image-stack {
  position: relative;
  height: 600px;
  transform-style: preserve-3d;
}

.image-stack .img {
  position: absolute;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-grey);
  font-size: 0.8rem;
  overflow: hidden;
  transition: transform 0.05s linear;
  will-change: transform;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-stack .img:nth-child(1) {
  width: 350px;
  height: 450px;
  top: 0;
  left: 0;
  z-index: 2;
}

.image-stack .img:nth-child(2) {
  width: 420px;
  height: 280px;
  top: 250px;
  right: -40px;
  z-index: 3;
  background: var(--muted-teal);
  color: var(--white);
  object-fit: cover;
}

.image-stack .img:nth-child(3) {
  width: 200px;
  height: 200px;
  bottom: 0;
  left: 80px;
  z-index: 3;
  background: linear-gradient(135deg, var(--mid-teal), var(--light-cyan));
  color: var(--white);
}

/* Rooms Section */
.rooms-section {
  background: var(--midnight);
  padding: 100px 0;
}

.rooms-header {
  text-align: center;
  margin-bottom: 100px;
}

.rooms-header .section-label {
  color: var(--light-cyan);
  justify-content: center;
}

.rooms-header .section-label::before {
  background: var(--light-cyan);
}

.rooms-header .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 30px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.rooms-grid {
  perspective: 1000px;
}

.room-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.1s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.room-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--mid-teal);
  z-index: 3;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(35, 170, 166, 0.15),
    inset 0 0 60px rgba(35, 170, 166, 0.05);
}

.room-card:focus-within {
  z-index: 3;
}

.room-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(35, 170, 166, 0.3) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.room-card:hover::before {
  opacity: 1;
}

.room-image {
  position: relative;
  height: 300px;
  background: var(--deep-teal);
  overflow: hidden;
}

.room-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 26, 26, 0.8), transparent);
}

.room-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: transform 0.6s var(--transition-smooth);
}

.room-card:hover .room-image-placeholder {
  transform: scale(1.1);
}

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--deep-teal);
  color: var(--white);
  padding: 8px 15px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.room-content {
  padding: 35px;
  position: relative;
  z-index: 11;
}

.room-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
  line-height: 1.7;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.room-price {
  font-family: "JetBrains Mono", monospace;
  font-size:18px;
  color: var(--light-cyan);
}

.room-price span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.room-link {
  color: var(--mid-teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.room-link:hover {
  color: var(--white);
}

.room-link svg {
  transition: transform 0.3s var(--transition-smooth);
}

.room-link:hover svg {
  transform: translateX(5px);
}

.room-book-btn {
  margin-top: 18px;
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  background: rgba(35, 170, 166, 0.18);
  color: var(--light-cyan);
  border: 1px solid rgba(35, 170, 166, 0.35);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  touch-action: manipulation;
  transition: all 0.3s var(--transition-smooth);
}

.room-book-btn:hover {
  background: var(--deep-teal);
  color: var(--white);
  border-color: var(--deep-teal);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(35, 170, 166, 0.24);
}

/* Experiences Section */
.experiences-section {
  background: var(--white);
  position: relative;
}

.experiences-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}

.exp-large-text {
  font-family: "Playfair Display", serif;
  font-size: 45px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}

.exp-large-text em {
  font-style: italic;
  color: var(--deep-teal);
}

.exp-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experiences-marquee {
  overflow: hidden;
  padding: 60px 0;
  background: var(--charcoal);
  margin: 80px 0;
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  color: var(--vibrant-magenta);
  -webkit-text-stroke: 1px var(--vibrant-magenta);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.exp-card {
  position: relative;
  height: 400px;
  background: var(--light-grey);
  overflow: hidden;
  cursor: pointer;
}

.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 26, 26, 0.9) 100%
  );
  z-index: 1;
  transition: opacity 0.4s ease;
}

.exp-card:hover::before {
  opacity: 0.8;
}

.exp-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-grey);
  font-size: 0.8rem;
  transition: transform 0.6s var(--transition-smooth);
}

.exp-card:hover .exp-card-bg {
  transform: scale(1.15);
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s var(--transition-smooth);
}

.exp-card:hover .exp-card-content {
  transform: translateY(0);
}

.exp-card-icon {
  width: 50px;
  height: 50px;
  background: var(--mid-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth) 0.1s;
}

.exp-card:hover .exp-card-icon {
  opacity: 1;
  transform: translateY(0);
}

.exp-card-icon svg,
.exp-card-icon i {
  width: 24px;
  height: 24px;
  fill: var(--white);
  color: var(--white);
  font-size: 1.5rem;
}

.exp-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.exp-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--transition-smooth) 0.15s;
}

.exp-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Color Shift Section */
.color-shift-section {
  position: relative;
  padding: 150px 0;
  background: var(--midnight);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.color-shift-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.color-shift-section .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.color-shift-section .giant-quote,
.color-shift-section .quote-author {
  position: relative;
  z-index: 2;
}

.giant-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.giant-quote em {
  font-style: italic;
  position: relative;
  display: inline-block;
}

.giant-quote em::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--warm-gold);
}

.quote-author {
  text-align: center;
  margin-top: 60px;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Facilities Section */
.facilities-section {
  background: var(--midnight);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.facilities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(35, 170, 166, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(79, 64, 154, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(210, 51, 107, 0.04) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.facilities-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2323AAA6' stroke-width='0.5' opacity='0.06'%3E%3Cline x1='0' y1='40' x2='80' y2='40'/%3E%3Cline x1='40' y1='0' x2='40' y2='80'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.facilities-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.facilities-header .section-label {
  color: var(--warm-gold);
  justify-content: center;
}

.facilities-header .section-label::before {
  background: var(--warm-gold);
}

.facilities-header .section-title {
  color: var(--white);
}

.facilities-header .section-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 550px;
  margin: 20px auto 0;
  line-height: 1.7;
}

.facilities-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 30px;
  margin-top: 80px;
}

.facility-item-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.facility-item-clean:hover {
  transform: translateY(-5px);
}

.facility-icon-clean {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  color: var(--mid-teal);
  transition: all 0.3s ease;
  position: relative;
}

.facility-icon-clean svg,
.facility-icon-clean i {
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
  fill: none;
  stroke: currentColor;
  font-size: 3.5rem;
  line-height: 70px;
  display: block;
}

.facility-item-clean:hover .facility-icon-clean {
  color: var(--light-cyan);
  transform: scale(1.1);
}

.facility-item-clean h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.facility-item-clean p {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
}

.facility-item-clean:hover h4 {
  color: var(--mid-teal);
}

/* Testimonials */
.testimonials-section {
  background: var(--off-white);
  padding: 100px 0;
}
.testimonials-section .section-label{
  text-align: center;
  justify-content: center;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--white);
  padding:40px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.testimonial-card:hover {
  border-color: var(--mid-teal);
  box-shadow: 0 20px 60px rgba(46, 128, 124, 0.1);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  color: var(--light-grey);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--warm-gold);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--deep-teal), var(--light-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--dark-grey);
}

/* Locations Section */
.locations-section {
  background: var(--charcoal);
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

.locations-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: 25vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
}

.locations-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.locations-header .section-label {
  color: var(--warm-gold);
}

.locations-header .section-label::before {
  background: var(--warm-gold);
}

.locations-header .section-title {
  color: var(--white);
}

.locations-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 0 50px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}

.locations-slider::-webkit-scrollbar {
  display: none;
}

.location-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.location-image {
  height: 500px;
  background: var(--deep-teal);
  position: relative;
  overflow: hidden;
}

.location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(15, 26, 26, 0.95) 100%
  );
}

.location-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: transform 0.6s var(--transition-smooth);
}

.location-card:hover .location-image-placeholder {
  transform: scale(1.1);
}

.location-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 1;
}

.location-tag {
  display: inline-block;
  background: var(--vibrant-magenta);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.location-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.location-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.location-link {
  color: var(--mid-teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.location-link:hover {
  color: var(--white);
}

/* FAQ Section */
.faq-section {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 80% 30%,
      rgba(239, 184, 27, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 20% 70%,
      rgba(35, 170, 166, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro .section-label {
  color: var(--warm-gold);
}

.faq-intro .section-label::before {
  background: var(--warm-gold);
}

.faq-intro .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.faq-intro-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 25px;
}

.faq-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-counter-number {
  font-family: "JetBrains Mono", monospace;
  font-size: 100px;
  font-weight: 500;
  color: var(--mid-teal);
  line-height: 1;
}

.faq-counter-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-contact-cta {
  margin-top: 40px;
}

.faq-contact-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mid-teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-contact-cta a:hover {
  color: var(--light-cyan);
  gap: 14px;
}

.faq-contact-cta a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s var(--transition-smooth);
}

.faq-contact-cta a:hover svg {
  transform: translateX(4px);
}

.faq-container {
  max-width: none;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.384);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  background: rgba(255, 255, 255, 0.01);
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--mid-teal), var(--deep-purple));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--transition-smooth);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.faq-question:hover {
  padding-left: 42px;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.faq-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 30px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-num,
.faq-item:hover .faq-num {
  color: var(--mid-teal);
}

.faq-question h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4 {
  color: var(--light-cyan);
}

.faq-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.4s var(--transition-smooth);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--mid-teal);
  transition: transform 0.5s var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--mid-teal);
  border-color: var(--mid-teal);
  box-shadow: 0 0 20px rgba(35, 170, 166, 0.3);
}

.faq-item.active .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s var(--transition-smooth),
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding-bottom: 32px;
}

.faq-answer-inner {
  padding: 0 35px 0 87px;
}

.faq-answer-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.9;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--deep-teal), var(--muted-teal));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(81, 196, 204, 0.2) 0%,
    transparent 70%
  );
  animation: pulseGlow 10s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.newsletter-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 20px 30px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  border: none;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--dark-grey);
}

.newsletter-form button {
  padding: 20px 40px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--midnight);
}

/* Responsive — Page-specific */
@media (max-width: 1500px), (max-height: 850px) {
  .booking-bar {
    top: 110px !important; /* Moved higher up to clear hero text */
    bottom: auto !important;
    padding: 4px 10px; /* Condensed vertical padding */
    margin-top: 0;
  }

  .booking-bar.sticky {
    top: 10px !important;
    margin-top: 0;
  }

  .booking-field {
    padding: 0 10px; /* Tighter horizontal spacing */
  }

  .booking-field input,
  .booking-field select {
    font-size: 0.7rem; /* Smaller font */
    padding: 0;
  }

  .booking-field label {
    font-size: 0.5rem;
    letter-spacing: 0.5px;
  }

  .booking-btn {
    padding: 8px 16px;
    font-size: 0.65rem;
  }

  .hero {
    padding-bottom: 0;
  }
}

@media (max-width: 1200px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .booking-bar {
    display: none;
  }

  .hero-content {
    margin-top: 0;
    padding-bottom: 40px;
  }

  .hero {
    min-height: 600px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .philosophy-text {
    padding-right: 0;
  }

  .experiences-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-intro {
    position: static;
    text-align: center;
  }

  .faq-counter {
    justify-content: center;
  }

  .faq-contact-cta {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-word {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-top: 30px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .experiences-grid,
  .facilities-grid-clean {
    grid-template-columns: 1fr;
  }

  .exp-card {
    height: 300px;
  }

  .location-card {
    flex: 0 0 300px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .faq-question {
    padding: 22px 24px;
  }

  .faq-question:hover {
    padding-left: 30px;
  }

  .faq-answer-inner {
    padding: 0 24px 0 24px;
  }

  .faq-num {
    display: none;
  }

  .hero-booking-cta,
  .room-book-btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-booking-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Easter Egg - Secret Code Animation */
.secret-overlay {
  position: fixed;
  inset: 0;
  background: var(--vibrant-magenta);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.secret-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.secret-content {
  text-align: center;
  color: var(--white);
}

.secret-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.secret-content p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.secret-code {
  font-family: "JetBrains Mono", monospace;
  font-size: 2rem;
  color: var(--warm-gold);
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 40px;
  display: inline-block;
  margin-top: 20px;
}
.hero-audio-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.hero-audio-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  opacity: 1;
}

.hero-audio-btn i {
  font-size: 1.2rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-social a {
  color: var(--white);
  font-size: 1.8rem; /* Increased size further */
  transition: all 0.3s ease;
  opacity: 0.9;
  text-decoration: none !important; /* Force no underline */
  display: flex; /* Ensure clean alignment */
  align-items: center;
}

.nav-social a:hover {
  color: var(--mid-teal);
  transform: translateY(-2px);
  opacity: 1;
  text-decoration: none !important;
}

/* Update social color on scroll */
.navbar.scrolled .nav-social a {
  color: var(--charcoal);
}

@media (max-width: 992px) {
  .nav-social {
    display: none; /* Hide on mobile/tablet menu for now or move slightly */
  }
}

@media (max-width: 768px) {
  .hero-audio-btn {
    bottom: 30px;
    right: 20px;
    width: 36px;
    height: 36px;
  }
  .hero-audio-btn i {
    font-size: 1rem;
  }
}

.facility-item-clean {
    padding: 10px;
}
.section-title{
  font-size: 45px;
}