/* Import Inter, Manrope, and Nanum Myeongjo fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=Nanum+Myeongjo:wght@400;700;800&display=swap');

/* Design Tokens & Theme Variables */
:root {
  /* Fonts */
  --font-heading: 'Nanum Myeongjo', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Grid padding margin */
  --grid-padding: 40px;

  /* Colors */
  --color-primary: #102e22;
  /* Elegant deep green for buttons/text */
  --color-primary-hover: #164030;
  --color-accent: #c4a482;
  /* Warm gold/bronze for highlights */
  --color-bg-light: #F2F2F2;
  /* Neutral 20 bg */
  --color-bg-white: #ffffff;
  --color-text-dark: #1f2937;
  /* Warm dark gray */
  --color-text-muted: #4a5568;
  /* Soft description color (WCAG AA 4.5:1 compliant) */
  --color-border: #e5e7eb;

  /* Gradients */
  --gradient-blue-teal: linear-gradient(135deg, #2b5a77 0%, #0d6b7c 100%);
  --gradient-dark-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
  --gradient-hero-bottom: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%);

  /* Border Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 48px rgba(196, 164, 130, 0.15);

  /* Transitions */
  --transition-fast: 0s;
  --transition-normal: 0s;
  --transition-slow: 0s;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 640px) {
  .section-padding {
    padding: 4rem 0;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Scroll Top Shadow Shade */
.scroll-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-shadow.visible {
  opacity: 1;
}

/* Header & Sticky Navigation */
.header-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 var(--grid-padding);
  transition: var(--transition-normal);
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
  filter: brightness(0) invert(1);
  /* Start as white for transparent nav over dark video */
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.btn-whatsapp {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 4px 12px rgba(16, 46, 34, 0.2);
}

.btn-book {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
}

.btn-book:hover {
  background-color: var(--color-bg-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
  overflow: hidden;
  z-index: 1;
  background: #102e22 url('Assets/hero-logo.jpeg') center/cover no-repeat;
}

.main-content-flow {
  position: relative;
  z-index: 3;
  background-color: var(--color-bg-light);
  width: 100%;
  margin-top: 100vh;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.1);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  animation: heroZoomOut 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-video-bg.loaded {
  opacity: 1;
}

@keyframes heroZoomOut {
  to {
    transform: scale(1);
  }
}

.hero .hero-middle.fade-in {
  opacity: 0;
  animation: heroTextZoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

.hero .hero-title-container.fade-in {
  opacity: 0;
  animation: heroTextZoomIn 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.6s;
}

@keyframes heroTextZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark-overlay);
  z-index: 2;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--gradient-hero-bottom);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 var(--grid-padding) 0 var(--grid-padding);
}

.hero-top-spacer {
  height: 455px;
  /* Space from top to tagline per redlines */
}

.hero-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 47px;
  /* Spacing between tagline and title per redlines */
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  max-width: 480px;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-location {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg-white);
  padding-bottom: 4px;
  /* Align with bottom line of tagline text */
}

.hero-title-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
  /* bottom margin handled by parent padding */
  width: 100%;
  padding-bottom: 0;
}

