/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 24s ease-out infinite alternate;
  z-index: 1;
}

@keyframes slowZoom {
  0% { transform: scale(1.03) translate(0, 0); }
  100% { transform: scale(1.1) translate(-8px, -15px); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(15, 12, 10, 0.3) 0%, 
    rgba(15, 12, 10, 0.55) 60%, 
    rgba(10, 10, 10, 0.85) 100%
  ),
  url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  z-index: 2;
}

/* 
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(197, 168, 112, 0.25);
  pointer-events: none;
  z-index: 3;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .hero-overlay::after {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
*/


.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 40px;
}

.hero-content h1 {
  font-size: clamp(40px, 8vw, 82px);
  font-weight: 700;
  font-family: var(--font-luxury);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--color-gold-light) 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
}

.hero-content h1.reveal {
  opacity: 0;
  letter-spacing: 12px;
  filter: blur(4px);
  transform: scale(0.98);
  transition: opacity 1.8s cubic-bezier(0.25, 1, 0.3, 1), 
              letter-spacing 1.8s cubic-bezier(0.25, 1, 0.3, 1), 
              filter 1.5s cubic-bezier(0.25, 1, 0.3, 1), 
              transform 1.8s cubic-bezier(0.25, 1, 0.3, 1) !important;
}

.hero-content h1.reveal.active {
  opacity: 1;
  letter-spacing: 5px;
  filter: blur(0);
  transform: scale(1);
}

