/* ==========================================================================
   SILVER WOODS HOUSE - Main Design System & Style Palette
   Theme: Luminous Pristine White & Liquid Silver Luxury (ขาว-เงิน-สว่าง)
   ========================================================================== */

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

:root {
  --bg-dark: #F7F9FC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;

  --silver-deep: #0F172A;
  --silver-metallic: #64748B;
  --silver-accent: #334155;

  --gold-primary: #475569;
  --gold-light: #0F172A;
  --gold-glow: rgba(148, 163, 184, 0.2);

  --text-primary: #0F172A;
  /* Deep dark slate text for 100% crisp contrast */
  --text-secondary: #475569;
  --text-muted: #64748B;

  --border-light: #E2E8F0;
  --border-gold: #CBD5E1;

  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-blur: blur(20px);
  --glass-border: 1px solid #E2E8F0;

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', 'Prompt', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: #F7F9FC;
  color: var(--text-primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background: transparent;
  color: var(--text-primary);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   LUXURY PRELOADER SCREEN — Eliminates FOUC & F5 Lag Completely
   ============================================================ */
.app-preloader {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
}

.app-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.preloader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.preloader-icon {
  font-size: 2.2rem;
  animation: preloaderPineBob 1.8s infinite ease-in-out;
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #0F172A;
}

.preloader-bar-wrap {
  width: 220px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #334155 0%, #0F172A 100%);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.preloader-status {
  font-size: 0.82rem;
  color: #64748B;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@keyframes preloaderPineBob {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.08);
  }
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.font-sans {
  font-family: var(--font-sans);
}

.text-gold {
  color: #0F172A;
  background: linear-gradient(135deg, #0F172A 0%, #334155 50%, #64748B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation Bar (Liquid Glass Aesthetic) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 2.5rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.05);
  padding: 0.85rem 2.5rem;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-icon {
  font-size: 1.5rem;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Links (Liquid Glass Capsule Nav with Sliding Magic Glider) */
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.4rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* Sliding Liquid Glass Indicator */
.nav-liquid-indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 1);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition:
    transform 0.36s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.36s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.36s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.nav-liquid-indicator.indicator-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 25px rgba(15, 23, 42, 0.25);
}

.nav-link {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  transition: color 0.25s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  background: transparent;
}

.nav-link:hover {
  color: #0F172A;
  background: transparent;
  box-shadow: none;
  border-color: transparent;
  transform: none;
}

.nav-link.active {
  color: #0F172A;
  font-weight: 700;
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

/* Dedicated Navigation Booking Capsule Button (Desktop) */
.nav-btn-booking {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
  color: #FFFFFF !important;
  padding: 0.52rem 1.35rem !important;
  border-radius: 50px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin-left: 0.35rem;
}

.nav-btn-booking:hover {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25) !important;
  color: #FFFFFF !important;
}

/* Hamburger Button (Mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Drawer */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 1.5rem 3rem 1.5rem;
    gap: 0.6rem;
    box-shadow: -15px 0 45px rgba(15, 23, 42, 0.12);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    box-sizing: border-box;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
    width: 100%;
    max-width: 220px;
    border-radius: 14px;
    box-sizing: border-box;
    flex: none !important;
    text-align: center;
    justify-content: center;
    color: #1E293B;
  }

  .nav-link:hover {
    background: #F1F5F9;
  }

  .nav-links .nav-btn-booking {
    margin: 1.25rem auto 0 auto !important;
    padding: 0.9rem 1.75rem !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    max-width: 220px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
    color: #FFFFFF !important;
    text-align: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2) !important;
  }
}

/* Floating Facebook Messenger "ติดต่อเรา" Chat Button (Bottom Right) */
.float-fb-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid #CBD5E1;
  color: #FFFFFF !important;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  transition: var(--transition-smooth);
  animation: floatPulse 3s infinite ease-in-out;
}

.float-fb-chat:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.35);
}

.float-fb-chat svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748B;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.5;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
  color: #0F172A;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================
   SCENIC ATMOSPHERE & NATURE SHOWCASE (Main Page)
   ============================================================ */
.scenic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.scenic-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.scenic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  border-color: #CBD5E1;
}

.scenic-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background-color: #0F172A;
}

.scenic-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scenic-card:hover .scenic-thumb {
  transform: scale(1.08);
}

.scenic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem 1.5rem 1.75rem;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.scenic-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 0.4rem;
}

.scenic-title {
  font-size: 1.45rem;
  font-family: var(--font-serif);
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.scenic-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}

.scenic-view-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #93C5FD;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.scenic-card:hover .scenic-view-hint {
  opacity: 1;
  color: #BFDBFE;
}

@media (max-width: 768px) {
  .scenic-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .scenic-thumb-wrapper {
    height: 280px;
  }

  .scenic-overlay {
    padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  }

  .scenic-title {
    font-size: 1.25rem;
  }

  .scenic-desc {
    font-size: 0.82rem;
  }
}