.hero-title-row {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 400;
  /* Regular */
  color: var(--color-bg-white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1;
  /* 1 Em line height */
  letter-spacing: 0.31em;
  /* 0.31 Em letter spacing */
  margin: 0;
  margin-right: -0.31em;
  /* Compensate for trailing letter spacing to keep text centered */
  white-space: nowrap; /* Force text to stay in a single row */
}

.silver-mist-row {
  font-size: 9.6vw;
  /* Renders exactly as 129px high on a 1344px desktop canvas to span full width */
  margin-left: calc(-1 * var(--grid-padding));
  /* bleed to the left edge of screen */
  margin-right: calc(-1 * var(--grid-padding) - 0.31em);
  /* bleed to the right edge and offset trailing space */
}

.residency-row {
  font-size: 64px;
  /* 64px font size from design system */
  letter-spacing: 0.71em;
  /* 0.71 Em letter spacing from design system */
  margin: 0;
  margin-right: -0.71em;
  /* Compensate for trailing letter spacing to keep text centered */
  margin-top: 0;
  /* 0 margin so SILVER MIST is exactly 85px from the bottom (64px height + 21px padding) */
}

@media (max-width: 640px) {
  :root {
    --grid-padding: 20px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .hero-top-spacer {
    display: none;
  }

  .hero-middle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 1rem;
    width: 100%;
  }

  .hero-tagline {
    font-size: 0.65rem;
    max-width: 65%;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .hero-tagline br {
    display: none;
  }

  .hero-location {
    font-size: 0.75rem;
    text-align: right;
    max-width: 30%;
    line-height: 1.3;
    font-weight: 700;
  }

  .hero-title-container {
    gap: 0.25rem;
  }

  .hero-title-row {
    letter-spacing: 0.15em;
    margin-right: -0.15em;
  }

  .silver-mist-row {
    font-size: 8.5vw;
    letter-spacing: 0.22em;
    margin-left: 0;
    margin-right: -0.22em;
  }

  .residency-row {
    font-size: 5vw;
    letter-spacing: 0.55em;
    margin-right: -0.55em;
    margin-top: 0;
  }

  .section-subtitle-small {
    font-size: 32px;
    line-height: 1.3;
    width: 100%;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.3;
    width: 100%;
  }

  /* Header & Navigation Mobile Optimization */
  .header-nav {
    padding: 1rem 0;
  }

  .header-nav .nav-container {
    padding: 0 20px;
  }

  .header-nav .logo-link {
    flex-shrink: 0;
  }

  .header-nav .logo-img {
    height: 64px;
  }

  .header-nav .nav-actions {
    gap: 0.5rem;
  }

  .header-nav .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .header-nav .btn-whatsapp {
    display: none;
  }

  .rooms-header .section-desc {
    display: none;
  }
}

/* General Typography styles */
.section-subtitle-small {
  font-family: var(--font-heading);
  /* updated to heading font */
  font-size: 61px;
  /* Heading 1b font size from specs */
  font-weight: 400;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  text-align: center;
  line-height: 1.2;
  /* Heading 1b line height from specs */
  width: 70%;
  /* exactly 70% relative width from specs */
  margin: 0 auto 0.75rem auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  /* Heading 2 font size from specs */
  color: var(--color-primary);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  /* Heading 2 line height from specs */
  margin-bottom: 1rem;
  width: 74%;
  /* exactly 74% relative width from specs */
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 680px;
  text-align: center;
  margin: 0 auto 3.5rem auto;
  line-height: 1.6;
}

/* Rooms Section */
.rooms-section {
  position: relative;
  z-index: 3;
  background-color: var(--color-bg-light);
  width: 100%;
  height: 1144px;
  /* increased height further to add more breathing room */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
  /* Gap from design specs */
  padding: 64px 20px;
  /* Padding from design specs */
  box-sizing: border-box;
}

.rooms-container {
  max-width: 1200px;
  width: 100%;
  height: auto;
  /* let height auto-expand to fit elements */
  min-height: 840px;
  /* fallback min-height */
  margin: 0 auto;
  padding: 0 25px;
  /* exactly 25px horizontal padding from specs */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align items from top */
  gap: 22px;
  /* exactly 22px gap between header and grid from specs */
  align-items: center;
  position: relative;
}

.rooms-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 250px;
  /* adjusted to fit title gap changes */
  justify-content: flex-start;
  padding-top: 85px;
  /* exactly 85px top padding before title */
  box-sizing: border-box;
}

.rooms-header .section-subtitle-small {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0 !important;
  color: #d9dadf;
  width: 350px;
  height: 73px;
}

.rooms-header .section-title {
  margin-top: 0;
  margin-bottom: 16px !important;
  /* exactly 16px gap below title from specs */
  color: #313969;
}

.rooms-header .section-desc {
  margin-bottom: 0 !important;
  /* sits flush at bottom edge of header */
}

.rooms-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* exactly 10px gap between cards */
  width: 100%;
  height: 479px;
  /* adjusted to include 22px top/bottom padding and 435px card height */
  padding: 22px 60px;
  /* exactly 22px top/bottom and 60px left/right paddings */
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .rooms-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 22px 25px; /* Spacing from left and right screen ends */
    box-sizing: border-box;
  }

  .room-card {
    flex: 1;
    min-width: 0;
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 10px 10px 20px 10px;
  }

  .room-image-slider {
    height: 160px; /* Reduced slider height to fit smaller card width */
  }

  .room-card-title {
    font-size: 16px; /* Reduced font size to wrap cleanly */
  }

  .room-card-desc {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Dine Tablet Overrides */
  .dine-section {
    height: auto;
    min-height: auto;
    padding: 60px 0;
  }

  .dine-container {
    padding: 0 40px;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: center;
  }

  .dine-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .dine-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .dine-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .dine-pills-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid matching desktop */
    gap: 12px;
    width: 100%;
  }

  .dine-pill {
    padding: 12px 10px; /* Compact padding to fit 2 columns */
    font-size: 13px; /* Compact font size to fit text wrapping */
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .rooms-section {
    height: auto;
    /* reset height for vertical stack on tablet/mobile */
    gap: 2rem;
    padding: 30px 20px; /* Reduced vertical padding */
  }

  .experiences-section {
    margin-top: 0;
    padding: 30px 20px 0 20px; /* Reduced vertical padding */
  }

  .rooms-container {
    height: auto;
    /* reset height for vertical stack on tablet/mobile */
    padding: 0;
    gap: 2.5rem;
  }

  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    /* reset height for tablet/mobile */
    padding: 22px 0;
    /* reset horizontal padding on tablet */
    gap: 10px;
  }

  .room-card {
    height: auto;
    /* reset height for tablet/mobile */
    min-height: 435px;
    /* exactly 435px min-height matching card height */
    max-height: none;
    /* remove desktop max-height constraint */
    width: 100%;
  }



  .rooms-header {
    height: auto;
    padding-top: 85px; /* exactly 85px offset from top to title as per spec */
  }

  .dine-header {
    height: auto;
    padding-top: 0;
  }

  .rooms-header .section-subtitle-small {
    max-width: 100%;
  }

  .dine-header .section-subtitle-small {
    position: static;
    transform: none;
    margin-bottom: 1rem !important;
    width: auto;
    max-width: 100%;
    height: auto;
  }

    .rooms-header .section-title {
      font-size: 26px;
      line-height: 1.2;
      letter-spacing: -0.04em;
      color: #313969;
      width: auto;
      margin-left: 38px;
      margin-right: 38px;
      margin-bottom: 1.5rem !important;
    }

    .dine-header .section-title {
      margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 640px) {
  .rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    /* reset height for mobile */
    padding: 22px 0;
    /* reset horizontal padding on mobile */
    gap: 10px;
  }

  .room-card {
    height: auto;
    /* reset height for mobile */
    min-height: 435px;
    /* exactly 435px min-height matching card height */
    max-height: none;
    /* remove desktop max-height constraint */
    width: 100%;
  }


}