.hero-subtitle {
  font-size: clamp(15px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 2px;
  max-width: 750px;
  margin: 0 auto 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(197, 168, 112, 0.85);
  font-weight: 400;
  margin-bottom: 44px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Ambient gold glow behind hero title */
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(197, 168, 112, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
}

.scroll-down span {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(-45deg);
  animation: scrollDownAni 2s infinite;
}

@keyframes scrollDownAni {
  0% { transform: rotate(-45deg) translate(0, 0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: rotate(-45deg) translate(-10px, 10px); opacity: 0; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100 100 C 200 150, 400 50, 600 150 C 800 250, 900 100, 1100 200' fill='none' stroke='rgba(197,168,112,0.015)' stroke-width='1.5'/%3E%3Cpath d='M-100 130 C 200 180, 400 80, 600 180 C 800 280, 900 130, 1100 230' fill='none' stroke='rgba(197,168,112,0.012)' stroke-width='1.5'/%3E%3Cpath d='M-100 160 C 200 210, 400 110, 600 210 C 800 310, 900 160, 1100 260' fill='none' stroke='rgba(197,168,112,0.01)' stroke-width='1.5'/%3E%3Cpath d='M-100 450 C 150 400, 300 500, 500 450 C 700 400, 850 550, 1100 500' fill='none' stroke='rgba(197,168,112,0.012)' stroke-width='1.5'/%3E%3Cpath d='M-100 480 C 150 430, 300 530, 500 480 C 700 430, 850 580, 1100 530' fill='none' stroke='rgba(197,168,112,0.015)' stroke-width='1.5'/%3E%3Cpath d='M-100 510 C 150 460, 300 560, 500 510 C 700 460, 850 610, 1100 560' fill='none' stroke='rgba(197,168,112,0.01)' stroke-width='1.5'/%3E%3Cpath d='M300 -100 C 400 200, 300 400, 500 800' fill='none' stroke='rgba(197,168,112,0.012)' stroke-width='1.5'/%3E%3Cpath d='M330 -100 C 430 200, 330 400, 530 800' fill='none' stroke='rgba(197,168,112,0.015)' stroke-width='1.5'/%3E%3Cpath d='M360 -100 C 460 200, 360 400, 560 800' fill='none' stroke='rgba(197,168,112,0.01)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 480px;
}

.about-img-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
  border: var(--border-gold);
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover {
  border-color: var(--color-gold);
}

.about-img-wrapper.large {
  width: 75%;
  height: 380px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: 12px 12px 0px rgba(197, 168, 112, 0.12), 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-img-wrapper.large:hover {
  box-shadow: 6px 6px 0px rgba(197, 168, 112, 0.25), 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.about-img-wrapper.small {
  width: 55%;
  height: 250px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border-width: 2px;
  box-shadow: -12px 12px 0px rgba(197, 168, 112, 0.12), 0 15px 35px rgba(0, 0, 0, 0.08);
  animation: floatImage 6s ease-in-out infinite alternate;
}

.about-img-wrapper.small:hover {
  animation-play-state: paused;
  box-shadow: -6px 6px 0px rgba(197, 168, 112, 0.25), 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.05);
}

.about-heading {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

.about-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin-bottom: 24px;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active .about-divider {
  width: 150px;
}

.about-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.8;
}



.about-desc.muted {
  font-size: 14.5px;
  font-style: italic;
  color: var(--text-muted);
  border-left: none;
  padding-left: 0;
  position: relative;
  margin-top: 24px;
  margin-bottom: 35px;
}

.about-desc.muted::before {
  content: '“';
  font-size: 55px;
  font-family: 'Georgia', serif;
  color: var(--color-gold-light);
  opacity: 0.5;
  line-height: 0;
  display: block;
  margin-bottom: 15px;
  margin-top: 10px;
}

/* Heritage Actions & Seal */
.about-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.heritage-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.heritage-seal svg {
  animation: rotateSeal 24s linear infinite;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.about-actions:hover .heritage-seal svg {
  opacity: 1;
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   ROOMS SECTION
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  will-change: transform;
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-heavy);
  box-shadow: 0 15px 35px rgba(197, 168, 112, 0.15);
}

.room-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

/* Cinematic image overlay — fades in on hover (uses ::before; ::after is reserved for shimmer) */
.room-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.room-card:hover .room-img-wrapper::before {
  opacity: 1;
}

.room-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 112, 0.35);
  color: var(--color-gold-light);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.room-card:hover .room-card-badge {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold-light);
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-card:hover .room-img {
  transform: scale(1.08);
}

.room-price-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--color-gold-light);
  border-top-right-radius: var(--border-radius);
  border-top: 1px solid rgba(197, 168, 112, 0.35);
  border-right: 1px solid rgba(197, 168, 112, 0.35);
  z-index: 5;
  transition: var(--transition-smooth);
}

.room-card:hover .room-price-tag {
  border-color: var(--color-gold);
  background: rgba(10, 10, 10, 0.85);
}

.room-price-tag .price-amount {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF !important;
  margin: 0 4px;
}

.room-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-highlight-tag {
  display: inline-block;
  font-size: 10.5px;
  color: var(--color-gold-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.room-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.room-card:hover .room-name {
  color: var(--color-gold-dark);
}

.room-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
  flex-grow: 1;
}

.room-specs {
  display: flex;
  gap: 20px;
  font-size: 12px;
  border-top: 1px solid rgba(197, 168, 112, 0.15);
  padding-top: 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.room-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-icon {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.room-card:hover .spec-icon {
  transform: translateY(-1px) scale(1.05);
}

.room-specs strong {
  color: var(--color-gold);
  font-size: 14px;
}

.room-book-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 12px;
  transition: var(--transition-smooth);
}

.room-book-btn:hover {
  box-shadow: 0 0 15px rgba(197, 168, 112, 0.4);
  transform: translateY(-1px);
}

/* ==========================================================================
   AMENITIES SECTION (LIGHT BACKGROUND)
   ========================================================================== */
.amenities.bg-light {
  background: radial-gradient(circle at 50% 120%, rgba(197, 168, 112, 0.05) 0%, var(--color-dark) 70%);
  position: relative;
  overflow: hidden;
}

.amenities.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100 200 C 200 250, 400 150, 600 250 C 800 350, 900 200, 1100 300' fill='none' stroke='rgba(197,168,112,0.012)' stroke-width='1.5'/%3E%3Cpath d='M-100 500 C 150 450, 300 550, 500 500 C 700 450, 850 600, 1100 550' fill='none' stroke='rgba(197,168,112,0.01)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.amenities .container {
  position: relative;
  z-index: 2;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 168, 112, 0.15);
  border-top: 3px solid transparent;
  border-radius: var(--border-radius);
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(197, 168, 112, 0.12), 0 5px 15px rgba(0, 0, 0, 0.03);
  border-color: rgba(197, 168, 112, 0.3);
  border-top-color: var(--color-gold);
}

.amenity-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px dashed rgba(197, 168, 112, 0.35);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-container {
  transform: rotate(180deg) scale(1.05);
  border-color: var(--color-gold);
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--color-dark);
  color: var(--color-gold-dark);
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
  background-color: var(--color-gold);
  color: #FFFFFF !important;
}

.amenity-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.amenity-card:hover h3 {
  color: var(--color-gold-dark);
}

.amenity-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 44px 32px 36px;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(197, 168, 112, 0.12);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Luxury top border on testimonial */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(197, 168, 112, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(197, 168, 112, 0.3);
}

.quote-icon {
  font-size: 80px;
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-luxury);
}

.quote-text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(197, 168, 112, 0.1);
  border: 1px solid rgba(197, 168, 112, 0.3);
  color: var(--color-gold-dark);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
  line-height: 1;
}