/* Rooms Grid & Cards */
/* Content Sections (Solid background layer above hero canvas) */
#rooms,
#package-buyout,
#package-camping,
#amenities,
#location,
footer {
  position: relative;
  z-index: 2;
  background: #F7F9FC;
  scroll-margin-top: 90px;
}

.rooms-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.room-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.1), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.room-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0F172A;
  border: 1px solid rgba(203, 213, 225, 0.8);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

.room-thumb-wrapper {
  position: relative;
  width: calc(100% - 1.25rem);
  height: 230px;
  min-height: 230px;
  max-height: 230px;
  margin: 0.65rem 0.65rem 0 0.65rem;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background-color: #0F172A;
}

.room-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-thumb {
  transform: scale(1.06);
}

.gallery-count-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.room-info {
  padding: 1.25rem 1.35rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.room-title {
  font-size: 1.5rem;
  color: #0F172A;
}

.room-price-box {
  text-align: right;
}

.room-price {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0F172A;
  font-family: var(--font-serif);
}

.room-unit {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.room-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.room-features-list {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.room-features-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-features-list li::before {
  content: '•';
  color: #64748B;
  font-size: 1.1rem;
}

.room-actions {
  display: flex;
  gap: 0.75rem;
}

.room-actions .btn {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.45rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -4px rgba(15, 23, 42, 0.35);
}

.btn-outline {
  background: rgba(241, 245, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(203, 213, 225, 0.85);
  color: #0F172A !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.btn-outline:hover {
  background: #E2E8F0;
  border-color: #94A3B8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

/* Package Spotlight Cards (Resort Buyout, Camping & Kitchen) */
.packages-section {
  max-width: 1280px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
}

.package-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto 2.5rem auto;
  box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: #CBD5E1;
  box-shadow: 0 25px 50px -15px rgba(15, 23, 42, 0.12), inset 0 1px 1px rgba(255, 255, 255, 1);
}

/* ============================================================
   MINIMALIST SUB-AMENITIES ROW (Single Row on PC, Smooth Glide on Mobile)
   ============================================================ */
.mini-amenities-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

.mini-amenity-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-amenity-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.mini-amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.mini-amenity-title {
  font-size: 0.95rem;
  color: #0F172A;
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
}

.mini-amenity-desc {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 992px) {
  .mini-amenities-row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .mini-amenities-row {
    display: flex !important;
    gap: 0.75rem !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0.5rem 1rem 1.25rem 1rem !important;
    margin: 0 -1.5rem !important;
    scrollbar-width: none !important;
  }

  .mini-amenities-row::-webkit-scrollbar {
    display: none !important;
  }

  .mini-amenity-card {
    flex: 0 0 145px !important;
    min-width: 145px !important;
    scroll-snap-align: start !important;
    padding: 1.25rem 0.75rem !important;
    border-radius: 16px !important;
  }

  .mini-amenity-icon {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
  }

  .mini-amenity-title {
    font-size: 0.85rem !important;
  }

  .mini-amenity-desc {
    font-size: 0.72rem !important;
  }
}

@media (max-width: 900px) {
  .package-card {
    grid-template-columns: 1fr;
  }
}

.package-img-side {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  background-color: #0F172A;
}

.package-img-side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-img-side img {
  transform: scale(1.04);
}

.package-content {
  padding: 1.25rem 1.75rem 1.15rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.package-badge {
  display: inline-block;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.package-title {
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
  color: #0F172A;
  line-height: 1.25;
}

.package-price-tag {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  font-family: var(--font-serif);
  margin-bottom: 0.45rem;
}

.package-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.package-highlights {
  list-style: none;
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.package-highlights li {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Brand Logo Image */
.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

/* Google Map Location Section */
.map-card-wrapper {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.google-map-iframe-container {
  width: 100%;
  height: 420px;
  background: #F1F5F9;
}

.map-card-footer {
  padding: 1.5rem;
  text-align: center;
  background: #FAFCFE;
  border-top: 1px solid #E2E8F0;
}

/* Freeze body scroll & background position when modal is active */
body.modal-open {
  overflow: hidden !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

/* ============================================================
   LIQUID GLASS MODAL — Crystal Clear Frosted Glass Photo Gallery
   ============================================================ */
.room-modal-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(248, 250, 252, 0.35) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch;
  animation: liquidGlassOverlayIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes liquidGlassOverlayIn {
  from {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
  }

  to {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
  }
}

.room-modal-overlay.active {
  display: flex;
}

.room-modal-card {
  background: transparent;
  border-radius: 28px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  border: none;
  animation: liquidGlassCardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes liquidGlassCardIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.room-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #0F172A;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.room-modal-close-btn:hover {
  background: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.room-modal-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.room-modal-gallery-side {
  background: #0F172A;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px 0 0 28px;
  position: relative;
}

.room-modal-img-container {
  position: relative;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background-color: #020617;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.room-modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease;
}

.room-modal-zoom-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.75);

  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.room-modal-zoom-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0F172A;
}

.room-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.room-modal-nav:hover {
  background: rgba(255, 255, 255, 0.4);
}

.room-modal-prev {
  left: 1rem;
}

.room-modal-next {
  right: 1rem;
}

.room-modal-thumbs-strip {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 0.25rem;
}

.room-modal-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.room-modal-thumb.active,
.room-modal-thumb:hover {
  opacity: 1;
  border-color: #FFFFFF;
  transform: scale(1.05);
}

.room-modal-info-side {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.room-modal-badge {
  display: inline-block;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.room-modal-title {
  font-size: 1.8rem;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.room-modal-subtitle {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 1rem;
}

.room-modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.room-modal-price-val {
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  font-family: var(--font-serif);
}

.room-modal-price-unit {
  font-size: 0.95rem;
  color: #64748B;
}

.room-modal-specs {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 1.25rem;
}

.room-modal-description {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.room-modal-features-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.room-modal-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.room-modal-features-list li {
  font-size: 0.85rem;
  color: #475569;
}

.room-modal-cta-box {
  margin-top: auto;
}

/* ============================================================
   COVER FLOW CAROUSEL — Liquid Glass Photo Gallery Modal
   ============================================================ */
.coverflow-modal-card {
  max-width: 1200px;
  width: 100%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
}

.coverflow-section {
  position: relative;
  background: transparent !important;
  padding: 1.5rem 0 1rem 0;
  overflow: hidden;
}

.coverflow-viewport {
  width: 100%;
  overflow: hidden;
  perspective: 1400px;
  -webkit-perspective: 1400px;
  padding: 1.5rem 0;
}

.coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 480px;
  position: relative;
  transition: none;
}

.coverflow-slide {
  position: absolute;
  width: 700px;
  height: 450px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 25px 60px rgba(0, 0, 0, 0.25);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  background: #0F172A;
}

.coverflow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Active (center) slide */
.coverflow-slide.cf-active {
  transform: translateX(0) rotateY(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 30px 80px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.95);
}

/* Left preview card — clearly peeking in */
.coverflow-slide.cf-left-1 {
  transform: translateX(-540px) rotateY(24deg) scale(0.85);
  z-index: 5;
  opacity: 0.75;
}

.coverflow-slide.cf-left-2 {
  transform: translateX(-880px) rotateY(34deg) scale(0.68);
  z-index: 3;
  opacity: 0.35;
}

/* Right preview card — clearly peeking in */
.coverflow-slide.cf-right-1 {
  transform: translateX(540px) rotateY(-24deg) scale(0.85);
  z-index: 5;
  opacity: 0.75;
}

.coverflow-slide.cf-right-2 {
  transform: translateX(880px) rotateY(-34deg) scale(0.68);
  z-index: 3;
  opacity: 0.35;
}

/* Hidden slides */
.coverflow-slide.cf-hidden,
.coverflow-slide.cf-hidden-left {
  transform: translateX(-1200px) scale(0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.coverflow-slide.cf-hidden-right {
  transform: translateX(1200px) scale(0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Navigation arrow icons & Counter for Room Photo Modal */
.coverflow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  color: #0F172A;
  font-size: 1.25rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.3s ease;
}

.coverflow-prev {
  left: 1.5rem;
}

.coverflow-next {
  right: 1.5rem;
}

.coverflow-nav:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
  color: #059669;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

.coverflow-counter {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 1rem auto 0 auto;
  width: fit-content;
}

.coverflow-thumbs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem 1.25rem 1.25rem;
  overflow-x: auto;
  max-width: 92vw;
  margin: 0 auto;
  scrollbar-width: thin;
}

.coverflow-thumb-item {
  width: 62px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
  opacity: 0.55;
  background: #0F172A;
}

.coverflow-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coverflow-thumb-item:hover {
  opacity: 0.9;
  transform: scale(1.06);
}

.coverflow-thumb-item.active {
  opacity: 1;
  border-color: #34D399;
  transform: scale(1.12);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.6);
}

/* Room Card Thumbnail Gallery & Quick Navigation */
.room-card-thumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem 0.25rem 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.room-card-thumbs::-webkit-scrollbar {
  display: none;
}

.room-card-thumb {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: #E2E8F0;
}

.room-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card-thumb:hover {
  transform: translateY(-2px);
  border-color: #059669;
}

.room-card-thumb.active {
  border-color: #059669;
  box-shadow: 0 0 8px rgba(5, 150, 105, 0.4);
}

.room-card-thumb-more {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.room-card-thumb-more:hover {
  background: #059669;
  transform: translateY(-2px);
}

.room-card-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.room-card:hover .room-card-nav-arrow {
  opacity: 1;
}

.room-card-nav-prev {
  left: 0.75rem;
}

.room-card-nav-next {
  right: 0.75rem;
}

.room-card-nav-arrow:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.12);
  color: #059669;
}

/* ============================================================
   INLINE 3D COVER FLOW CAROUSEL — Main Page Scenic Showcase (Grand & Cinematic)
   ============================================================ */
.scenic-coverflow-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0 4.5rem 0;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}

.inline-coverflow-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  perspective: 1800px;
  -webkit-perspective: 1800px;
  padding: 1.5rem 0;
  touch-action: pan-y;
}

.inline-coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: min(78vh, 760px);
  height: min(78vh, 760px);
  position: relative;
  cursor: grab;
}

.inline-coverflow-track.is-dragging {
  cursor: grabbing;
}

.inline-cf-slide {
  position: absolute;
  width: min(1360px, 88vw);
  height: min(74vh, 720px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.2);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, filter 0.6s ease;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: #0F172A;
  user-select: none;
  -webkit-user-drag: none;
}

.inline-cf-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.inline-cf-slide:hover img {
  transform: scale(1.02);
}

/* Active center slide */
.inline-cf-slide.cf-active {
  transform: translateX(0) rotateY(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.3);
  border-color: rgba(255, 255, 255, 0.95);
}

/* Left neighbors — visible previews */
.inline-cf-slide.cf-left-1 {
  transform: translateX(-70vw) rotateY(22deg) scale(0.85);
  z-index: 5;
  opacity: 0.6;
  filter: brightness(0.8);
}

.inline-cf-slide.cf-left-2 {
  transform: translateX(-120vw) rotateY(32deg) scale(0.65);
  z-index: 3;
  opacity: 0.25;
  filter: brightness(0.6);
}

/* Right neighbors — visible previews */
.inline-cf-slide.cf-right-1 {
  transform: translateX(70vw) rotateY(-22deg) scale(0.85);
  z-index: 5;
  opacity: 0.6;
  filter: brightness(0.8);
}

.inline-cf-slide.cf-right-2 {
  transform: translateX(120vw) rotateY(-32deg) scale(0.65);
  z-index: 3;
  opacity: 0.25;
  filter: brightness(0.6);
}

/* Hidden slides */
.inline-cf-slide.cf-hidden,
.inline-cf-slide.cf-hidden-left {
  transform: translateX(-170vw) rotateY(40deg) scale(0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.inline-cf-slide.cf-hidden-right {
  transform: translateX(170vw) rotateY(-40deg) scale(0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Slide Caption Overlay */
.inline-cf-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.45) 35%, rgba(15, 23, 42, 0.88) 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  pointer-events: none;
}

.inline-cf-slide.cf-active .inline-cf-caption {
  opacity: 1;
  transform: translateY(0);
}

.inline-cf-tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #34D399;
  text-transform: uppercase;
}

.inline-cf-title {
  font-size: 1.45rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

.inline-cf-desc {
  font-size: 0.92rem;
  color: #E2E8F0;
  max-width: 680px;
  line-height: 1.55;
}

/* Glassmorphism Navigation Buttons */
.inline-cf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  color: #0F172A;
  font-size: 1.35rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
}

.inline-cf-prev {
  left: 2rem;
}

.inline-cf-next {
  right: 2rem;
}

.inline-cf-nav:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
  color: #059669;
}

/* Scenic Indicators & Swipe Hint */
.scenic-indicators-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.scenic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.22);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.scenic-dot:hover {
  background: rgba(15, 23, 42, 0.5);
  transform: scale(1.2);
}

.scenic-dot.active {
  width: 34px;
  border-radius: 12px;
  background: #059669;
  box-shadow: 0 0 14px rgba(5, 150, 105, 0.45);
}

.scenic-swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #475569;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

@media (max-width: 1024px) {
  .inline-coverflow-track {
    min-height: min(68vh, 600px);
    height: min(68vh, 600px);
  }

  .inline-cf-slide {
    width: 90vw;
    height: min(64vh, 560px);
  }

  .inline-cf-prev {
    left: 1rem;
  }

  .inline-cf-next {
    right: 1rem;
  }

  .coverflow-slide {
    width: 500px;
    height: 340px;
  }

  .coverflow-slide.cf-left-1 {
    transform: translateX(-370px) rotateY(30deg) scale(0.8);
  }

  .coverflow-slide.cf-right-1 {
    transform: translateX(370px) rotateY(-30deg) scale(0.8);
  }
}

/* Mobile Cover Flow & Modal Redesign (Nearly Fullscreen & Swipe-Locked) */
@media (max-width: 768px) {

  /* Scenic Carousel on Index */
  .scenic-coverflow-container {
    padding: 1.5rem 0 3.5rem 0 !important;
  }

  .inline-coverflow-viewport {
    padding: 0.5rem 0 !important;
    perspective: none !important;
    -webkit-perspective: none !important;
  }

  .inline-coverflow-track {
    min-height: 66vh !important;
    height: 68vh !important;
    max-height: 660px !important;
  }

  .inline-cf-slide {
    width: 93vw !important;
    max-width: 93vw !important;
    height: 64vh !important;
    max-height: 620px !important;
    min-height: 390px !important;
    border-radius: 24px !important;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease !important;
  }

  .inline-cf-slide.cf-active {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
  }

  /* Left preview peeking in */
  .inline-cf-slide.cf-left-1 {
    transform: translateX(-96vw) scale(0.9) !important;
    opacity: 0.45 !important;
    z-index: 5 !important;
  }

  /* Right preview peeking in */
  .inline-cf-slide.cf-right-1 {
    transform: translateX(96vw) scale(0.9) !important;
    opacity: 0.45 !important;
    z-index: 5 !important;
  }

  .inline-cf-slide.cf-left-2,
  .inline-cf-slide.cf-hidden,
  .inline-cf-slide.cf-hidden-left {
    transform: translateX(-180vw) scale(0.7) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .inline-cf-slide.cf-right-2,
  .inline-cf-slide.cf-hidden-right {
    transform: translateX(180vw) scale(0.7) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .inline-cf-caption {
    padding: 1.5rem 1.25rem 1.25rem 1.25rem !important;
  }

  .inline-cf-title {
    font-size: 1.15rem !important;
  }

  .inline-cf-desc {
    font-size: 0.82rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .inline-cf-nav {
    display: none !important;
  }
}

  /* Room Detail Photo Modal on Mobile (Crystal Clear Liquid Glass, 0 purple) */
  .room-modal-overlay {
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .coverflow-modal-card {
    border-radius: 0 !important;
    max-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .room-modal-close-btn {
    position: fixed !important;
    top: 1.2rem !important;
    right: 1.2rem !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    color: #0F172A !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: 3200 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  }

  .coverflow-section {
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .coverflow-viewport {
    width: 100vw !important;
    padding: 0 !important;
    overflow: hidden !important;
    perspective: none !important;
    -webkit-perspective: none !important;
  }

  .coverflow-track {
    width: 100vw !important;
    min-height: 280px !important;
    height: 56vh !important;
    max-height: 440px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .coverflow-slide {
    width: 74vw !important;
    max-width: 330px !important;
    height: 52vh !important;
    max-height: 400px !important;
    min-height: 260px !important;
    border-radius: 24px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease !important;
  }

  .coverflow-slide img {
    border-radius: 22px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .coverflow-slide.cf-active {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
  }

  /* Left preview clearly peeking in on mobile */
  .coverflow-slide.cf-left-1 {
    transform: translateX(-78vw) scale(0.88) !important;
    opacity: 0.65 !important;
    z-index: 5 !important;
  }

  /* Right preview clearly peeking in on mobile */
  .coverflow-slide.cf-right-1 {
    transform: translateX(78vw) scale(0.88) !important;
    opacity: 0.65 !important;
    z-index: 5 !important;
  }

  .coverflow-slide.cf-left-2,
  .coverflow-slide.cf-hidden,
  .coverflow-slide.cf-hidden-left {
    transform: translateX(-160vw) scale(0.7) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .coverflow-slide.cf-right-2,
  .coverflow-slide.cf-hidden-right {
    transform: translateX(160vw) scale(0.7) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ============================================================
   LIGHTBOX — Liquid Glass Photo Viewer
   ============================================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(248, 250, 252, 0.35) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: liquidGlassOverlayIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.lightbox-close:hover {
  background: #FFFFFF;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-content {
  max-width: 1050px;
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 50px rgba(255, 255, 255, 0.1),
    0 30px 80px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  animation: liquidGlassCardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-header {
  margin-bottom: 1.25rem;
}

.lightbox-title-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #0F172A;
  letter-spacing: 0.04em;
  text-shadow: none;
}

.lightbox-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 420px;
  min-height: 340px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 50px rgba(15, 23, 42, 0.15),
    0 0 30px rgba(255, 255, 255, 0.08);
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}

.lightbox-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
  overflow-x: auto;
  padding: 0.5rem;
}

.lightbox-thumb {
  width: 72px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
  opacity: 1;
  border-color: #0F172A;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* ============================================================
   2D AERIAL DRONE & MASTER PLAN HOTSPOT MAP (Interactive 2D View)
   ============================================================ */
.drone-map-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
}

.drone-map-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  background: #0F172A;
  aspect-ratio: 16 / 9;
  max-height: 700px;
}

.drone-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.drone-hotspots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

/* Hotspot Interactive Pin */
.drone-hotspot-item {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 20;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s ease;
}

.drone-hotspot-item:hover,
.drone-hotspot-item.active {
  z-index: 40;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Radar Pulse Beacon */
.hotspot-beacon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotspot-ring {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: hotspotRadar 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

@keyframes hotspotRadar {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.hotspot-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
  color: #0F172A;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drone-hotspot-item:hover .hotspot-badge,
.drone-hotspot-item.active .hotspot-badge {
  background: #0F172A;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.hotspot-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.drone-hotspot-item:hover .hotspot-icon,
.drone-hotspot-item.active .hotspot-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Unified Docked Hotspot Detail Card (Inside Map Frame, Never Overflows) */
.drone-docked-modal {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 250px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s;
  z-index: 80;
}

.drone-docked-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.drone-docked-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #FFFFFF;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.drone-docked-close:hover {
  background: #0F172A;
  transform: scale(1.1);
}

.drone-docked-img-wrap {
  width: 100%;
  height: 130px;
  position: relative;
  overflow: hidden;
  background: #0F172A;
}

.drone-docked-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drone-docked-title-tag {
  position: absolute;
  bottom: 0.45rem;
  left: 0.45rem;
  background: rgba(15, 23, 42, 0.88);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  max-width: calc(100% - 0.9rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drone-docked-mobile-title {
  display: none;
}

.drone-docked-btn-wrap {
  padding: 0.65rem;
}

.drone-docked-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.52rem 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF !important;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.drone-docked-detail-btn:hover {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

@media (max-width: 768px) {
  .drone-map-card {
    padding: 0.6rem !important;
    border-radius: 20px !important;
  }

  .drone-map-frame {
    aspect-ratio: 4 / 3 !important;
    border-radius: 16px !important;
  }

  .hotspot-badge {
    padding: 0.3rem 0.6rem 0.3rem 0.45rem !important;
    font-size: 0.7rem !important;
  }

  .hotspot-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.8rem !important;
  }

  /* Mobile Docked Bottom Card */
  .drone-docked-modal {
    bottom: 0.55rem;
    left: 0.55rem;
    right: 0.55rem;
    width: auto;
    border-radius: 16px;
  }

  .drone-docked-modal-inner {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    gap: 0.65rem;
  }

  .drone-docked-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .drone-docked-title-tag {
    display: none;
  }

  .drone-docked-content-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .drone-docked-mobile-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1.5rem;
  }

  .drone-docked-btn-wrap {
    padding: 0;
  }

  .drone-docked-detail-btn {
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
  }

  .drone-docked-close {
    top: 0.35rem;
    right: 0.35rem;
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }
}

/* Footer */
footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.5rem;
}

/* Universal Thai Word Wrap & Text Flow Safeguard */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
div {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Comprehensive Mobile Responsiveness (< 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0.85rem !important;
  }

  .brand-logo-img {
    height: 32px !important;
  }

  .brand-title {
    font-size: 1.05rem !important;
    letter-spacing: 0.04em !important;
  }

  .section-header {
    margin-bottom: 1.5rem !important;
    padding: 0 0.5rem !important;
  }

  .section-tag {
    font-size: 0.72rem !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0.35rem !important;
  }

  .section-title {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.5rem !important;
  }

  .section-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }

  .rooms-grid {
    grid-template-columns: 1fr !important;
    padding: 0 0.75rem !important;
    gap: 1.5rem !important;
  }

  .room-card {
    border-radius: 20px !important;
  }

  .room-thumb-wrapper {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }

  .room-info {
    padding: 1.25rem 1rem !important;
  }

  .room-title-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.25rem !important;
  }

  .room-title {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }

  .room-price-box {
    text-align: left !important;
    margin-top: 0.25rem !important;
  }

  .room-price {
    font-size: 1.35rem !important;
  }

  .room-meta {
    gap: 0.75rem !important;
    font-size: 0.8rem !important;
    flex-wrap: wrap !important;
  }

  .room-desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  .room-features-list li {
    font-size: 0.82rem !important;
  }

  .packages-section {
    padding: 2rem 0.75rem !important;
    margin: 0 auto !important;
  }

  .package-card {
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
  }

  .package-img-side {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }

  .lightbox-img-wrapper {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 50vh !important;
    border-radius: 14px !important;
    width: 100% !important;
  }

  .package-content {
    padding: 1.25rem 1rem !important;
  }

  .package-title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
  }

  .package-price-tag {
    font-size: 1.45rem !important;
    margin-bottom: 1rem !important;
  }

  .package-desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  .package-highlights li {
    font-size: 0.85rem !important;
  }

  .google-map-iframe-container {
    height: 280px !important;
  }

  .lightbox-title-text {
    font-size: 1.15rem !important;
  }

  .float-fb-chat {
    bottom: 1.25rem !important;
    right: 1.25rem !important;
    padding: 0.7rem 1.15rem !important;
    font-size: 0.82rem !important;
  }
}

/* Hotel Contact Cards Section */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #0F172A;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

a.contact-card {
  cursor: pointer;
  text-decoration: none;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  border-color: #CBD5E1;
  text-decoration: none;
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-card:hover .contact-icon-box {
  transform: scale(1.05);
}

.contact-card-fb .contact-icon-box {
  background: #EFF6FF;
  color: #1877F2;
}

.contact-card-phone .contact-icon-box {
  background: #ECFDF5;
  color: #059669;
}

.contact-card-email .contact-icon-box {
  background: #FEF3C7;
  color: #D97706;
}

.contact-card-address .contact-icon-box {
  background: #F0FDF4;
  color: #16A34A;
}

.contact-card-header-text {
  min-width: 0;
  flex: 1;
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
  display: block;
  margin-bottom: 0.15rem;
  white-space: nowrap;
}

.contact-card-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-val.contact-phone-num {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.contact-card-val.contact-email-val {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.contact-card-desc {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: all 0.2s ease;
}

.contact-card-btn svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.contact-card-btn:hover svg {
  transform: translateX(4px);
}

.contact-btn-fb {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #DBEAFE;
}

.contact-btn-fb:hover {
  background: #1D4ED8;
  color: #FFFFFF;
  border-color: #1D4ED8;
}

.contact-btn-phone {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.contact-btn-phone:hover {
  background: #059669;
  color: #FFFFFF;
  border-color: #059669;
}

.contact-btn-email {
  background: #FFFBEB;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.contact-btn-email:hover {
  background: #D97706;
  color: #FFFFFF;
  border-color: #D97706;
}

.contact-btn-address {
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid #BBF7D0;
  white-space: nowrap;
}

.contact-btn-address:hover {
  background: #16A34A;
  color: #FFFFFF;
  border-color: #16A34A;
}

/* Address Full Width Card */
.contact-card-address-full {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}

.contact-card-address-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.contact-card-address-texts {
  min-width: 0;
}

.contact-card-address-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 0.25rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-address-sub {
  font-size: 0.92rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-address-action {
  flex-shrink: 0;
}

.contact-card-address-action .contact-card-btn {
  margin-top: 0;
  padding: 0.8rem 1.4rem;
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .contact-card-address-full {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }

  .contact-card-address-content {
    align-items: flex-start;
  }

  .contact-card-address-title,
  .contact-card-address-sub {
    white-space: normal;
  }

  .contact-card-address-action .contact-card-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Luxury Amenities Unified Single Card List */
.amenities-single-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  max-width: 920px;
  margin: 1.5rem auto 0 auto;
}

.amenities-list-wrapper {
  display: flex;
  flex-direction: column;
}

.amenity-list-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 2rem;
  border-bottom: 1px solid #F1F5F9;
  transition: background-color 0.25s ease;
}

.amenity-list-row:last-child {
  border-bottom: none;
}

.amenity-list-row:hover {
  background-color: #F8FAFC;
}

.amenity-row-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.amenity-list-row:hover .amenity-row-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  border-color: #CBD5E1;
}

.amenity-row-info {
  flex: 1;
  min-width: 0;
}

.amenity-row-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.amenity-row-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Luxury Amenities Feature Grid List (Fallback) */
.amenities-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.amenity-list-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-list-card:hover {
  transform: translateY(-3px);
  border-color: #CBD5E1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  background: #FFFFFF;
}

.amenity-list-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, background 0.3s ease;
}

.amenity-list-card:hover .amenity-list-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  border-color: #CBD5E1;
}

.amenity-list-content {
  flex: 1;
  min-width: 0;
}

.amenity-list-title {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenity-list-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .amenity-list-row {
    padding: 1.1rem 1.25rem;
    gap: 1rem;
  }

  .amenity-row-icon {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .amenity-row-title {
    font-size: 0.98rem;
  }

  .amenity-row-desc {
    font-size: 0.84rem;
  }

  .amenities-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .amenity-list-card {
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    gap: 1rem;
  }

  .amenity-list-icon {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    border-radius: 12px;
  }

  .amenity-list-title {
    font-size: 0.95rem;
  }

  .amenity-list-desc {
    font-size: 0.82rem;
  }
}

/* Stay Schedule Card (Check-in, Check-out, Breakfast) */
.stay-schedule-card {
  margin: 3.5rem auto 0 auto;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.stay-schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stay-schedule-item:not(:first-child) {
  border-left: 1px solid #E2E8F0;
  padding-left: 1.5rem;
}

.stay-schedule-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}

.stay-schedule-title {
  font-size: 1.05rem;
  color: #0F172A;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.stay-schedule-time {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .stay-schedule-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-radius: 20px;
    margin-top: 2.5rem;
  }

  .stay-schedule-item:not(:first-child) {
    border-left: none;
    border-top: 1px solid #E2E8F0;
    padding-left: 0;
    padding-top: 1.25rem;
  }
}

/* ==========================================================================
   LUXURY SKELETON SHIMMER LOADING SYSTEM
   ========================================================================== */
.skeleton-shimmer {
  position: relative;
  overflow: hidden;
  background-color: #EEF2F6;
  border-radius: 12px;
}

.skeleton-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: skeletonShimmerWave 1.6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes skeletonShimmerWave {
  100% {
    transform: translateX(100%);
  }
}

/* Skeleton Room Card */
.skeleton-room-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.skeleton-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.skeleton-room-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.skeleton-pill {
  border-radius: 9999px;
}

.skeleton-text-line {
  height: 12px;
  border-radius: 6px;
}

.skeleton-title {
  height: 22px;
  width: 58%;
  border-radius: 8px;
}

.skeleton-subtitle {
  height: 13px;
  width: 38%;
  margin-top: 6px;
  border-radius: 6px;
}

.skeleton-price-pill {
  height: 38px;
  width: 85px;
  border-radius: 12px;
}

.skeleton-meta-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.skeleton-meta-tag {
  height: 26px;
  width: 75px;
  border-radius: 8px;
}

.skeleton-btn {
  height: 46px;
  width: 100%;
  border-radius: 14px;
  margin-top: 0.5rem;
}

/* Skeleton Package Card */
.skeleton-package-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 360px 1fr;
  max-width: 920px;
  margin: 0 auto 2.5rem auto;
}

.skeleton-package-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
}

.skeleton-package-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .skeleton-package-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* Image Shimmer Backdrop & Progressive Loading */
.room-thumb-wrapper,
.package-img-side,
.modal-slide-img-wrap,
.google-map-iframe-container {
  position: relative;
  background-color: #EEF2F6;
  overflow: hidden;
}

.room-thumb-wrapper::before,
.package-img-side::before,
.modal-slide-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: skeletonShimmerWave 1.8s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.room-thumb-wrapper img,
.package-img-side img,
.modal-slide-img-wrap img {
  position: relative;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Map Skeleton Placeholder */
.map-skeleton-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #64748B;
}

/* ==========================================================================
   UI/UX PRO MAX - ULTRA-PREMIUM MOBILE & ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Universal Focus Visible (WCAG 2.1 AA Compliant) */
:focus-visible {
  outline: 2px solid #0F172A !important;
  outline-offset: 3px !important;
  border-radius: 6px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0F172A !important;
  outline-offset: 3px !important;
}

/* Vector SVG Iconography Helpers */
.lux-svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.lux-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #0F172A;
  margin-right: 0.25rem;
}

/* Refined Room Meta Chips */
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.room-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.25s ease;
}

.room-meta-chip:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.room-meta-chip svg {
  width: 15px;
  height: 15px;
  stroke: #475569;
}

/* Stay Schedule Card with Vector Luxury Icons */
.stay-schedule-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 28px;
  padding: 2.25rem 2rem;
  box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.stay-schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.stay-schedule-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F6 100%);
  border: 1px solid rgba(203, 213, 225, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  margin-bottom: 0.25rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04), inset 0 1px 1px #FFFFFF;
}

.stay-schedule-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: #0F172A;
}

.stay-schedule-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
}

.stay-schedule-time {
  font-size: 0.88rem;
  color: #64748B;
}

@media (max-width: 768px) {
  .stay-schedule-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  
  .stay-schedule-item {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
}

/* ==========================================================================
   MOBILE STICKY QUICK-ACTION BOOKING BAR (Bottom Bar for 95%+ Mobile Users)
   ========================================================================== */
.mobile-sticky-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom, 0px)) 1.25rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-booking-bar.visible {
  transform: translateY(0);
}

.mobile-sticky-left {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
}

.mobile-sticky-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.mobile-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
}

.mobile-sticky-btn svg {
  width: 17px;
  height: 17px;
  stroke: #FFFFFF;
}

.mobile-sticky-chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #0F172A !important;
  flex-shrink: 0;
}

.mobile-sticky-chat-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .mobile-sticky-booking-bar {
    display: flex;
  }

  /* Reposition Floating Chat Button to avoid collision on Mobile */
  .float-fb-chat {
    bottom: calc(5.2rem + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
    padding: 0.75rem 1.15rem;
    font-size: 0.88rem;
    min-height: 44px;
  }
}

/* Touch Hit Targets (Min 44x44px for iOS HIG & Android Touch Standards) */
.btn,
.nav-link,
.coverflow-nav,
.inline-cf-nav,
.room-modal-close-btn,
.nav-hamburger {
  min-height: 44px;
  touch-action: manipulation;
}

.coverflow-nav,
.inline-cf-nav {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Card Elevation and Soft Ambient Shadows */
.room-card,
.package-card,
.amenities-single-card {
  box-shadow: 0 12px 36px -12px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.room-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -15px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.03) !important;
}

/* Reduced Motion Mode Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .falling-leaves-container {
    display: none !important;
  }

  .float-fb-chat {
    animation: none !important;
  }
}