/* Room Cards */
.room-card {
  background-color: var(--color-bg-white);
  border-radius: 28px;
  /* exactly 28px border-radius from specs */
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  /* exactly 0, 18, 40 shadow from specs */
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* reduced gap between image and text block */
  padding: 11px 11px 31px 11px;
  /* exactly 11px top/sides, 31px bottom padding */
  width: 267px;
  /* exactly 267px width */
  height: 435px;
  /* exactly 435px height */
  min-height: 435px;
  /* exactly 435px min-height */
  max-height: 435px;
  /* exactly 435px max-height */
  flex-shrink: 0;
  box-sizing: border-box;
  transition: var(--transition-slow);
  position: relative;
}

.room-card:hover {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.room-img-container {
  width: 100%;
  height: 234px;
  /* exactly 234px image height */
  min-height: 234px;
  /* exactly 234px min-height */
  max-height: 234px;
  /* exactly 234px max-height */
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  /* rounded corners inside padded card */
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.room-content {
  padding: 0 5px;
  /* exactly 5px side padding */
  display: flex;
  flex-direction: column;
  gap: 9px;
  /* exactly 9px gap between title and description */
  flex-grow: 1;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  /* exactly 24px font size */
  color: #313969;
  /* exactly #313969 color */
  font-weight: 700;
  line-height: 1.2;
  /* exactly 1.2 Em line-height */
  margin-bottom: 0;
}

.room-card-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Suite Room Coming Soon Style */
.room-card.coming-soon {
  background: linear-gradient(135deg, #425C82 0%, #0d6b7c 100%);
  /* gradient background per specs */
  color: var(--color-bg-white);
  justify-content: flex-start;
  padding: 215px 22px 20px 22px;
  /* updated padding per specs */
  border: none;
}

.coming-soon-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.coming-soon-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #34d399;
  /* Green dot */
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
}

.room-card.coming-soon .room-card-title {
  font-family: var(--font-heading);
  font-size: 40px;
  /* updated to 40px per specs */
  font-weight: 700;
  color: #FFFCF4;
  /* updated color per specs */
  letter-spacing: -0.03em;
  /* updated letter spacing per specs */
  line-height: 1;
  /* updated line height per specs */
}

.room-card.coming-soon .room-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  /* updated to 15px per specs */
  color: rgba(255, 252, 244, 0.85);
  /* updated to FFFCF4 with opacity */
  line-height: 1.6;
  /* updated line height per specs */
  letter-spacing: 0;
  margin-bottom: 0;
}

/* Room Gallery Slider */
.gallery-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
  /* exactly 240px height matching gallery-item */
  flex-shrink: 0;
  /* prevent container height from shrinking */
  margin-top: auto;
  /* push to bottom of rooms section */
  margin-bottom: 72px;
  /* exactly 72px bottom offset to section boundary */
}

.gallery-scroll-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 35s linear infinite;
  will-change: transform; /* Promotes marquee to GPU layer for butter smooth scrolling */
}