/* Specific alignment adjustment for Thai font baseline shift in circles */
html[lang^="th"] .author-avatar,
:lang(th) .author-avatar {
  padding-bottom: 2px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-author {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.author-status {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.2;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
/* ==========================================================================
   CTA BANNER SECTION (UPGRADED LUXURY STYLING)
   ========================================================================== */
.cta, .cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 112, 0.2);
  border-bottom: 1px solid rgba(197, 168, 112, 0.2);
  background-color: #0a0a0a;
}

.cta-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.cta:hover .cta-bg, .cta-banner:hover .cta-bg {
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Luxury radial gradient: lighter warm gold tint in center, fading to dark edges */
  /* This enhances depth, keeps text readable, and reveals more background image details */
  background: radial-gradient(circle at center, rgba(30, 25, 18, 0.6) 0%, rgba(10, 10, 10, 0.82) 100%);
  z-index: 2;
}

/* Luxury fine noise texture over the overlay */
.cta-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  /* Premium dual-tone gold gradient text */
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.cta-content p {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: #eadcc5;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
  opacity: 0.95;
}

/* Pulsing Golden CTA Button */
.cta-content .btn-primary {
  box-shadow: 0 4px 15px rgba(197, 168, 112, 0.25);
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 168, 112, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(197, 168, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 168, 112, 0);
  }
}


/* ==========================================================================
   RESORT HIGHLIGHTS RIBBON
   ========================================================================== */
.highlights-ribbon {
  position: relative;
  margin: -60px auto 0;
  width: 90%;
  max-width: 1100px;
  z-index: 100;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: var(--border-gold-heavy);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.highlights-ribbon:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(197, 168, 112, 0.15);
}

.ribbon-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 100% !important;
  padding: 0 !important;
}

.ribbon-items {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  padding: 10px 20px;
  background: rgba(247, 247, 245, 0.9);
  border: 1px solid rgba(197, 168, 112, 0.25);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ribbon-item:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 168, 112, 0.2);
}

.ribbon-item svg {
  color: var(--color-gold-dark);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.ribbon-item:hover svg {
  color: var(--color-black);
  transform: scale(1.08);
}

.ribbon-item-arrow {
  color: var(--color-gold);
  font-size: 11px;
  margin-left: 6px;
  transition: var(--transition-smooth);
}

.ribbon-item:hover .ribbon-item-arrow {
  color: var(--color-black);
  transform: translateX(4px);
}

.ribbon-btn {
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsive Ribbon */
@media (max-width: 991px) {
  .highlights-ribbon {
    width: 95%;
    padding: 20px 24px;
    margin-top: -40px;
  }
  .ribbon-items {
    gap: 24px;
  }
  .ribbon-item {
    font-size: 13.5px;
  }
}

@media (max-width: 768px) {
  .highlights-ribbon {
    margin-top: -30px;
    padding: 20px;
  }
  .ribbon-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .ribbon-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 240px;
  }
  .ribbon-item {
    font-size: 14px;
    width: 100%;
  }
  .ribbon-btn {
    width: 100%;
  }
}

/* ==========================================================================
   RESORT CREDENTIALS SECTION
   ========================================================================== */
.credentials {
  padding: 24px 0;
  background-color: var(--color-black);
}

.credentials-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 30px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--border-gold-heavy);
  box-shadow: var(--glow-gold), 0 15px 30px rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.credentials-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  z-index: 2;
}

.credentials-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 5;
  pointer-events: none;
}

.credentials-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(197, 168, 112, 0.14);
  border-color: var(--color-gold);
}

.credentials-card:hover::after {
  left: 150%;
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 5px 15px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.credential-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -15px;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(197, 168, 112, 0.25), transparent);
}

.credential-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.credential-icon svg {
  width: 22px;
  height: 22px;
}

.credential-item:hover .credential-icon {
  color: var(--color-gold);
  transform: scale(1.08) rotate(3deg);
}

.credential-num {
  display: block;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 4px;
  transition: transform var(--transition-smooth);
}

.credential-line-gold {
  width: 20px;
  height: 1.5px;
  background-color: var(--color-gold);
  margin: 4px 0 8px;
  transition: var(--transition-smooth);
}

.credential-item:hover .credential-line-gold {
  width: 40px;
  background-color: var(--color-gold-light);
}

.credential-label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.4;
}

.credential-item:hover .credential-num {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .credentials-card {
    padding: 16px 15px;
  }
  .credentials-grid {
    gap: 16px;
  }
  .credential-item:not(:last-child)::after {
    right: -8px;
  }
}

@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .credential-item:not(:last-child)::after {
    display: none;
  }
  .credential-item {
    border-bottom: 1.5px solid rgba(197, 168, 112, 0.15);
    padding-bottom: 12px;
  }
  .credential-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   DINING / GASTRONOMY EXPERIENCE SECTION
   ========================================================================== */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.dining-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dining-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

/* Dining Highlights Grid */
.dining-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}

.dining-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-smooth);
}

.dining-feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 112, 0.06);
  border: 1px solid rgba(197, 168, 112, 0.2);
  border-radius: 50%;
  color: var(--color-gold-dark);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.dining-feature:hover .dining-feature-icon {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold-light);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(197, 168, 112, 0.2);
}

.dining-feature-icon svg {
  width: 20px;
  height: 20px;
}

.dining-feature-text h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 2px;
  transition: var(--transition-smooth);
}

.dining-feature:hover .dining-feature-text h4 {
  color: var(--color-gold);
}

.dining-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.4;
}

/* Dining Images Collage */
.dining-images {
  position: relative;
  height: 440px;
  width: 100%;
}