.gallery-track {
  display: flex;
  gap: 25px;
  /* exactly 25px gap between items */
  height: 100%;
  /* fill container height */
  padding-right: 25px;
  /* space between first and second copy */
}

.gallery-item {
  width: 180px;
  /* exactly 180px width */
  height: 240px;
  /* exactly 240px height */
  flex: 0 0 180px;
  border-radius: 0;
  /* removed border radius per specs */
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 180px;
  /* exactly 180px image width */
  height: 240px;
  /* exactly 240px image height */
  object-fit: cover;
  /* cover container area */
}

@keyframes gallery-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


/* Footer Section */
.footer {
  height: auto;
  box-sizing: border-box;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Assets/Footer Image/1.png') no-repeat center/cover;
  color: #ffffff;
  padding: 64px 0 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px; /* Size matched to design breakpoint (1200px) */
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 32px; /* Matched to design specs (32px left offset) */
  padding-right: 31px; /* Matched to design specs (31px right offset) */
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 500px; /* Width matched to design specs for 457px horizontal gap */
}

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-contact-detail-item:hover {
  color: var(--color-accent);
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.footer-col-right {
  display: flex;
  align-items: flex-start;
}

.footer-logo-new {
  width: 180px;
  height: auto;
}

.footer .hero-title-container {
  margin-top: 64px; /* Gap matched to design specs */
}

.footer-bottom {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
  line-height: 1.5;
  position: relative;
  z-index: 10;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

@media (max-width: 640px) {
  .footer {
    height: auto;
    min-height: auto;
    padding: 40px 20px 0 20px; /* Reduced top padding on mobile */
  }

  .footer-container {
    padding: 0;
  }

  .footer-top-row {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-col-left {
    align-items: center;
  }

  .footer-contact-details {
    align-items: center;
  }

  .footer-logo-new {
    width: 140px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding: 16px 15px;
    font-size: 11px;
  }
}

/* Animations */
.fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-in.appear {
  opacity: 1;
  transform: none;
}

/* Offer Section (Trust Highlights Welcome Bar) */
.offer-section {
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  width: 100%;
}

.offer-section .wrapper {
  width: 100%;
  height: 76px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 25s linear infinite;
}

.offer-section .trust-highlights {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.offer-section .trust-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.offer-section .trust-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.offer-section .trust-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.3;
  white-space: nowrap;
}

@keyframes trust-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Experiences Section */
.experiences-section {
  position: relative;
  z-index: 3;
  background-color: var(--color-bg-light);
  width: 100%;
  height: auto; /* Changed from 1900px to auto to remove empty space at bottom */
  margin-top: 28px;
  /* exactly 28px spacing from rooms-section */
  padding: 28px 20px 0 20px;
  /* exactly 28px top and 20px left/right padding from specs, 0 bottom padding */
  box-sizing: border-box;
}

.experiences-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  /* exactly 52px gap from specs */
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.experiences-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.experiences-header .section-subtitle-small {
  font-family: 'Manrope', var(--font-body), sans-serif;
  font-size: 13px;
  /* exactly 13px font size from specs */
  font-weight: 800;
  /* Extra Bold from specs */
  color: #313969;
  /* exactly #313969 text color from specs */
  letter-spacing: 0.12em;
  /* exactly 0.12em letter spacing from specs */
  line-height: 1;
  /* line height 1em from specs */
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.experiences-header .section-title {
  width: 690px;
  /* exactly 690px width from specs */
  max-width: 100%;
  /* responsive fallback */
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 20px;
  /* exactly 20px gap below title to get the 81px total vertical offset */
  font-size: 40px;
  /* exactly 40px font size from specs */
  letter-spacing: -0.04em;
  /* exactly -0.04em letter spacing from specs */
  line-height: 1.2;
  /* exactly 1.2 line height from specs */
  color: #313969;
}

.experiences-header .section-desc {
  width: 690px;
  /* matches title width and creates exactly 230px side margins on desktop */
  max-width: 100%;
  /* responsive fallback */
  font-size: 16px;
  /* exactly 16px font size from specs */
  letter-spacing: 0;
  /* exactly 0 letter spacing from specs */
  line-height: 1.2;
  /* exactly 1.2 line height from specs */
  margin: 0 auto 40px auto;
  /* centered with exactly 40px bottom spacing to the experiences list */
}

.experiences-list {
  display: flex;
  flex-direction: column;
  gap: 52px;
  /* exactly 52px gap between items from specs */
  width: 100%;
  box-sizing: border-box;
}

.experience-item {
  position: sticky;
  top: 100px;
  width: 100%;
  height: 284px;
  box-sizing: border-box;
}

.experience-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  will-change: transform, opacity;
  transform-origin: center top;
}

.experience-item-inner:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:nth-child(1) { z-index: 10; }
.experience-item:nth-child(2) { z-index: 11; }
.experience-item:nth-child(3) { z-index: 12; }
.experience-item:nth-child(4) { z-index: 13; }

.experience-title-col {
  width: 220px;
  /* exactly 220px width */
  padding: 20px 20px 236px 20px;
  /* updated padding per specs */
  flex-shrink: 0;
  box-sizing: border-box;
}

.experience-title {
  font-family: var(--font-heading);
  font-size: 24px;
  /* matches room card title */
  color: #313969;
  /* matches room card title color */
  line-height: 1.2;
  margin: 0;
}

.experience-img-col {
  width: 220px;
  /* updated width per specs */
  height: 244px;
  /* updated height per specs */
  flex-shrink: 0;
  overflow: hidden;
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}



.experience-desc-col {
  width: 366px;
  /* exactly 366px width to complete the 1150px content width with spacing */
  height: 100%;
  padding: 20px 20px 20px 20px;
  /* updated padding to flow naturally */
  flex-shrink: 0;
  box-sizing: border-box;
}

.experience-desc-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 10px;
  /* updated gap per specs */
}

.experience-desc-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Media Queries for Experiences Section */
@media (max-width: 640px) {
  .experiences-section {
    height: auto;
    /* reset fixed height on smaller viewports */
  }

  .experiences-container {
    padding: 0;
  }

  .experiences-header {
    position: relative;
    padding-top: 51px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .experiences-header .section-subtitle-small {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0 !important;
  }

  .experiences-header .section-title {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #313969;
    width: 100%;
  }

  .experiences-header .section-desc {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
  }

  .experience-item {
    position: sticky;
    top: 80px;
    height: auto;
  }

  .experience-item-inner {
    flex-direction: column;
    height: auto;
    padding: 30px;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .experience-title-col,
  .experience-desc-col {
    width: 100%;
    padding: 0;
  }

  .experience-img-col {
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-radius: 14px;
  }

  .experience-title {
    font-size: 22px;
  }

  .experience-desc-title {
    font-size: 1rem;
  }
}

/* Location Section */
.location-section {
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: transparent; /* No background color, inherits body bg */
  margin-top: 30px; /* Space between sections */
  padding: 0 0 28px 0; /* Exact 28px bottom padding to cards bottom */
  box-sizing: border-box;
}

.location-container {
  max-width: 1512px; /* Matches Figma 1512px canvas width */
  width: 100%;
  margin: 0 auto;
  padding: 0 148px; /* Exact 148px margins on left/right */
  display: flex;
  flex-direction: column;
  gap: 40px; /* 40px gap from title baseline to top of grid */
  align-items: center;
  box-sizing: border-box;
}

.location-heading {
  text-align: center;
  max-width: 984px; /* Matches the 180px margins on a 1344px desktop layout */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-heading .section-subtitle-small {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.location-heading .section-title {
  color: #313969; /* Elegant dark navy blue from the palette */
  font-weight: 700; /* Bold style matching the design spec */
  text-transform: uppercase; /* Uppercase transform matching the design spec */
  font-size: 40px; /* Heading size from specs */
  line-height: 1.2; /* Line-height from specs (40px * 1.2 = 48px line height; 2 lines = 96px total height) */
  width: 100%; /* Prevents inheritance of 74% global title width, avoiding 4-line wraps */
  max-width: 100%;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* Horizontal gap between columns */
  width: 100%;
  max-width: 1216px; /* Matches Figma 1216px grid width */
}

.location-col {
  display: flex;
  flex-direction: column;
  gap: 56px; /* Vertical gap between cards inside each column (176px spacing to grid bottom - 120px card height) */
}

/* Align columns side-by-side without offset */
.location-col-left {
  margin-top: 0;
  margin-left: 0;
}

.location-col-right {
  margin-top: 0;
}

.location-card {
  background-color: var(--color-bg-white);
  border-radius: 22px;
  padding: 22px 22px 40px 22px; /* Exact padding specs from mockup (22px top/left/right, 40px bottom) */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px; /* Exact 10px vertical gap between title and description */
  text-align: center; /* Center-align text inside cards */
  align-items: center; /* Center content horizontally */
  justify-content: flex-start; /* Aligns content to top to maintain exact paddings and gaps */
  width: auto; /* Card width-auto */
  min-height: 120px; /* Card height- 120 */
  height: 120px;
  box-sizing: border-box;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.location-card-title {
  font-family: var(--font-heading);
  font-size: 22px; /* Exact size 22px from design specs */
  color: #2D2D2D; /* Neutral 100 color from specs */
  font-weight: 400; /* Regular weight from specs */
  line-height: 1.2; /* Exact line-height 1.2 from specs */
  margin: 0;
}

.location-card-desc {
  font-family: var(--font-body);
  font-size: 14px; /* Exact size 14px from design specs */
  color: #2D2D2D; /* Dark Neutral 100 color from specs */
  line-height: 1.55; /* Exact line-height 1.55 from design specs */
  margin: 0;
}

/* Dine Section */
.dine-section {
  position: relative;
  z-index: 3;
  width: calc(100% - 40px); /* 20px margin left/right */
  margin: 11px 20px 0 20px; /* Exact 11px top margin and 20px side margins */
  background-color: #FFFCF4; /* Light warm cream background */
  border-radius: 32px; /* Rounded corners for the section block */
  min-height: 696px; /* Exact height from specs */
  height: 696px;
  display: flex;
  align-items: center;
  padding: 88px 0; /* Exact 88px top/bottom padding */
  box-sizing: border-box;
}

.dine-container {
  max-width: 1512px; /* Matches Figma canvas width */
  width: 100%;
  margin: 0 auto;
  padding: 0 128px; /* Exact 128px margins inside the container to make total offset from screen edge 148px (128 + 20) */
  display: grid;
  grid-template-columns: 1fr 602px; /* 602px content width on right, remaining 1fr on left */
  column-gap: 56px; /* Exact gap between columns */
  align-items: center;
  box-sizing: border-box;
}

.dine-image-col {
  width: 100%;
  display: block;
}

.dine-img {
  width: 100%;
  min-width: 320px; /* Prevent column collapse on desktop */
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  margin-left: auto;
  margin-right: 0;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.dine-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.dine-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; /* Exact size from design specs */
  font-weight: 800; /* Extra Bold weight from specs */
  color: #313969; /* Navy blue hex color from specs */
  text-transform: uppercase;
  letter-spacing: 0.12em; /* Exact letter-spacing from design specs */
  line-height: 1; /* Exact line-height from design specs */
  margin-bottom: 16px;
  display: block;
}

.dine-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400; /* Regular style matching specs */
  font-style: normal; /* Normal style matching specs */
  color: #313969; /* Navy blue hex color from specs */
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.dine-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px; /* Exact size from design specs */
  font-weight: 400; /* Regular weight */
  color: #1C3D2D; /* Soft dark green color from specs */
  line-height: 1.65; /* Exact line-height from design specs */
  letter-spacing: 0;
  margin: 0 0 32px 0;
  max-width: 540px;
}

.dine-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  width: 100%;
}

.dine-pill {
  background-color: #EFEAE2; /* Soft warm beige color for pills */
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700; /* Bold weight from design specs */
  color: #1C3D2D; /* Soft dark green color from specs */
  line-height: 1.25; /* Exact line-height from specs */
  letter-spacing: 0;
}

.dine-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C3D2D; /* Match the pill text color */
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .location-section {
    margin-top: 15px; /* Reduced margin-top on mobile */
    padding: 0 20px 30px 20px; /* Adjusted spacing for mobile */
  }

  .location-container {
    padding: 0; /* Overrides the desktop 148px margins */
    gap: 30px;
  }

  .location-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .location-col {
    gap: 20px;
    height: 100%;
  }

  .location-col-left {
    margin-top: 0;
    margin-left: 0;
  }

  .location-card {
    padding: 20px 12px;
    height: auto;
    min-height: auto;
    flex: 1;
  }

  .location-card-title {
    font-size: 16px;
  }

  .location-heading .section-title {
    font-size: 28px;
  }

  /* Dine Section Mobile Overrides */
  .dine-section {
    width: calc(100% - 40px); /* 20px margins on mobile */
    margin: 15px 20px 0 20px; /* Adjusted margin */
    border-radius: 24px; /* Slightly smaller border radius for mobile */
    padding: 30px 0; /* Reduced mobile top/bottom padding */
    min-height: auto;
    height: auto;
  }

  .dine-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 12px; /* Overrides desktop container padding */
  }

  .dine-image-col {
    order: 1;
    display: block;
  }

  .dine-content-col {
    order: 2;
  }

  .dine-img {
    width: 100%;
    min-width: 0; /* Reset min-width for mobile */
    height: auto;
    aspect-ratio: 1 / 1; /* Keep it square on mobile */
    max-width: 400px;
    border-radius: 24px;
    margin: 0 auto; /* Center image on mobile */
  }

  .dine-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .dine-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .dine-pills-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid matching mockup */
    gap: 12px;
  }

  .dine-pill {
    padding: 12px 10px;
    font-size: 13px;
    gap: 8px;
  }
}

/* Booking & Map Section */
.booking-map-section {
  width: calc(100% - 40px); /* 20px margin left/right */
  margin: 64px 20px 11px 20px; /* 64px top margin to separate from Dine Section */
  height: 746px; /* 301px booking card + 395px map card + 50px gap */
  min-height: 746px;
  padding: 0; /* Align using fixed widths & centering */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px; /* 50px gap between cards */
  box-sizing: border-box;
}

.booking-card {
  background: var(--gradient-blue-teal);
  border-radius: 32px;
  padding: 36px; /* 36px padding on all sides matching specs */
  width: 951px; /* Fixed width from design specs */
  max-width: 100%;
  height: 301px; /* Fixed height from design specs */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Flow content downwards */
  align-items: flex-start;
  box-sizing: border-box;
}

.booking-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #F5EFE0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 16px; /* Exact margin for top content balance */
  display: block;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: #FFFCF4;
  line-height: 1.02;
  letter-spacing: -0.03em;
  white-space: nowrap; /* Force single line on desktop */
  text-transform: none; /* Sentence case as shown in mockup */
  margin: 0 0 32px 0; /* Exact margin to place description 146px from top */
}

.booking-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 252, 244, 0.75);
  line-height: 1.65;
  margin: 0 0 26px 0; /* Exact margin to place buttons 102px from bottom */
}