.dining-img-frame {
  overflow: hidden;
  border-radius: var(--border-radius);
  border: var(--border-gold-heavy);
  box-shadow: var(--glow-gold), 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.dining-img-frame.large {
  width: 75%;
  height: 340px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: 12px 12px 0px rgba(197, 168, 112, 0.12), 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dining-img-frame.large:hover {
  box-shadow: 6px 6px 0px rgba(197, 168, 112, 0.25), 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.dining-img-frame.small {
  width: 50%;
  height: 230px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  box-shadow: -12px 12px 0px rgba(197, 168, 112, 0.12), 0 15px 35px rgba(0, 0, 0, 0.08);
  animation: floatDiningImage 6s ease-in-out infinite alternate;
}

.dining-img-frame.small:hover {
  animation-play-state: paused;
  box-shadow: -6px 6px 0px rgba(197, 168, 112, 0.25), 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

@keyframes floatDiningImage {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.dining-cuisine-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 112, 0.35);
  color: var(--color-gold-light);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.dining-img-frame.small:hover .dining-cuisine-tag {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold-light);
}

.dining-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.dining-img-frame:hover .dining-img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .dining-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dining-images {
    height: 380px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .dining-images {
    height: 300px;
  }
  .dining-img-frame.large {
    height: 240px;
    box-shadow: 6px 6px 0px rgba(197, 168, 112, 0.12), 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .dining-img-frame.large:hover {
    box-shadow: 4px 4px 0px rgba(197, 168, 112, 0.25), 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  .dining-img-frame.small {
    height: 150px;
    box-shadow: -6px 6px 0px rgba(197, 168, 112, 0.12), 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .dining-img-frame.small:hover {
    box-shadow: -4px 4px 0px rgba(197, 168, 112, 0.25), 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  .dining-cuisine-tag {
    padding: 4px 10px;
    font-size: 10px;
    bottom: 10px;
    left: 10px;
  }
}

/* ==========================================================================
   CURATED LOCAL EXPERIENCES SECTION
   ========================================================================== */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-heavy);
  box-shadow: 0 15px 35px rgba(197, 168, 112, 0.12);
}

.experience-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

/* Cinematic overlay on hover */
.experience-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.experience-card:hover .experience-img-wrapper::before { opacity: 1; }

/* Gold border reveal */
.experience-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(197, 168, 112, 0);
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.experience-card:hover .experience-img-wrapper::after {
  border-color: rgba(197, 168, 112, 0.4);
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.experience-card:hover .experience-img {
  transform: scale(1.08);
}

.experience-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experience-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}

.experience-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .experiences-grid {
    grid-template-columns: 1fr 1fr;
  }
  .experiences-grid .experience-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .experiences-grid .experience-card:last-child {
    grid-column: span 1;
  }
}

/* ==========================================================================
   CINEMATIC VIDEO SHOWCASE SECTION
   ========================================================================== */
.video-showcase {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.75));
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--color-gold-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 1px solid var(--color-gold-light);
  box-shadow: 0 0 0 0 rgba(197, 168, 112, 0.4), var(--glow-gold);
  color: var(--color-black);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 20px;
  animation: pulsePlay 2s infinite;
}

.video-play-btn:hover {
  background: var(--color-gold-light);
  transform: scale(1.1);
}

.video-play-btn .play-icon {
  margin-left: 4px;
}

.video-play-label {
  font-size: 14px;
  color: var(--text-dark-muted);
  letter-spacing: 1px;
}

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 168, 112, 0.6), var(--glow-gold);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(197, 168, 112, 0), var(--glow-gold);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 168, 112, 0), var(--glow-gold);
  }
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  z-index: 1001;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  color: var(--color-gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-modal-close:hover {
  color: var(--color-gold-light);
  transform: rotate(90deg);
}

.video-modal-iframe-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius);
  border: var(--border-gold-heavy);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  background: #000;
}

@media (max-width: 767px) {
  .video-modal-iframe-wrapper {
    aspect-ratio: 9/16;
    max-width: 340px;
  }
}

.video-modal-iframe-wrapper iframe,
.video-modal-iframe-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-cream);
  border: 1px solid rgba(197, 168, 112, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 18px rgba(197, 168, 112, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-smooth);
}

.faq-icon {
  font-size: 20px;
  color: var(--color-gold);
  transition: transform 0.4s ease;
  font-weight: 300;
}

.faq-item.active .faq-question {
  color: var(--color-gold-dark);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* 1. Room Renovated Tags */
.renovated-tag {
  left: 16px;
  right: auto;
  background: rgba(197, 168, 112, 0.9) !important;
  border-color: var(--color-gold-light) !important;
  color: #0A0A0A !important;
  font-weight: 600;
  text-shadow: none;
}

.room-card:hover .renovated-tag {
  background: #FFFFFF !important;
  color: var(--color-gold-dark) !important;
  border-color: var(--color-gold) !important;
}



/* 3. Alms Timeline */
.alms-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid rgba(197, 168, 112, 0.15);
  padding-top: 20px;
  width: 100%;
  text-align: left;
}