.booking-buttons {
  display: flex;
  gap: 16px;
}

.btn-mmt {
  background-color: #EFEAE2; /* Soft warm beige */
  color: #1C3D2D; /* Soft dark green */
  border: 1px solid #EFEAE2;
  font-weight: 700;
}

.btn-mmt:hover {
  background-color: #DFD9CE;
  border-color: #DFD9CE;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-agoda {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
}

.btn-agoda:hover {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.map-card {
  background-color: #E2E6E8; /* Light cool grey contrasting with page bg */
  border-radius: 32px;
  padding: 32px 40px;
  width: 938px; /* Fixed width from design specs */
  max-width: 100%;
  height: 395px; /* Fixed height from design specs */
  min-height: 395px; /* Min height from design specs */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.map-iframe {
  border: 0;
  border-radius: 20px;
  height: 180px; /* Adjusted height for 395px card */
  width: 100%;
}

.map-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #1C3D2D;
  line-height: 1.2;
  margin: 28px 0 12px 0;
}

.map-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5e6c7d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Overrides for Booking & Map Section */
@media (max-width: 640px) {
  .booking-map-section {
    width: calc(100% - 40px); /* 20px margins on mobile */
    margin: 15px 20px 15px 20px; /* Adjusted vertical margin */
    padding: 0; /* Reset desktop side padding on mobile */
    height: auto;
    min-height: auto;
    gap: 30px;
  }

  .booking-card {
    width: 100%;
    height: auto;
    padding: 36px 24px;
    border-radius: 24px;
  }

  .booking-title {
    font-size: 26px;
    margin-bottom: 12px;
    white-space: normal; /* Allow wrapping on mobile */
  }

  .booking-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .booking-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .booking-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .map-card {
    width: 100%;
    height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .map-iframe {
    height: 160px;
    border-radius: 16px;
  }

  .map-title {
    font-size: 22px;
    margin: 20px 0 8px 0;
  }

  .map-desc {
    font-size: 14px;
  }
}

/* Reviews Marquee Section */
.reviews-section {
  background-color: transparent; /* inherits body bg #F2F2F2 */
  width: 100%;
  padding: 64px 25px; /* Spacing 64px top/bottom, 25px left/right */
  box-sizing: border-box;
  overflow: hidden;
}

.reviews-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Spacing between title and marquee: 64px top pad + 48px title + 10px gap = 122px */
}

.reviews-section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  color: #313969; /* Navy blue */
  text-transform: uppercase;
  font-weight: 700; /* Bold weight */
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
  line-height: 48px; /* Exact height from design tool */
}

.reviews-marquee-container {
  position: relative;
  overflow: hidden;
  width: 760px; /* Width matching the design spec */
  max-width: calc(100vw - 50px);
  margin: 0 auto;
  padding: 3px 0; /* Minimal padding for hover transform clearance */
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  animation: reviews-marquee-scroll 80s linear infinite; /* Slower scroll speed */
}

.reviews-marquee-list {
  display: flex;
  gap: 20px; /* Reduced gap between cards */
  padding-right: 20px; /* Space between original and duplicate lists */
}

.review-card {
  width: 760px; /* Card width from spec where text wraps perfectly */
  max-width: calc(100vw - 50px);
  height: 188px; /* Fixed height for exact 258px section height */
  flex-shrink: 0;
  background-color: #E8EAEB; /* Light grey card */
  border-radius: 24px;
  padding: 36px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.reviewer-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  letter-spacing: 0.05em;
}

.reviewer-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-stars {
  color: #1f2937; /* Muted dark color matching the design screenshot */
  font-size: 15px;
  letter-spacing: 1px;
}

.rating-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

@keyframes reviews-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Responsive styles for reviews */
@media (max-width: 640px) {
  .reviews-section {
    padding: 35px 20px; /* Reduced vertical padding on mobile */
  }
  
  .reviews-section-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .reviews-marquee-container {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .review-card {
    width: 100%;
    max-width: calc(100vw - 40px);
    height: auto; /* Fluid height to prevent text overflow */
    padding: 24px;
    border-radius: 16px;
  }
  
  .review-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  
  .reviewer-name {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .rating-stars {
    font-size: 11px;
  }

  .rating-text {
    font-size: 11px;
  }
  
  .review-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Note Section */
.note-section {
  background-color: transparent;
  width: 100%;
  padding: 64px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.note-section .wrapper {
  width: 100%;
  max-width: 1150px;
  background-color: transparent;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  perspective: 1200px;
}

.note-section .first-part {
  width: 100%;
  background-color: #ffffff;
  padding: 64px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

@media (min-width: 641px) {
  .note-section .wrapper {
    min-height: 1105px;
  }

  .note-section .first-part {
    height: auto;
    padding: 0;
  }
  
  .note-section .title {
    max-width: 614px;
  }
  
  .note-section .second-part {
    height: auto;
    padding: 64px;
    box-sizing: border-box;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .note-section .second-part br {
    display: none;
  }
  
  .note-section .mangers-signature {
    width: 100%;
    max-width: 1022px;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
  }
  
  .note-section .mangers-signature .image {
    width: 244px;
    height: 109px;
    object-fit: contain;
  }
  
  .note-section .second-part .title {
    width: 244px;
    text-align: center;
    margin: 4px 0 0 0;
  }
}

.note-section .managers-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 64px;
}

@media (min-width: 641px) {
  .note-section .managers-note {
    position: relative;
    padding: 221px 204px 64px 204px;
    gap: 0;
  }

  .note-section .logo {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.note-section .logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.note-section .logo img {
  width: 139px;
  height: 93px;
}

.note-section .title {
  width: 100%;
  max-width: 742px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 1;
  z-index: 2;
}

.note-section .title h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.05em;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  align-self: flex-start;
}

.note-section .title p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  text-align: justify;
}

.note-section .title p strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #000000;
}

.note-section .paper-transform {
  position: absolute;
  top: 511px;
  left: 1px;
  right: -1px;
  bottom: -1px;
  background-color: #ffffff;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.note-section .second-part {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  padding: 64px;
  
  /* 3D Scroll Transform properties */
  transform-origin: top center;
  transform: rotateX(-70deg);
  transition: none;
  backface-visibility: hidden;
}

.note-section .second-part.unfolded {
  transform: perspective(1200px) rotateX(0deg);
}

.note-section .mangers-signature {
  width: 100%;
}

.note-section .mangers-signature .image {
  display: block;
  width: 244px;
  height: 109px;
  object-fit: contain;
}

.note-section .second-part .title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
  margin: 4px 0 0 0;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

/* Responsive styles for Note Section */
@media (max-width: 640px) {
  .note-section {
    width: 100%;
    margin: 0;
    height: auto;
    padding: 30px 20px;
  }

  .note-section .wrapper {
    padding: 0;
    gap: 0;
    align-items: stretch;
    background-color: transparent;
  }

  .note-section .first-part {
    padding: 40px 24px;
    gap: 32px;
    height: auto;
    background-color: #ffffff;
    flex-direction: column;
  }

  .note-section .managers-note {
    gap: 32px;
  }

  .note-section .logo img {
    width: 110px;
    height: auto;
  }

  .note-section .title {
    align-items: center;
  }

  .note-section .title h3 {
    font-size: 14px;
  }

  .note-section .title p {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
  }

  .note-section .second-part {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    transform: none;
    height: auto;
  }

  .note-section .mangers-signature {
    display: flex;
    justify-content: center;
  }

  .note-section .mangers-signature .image {
    width: 150px;
    height: auto;
  }

  .note-section .second-part .title {
    margin-top: 4px;
    text-align: center;
    color: #000000;
  }

  .note-section .paper-transform {
    display: none;
  }

  /* Rooms Mobile Alignment Overrides */
  .rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    padding: 22px 0;
    gap: 10px;
  }

  .room-card {
    height: auto;
    min-height: 435px;
    max-height: none;
    width: 100%;
    padding: 11px 11px 31px 11px;
  }

  .room-image-slider {
    height: 245px;
  }

  .room-card-title {
    font-size: 20px;
  }

  .room-card-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Lenis smooth scroll helper styles */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}