.alms-timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.alms-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  bottom: -16px;
  width: 1px;
  border-left: 1px dashed rgba(197, 168, 112, 0.35);
}

.alms-timeline-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-gold-dark);
  background: rgba(197, 168, 112, 0.06);
  border: 1px solid rgba(197, 168, 112, 0.25);
  padding: 4px 10px;
  border-radius: 12px;
  flex-shrink: 0;
  min-width: 65px;
  text-align: center;
  transition: var(--transition-smooth);
}

.alms-timeline-item:hover .alms-timeline-badge {
  background: var(--color-gold);
  color: #0A0A0A !important;
  border-color: var(--color-gold-light);
  box-shadow: 0 2px 8px rgba(197, 168, 112, 0.15);
}

.alms-timeline-info h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 2px;
}

.alms-timeline-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* Attraction Card Meta & Highlights */
.attraction-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.attraction-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: rgba(197, 168, 112, 0.08);
  border: 1px solid rgba(197, 168, 112, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
}

.attraction-dist {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 300;
}

.attraction-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(197, 168, 112, 0.15);
}

.attraction-highlights li {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}

.attraction-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}

.experiences-cta {
  text-align: center;
  margin-top: 48px;
}

/* 4. Dining Dishes Showcase Slider */
/* 4. Dining Dishes Showcase Slider */
.dining-dishes-showcase {
  grid-column: 1 / -1;
  margin-top: 80px;
  width: 100%;
  padding: 60px 50px;
  background: linear-gradient(180deg, rgba(250, 246, 238, 0.8) 0%, rgba(246, 238, 224, 0.45) 100%);
  border: 1px solid rgba(197, 168, 112, 0.25);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(197, 168, 112, 0.03), 0 5px 15px rgba(0, 0, 0, 0.015);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.dishes-showcase-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.dishes-showcase-intro .badge {
  margin-bottom: 12px;
}

.dishes-intro-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  margin-top: 5px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.dishes-intro-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 25px;
}

.dishes-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  width: 100%;
}

.dishes-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.highlight-icon {
  color: var(--color-gold-dark);
  font-weight: 700;
  font-size: 10px;
  background: rgba(197, 168, 112, 0.12);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-text {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.45;
}

.dishes-intro-btn {
  align-self: flex-start;
}

.dishes-showcase-slider-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dishes-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.5px;
}

.dishes-slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dishes-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: var(--border-gold);
  box-shadow: var(--glow-gold), 0 10px 25px rgba(0, 0, 0, 0.04);
}

.dishes-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.dish-slide {
  min-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.dish-slide.active {
  opacity: 1;
}

.dish-slide-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dish-slide:hover .dish-slide-img {
  transform: scale(1.04);
}

.dish-slide-info {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.dish-slide-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.dish-slide:hover h4 {
  color: var(--color-gold-dark);
}

.dish-slide-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.dish-slide {
  position: relative;
}

.dish-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  padding: 6px 12px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--color-gold-light);
  font-size: 10.5px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(197, 168, 112, 0.35);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(197, 168, 112, 0.15);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.dish-rating {
  font-size: 12px;
  color: var(--color-gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
}

.dish-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gold-dark);
  font-family: var(--font-primary);
}

.dish-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.dish-tag {
  font-size: 10.5px;
  color: var(--color-gold-dark);
  background: rgba(197, 168, 112, 0.05);
  border: 1px solid rgba(197, 168, 112, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.dishes-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.dishes-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197, 168, 112, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.dishes-slider-dots .dot.active {
  width: 20px;
  border-radius: 10px;
  background: var(--color-gold-dark);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid rgba(197, 168, 112, 0.3);
  color: var(--color-gold-dark);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  line-height: 1;
  padding-bottom: 4px;
}

.slider-arrow:hover {
  background: var(--color-gold);
  color: #0A0A0A;
  border-color: var(--color-gold-light);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(197, 168, 112, 0.25);
}

/* 5. Travel Companion Section */
.travel-guide {
  background-color: var(--color-black);
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.travel-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 168, 112, 0.15);
  border-top: 3px solid transparent;
  border-radius: var(--border-radius);
  padding: 35px 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.travel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(197, 168, 112, 0.12), 0 5px 15px rgba(0, 0, 0, 0.03);
  border-color: rgba(197, 168, 112, 0.3);
  border-top-color: var(--color-gold);
}

.travel-card.highlight {
  border-color: rgba(197, 168, 112, 0.4);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(247, 247, 245, 0.9));
  box-shadow: 0 10px 30px rgba(197, 168, 112, 0.06);
  border-top-color: var(--color-gold-dark);
}

.travel-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 112, 0.06);
  border: 1px solid rgba(197, 168, 112, 0.25);
  border-radius: 50%;
  color: var(--color-gold-dark);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.travel-card:hover .travel-icon {
  background: var(--color-gold);
  color: #0A0A0A;
  border-color: var(--color-gold-light);
  transform: scale(1.08);
}

.travel-icon svg {
  width: 26px;
  height: 26px;
}

.travel-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.travel-card:hover h3 {
  color: var(--color-gold-dark);
}

.travel-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
  flex-grow: 1;
}

.travel-map-btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 11.5px;
  margin-top: auto;
  letter-spacing: 0.5px;
}

/* Responsive Styles for upgrades */
@media (max-width: 991px) {
  .travel-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .travel-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {

  
  .dining-dishes-showcase {
    grid-template-columns: 1fr;
    margin-top: 50px;
    padding: 35px 20px 40px;
    gap: 30px;
  }
  .dish-slide {
    grid-template-columns: 1fr;
  }
  .dish-slide-img {
    height: 200px;
  }
  .dish-slide-info {
    padding: 20px;
  }
  .dish-slide-info h4 {
    font-size: 16px;
  }
  .dish-slide-info p {
    font-size: 12.5px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .dishes-slider-container {
    gap: 10px;
  }
  
  .alms-timeline-item:not(:last-child)::after {
    left: 28px;
  }
  .alms-timeline-badge {
    min-width: 58px;
    font-size: 9.5px;
  }
}

/* ==========================================================================
   ROOMS GRID — RESPONSIVE (OVERRIDE for 4-card layout)
   ========================================================================== */
.rooms-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery {
  background-color: var(--color-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

/* Featured first image — spans 2 rows for editorial feel */
.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}

/* Wide 5th image — spans 2 columns */
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0) 60%, rgba(10, 10, 10, 0));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.5) 0%, rgba(197, 168, 112, 0.08) 100%);
}

/* Gold border reveal on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(197, 168, 112, 0);
  border-radius: 10px;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.gallery-item:hover::after {
  border-color: rgba(197, 168, 112, 0.5);
}

.gallery-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 300;
  line-height: 1;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item:first-child { grid-row: unset; }
  .gallery-item:nth-child(5) { grid-column: unset; aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WHY BOOK DIRECT SECTION
   ========================================================================== */
.why-book-direct {
  background-color: var(--color-black);
}

.wbd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.wbd-card {
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(197, 168, 112, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.wbd-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 168, 112, 0.45);
  background: rgba(197, 168, 112, 0.06);
}

.wbd-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(197, 168, 112, 0.1);
  border: 1px solid rgba(197, 168, 112, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-gold);
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wbd-card:hover .wbd-icon {
  background: var(--color-gold);
  color: #0A0A0A;
  border-color: var(--color-gold-light);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 6px 20px rgba(197, 168, 112, 0.3);
}

.wbd-icon svg {
  transition: color 0.3s ease;
}

.wbd-card:hover .wbd-icon svg {
  color: #0A0A0A;
}

.wbd-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.wbd-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.wbd-cta {
  text-align: center;
}

.wbd-cta .btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .wbd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wbd-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
