﻿/* Import Montserrat - Matches the exact geometric lettering of the Motel 6 logo */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F8FAFC; /* Clean, crisp light background */
  color: #0F172A; /* Deep navy for high-contrast, professional text */
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Headings – Matching Logo Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0066CB; /* Classic Motel 6 Logo Blue */
  letter-spacing: -0.02em;
}
/* =========================================================
   MINIMALIST HEADER ARCHITECTURE (CASS LAKE HOTEL)
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: #0F1722;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(15, 23, 34, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(194, 162, 77, 0.3);
}

/* Shrink hanging logo slightly when header is scrolled */
.site-header.scrolled .brand-logo {
  height: 60px;
  transition: height 0.3s ease;
}

.site-header.scrolled .sign-board {
  padding: 6px 12px;
  transition: padding 0.3s ease;
}
.site-header.header-hidden {
  /* Shifts the header height PLUS the hanging signboard overflow out of view */
  transform: translateY(calc(-100% - 60px));
}
.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- NAV GROUPS --- */
.nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

/* --- MINIMAL NAVIGATION LINKS --- */
.brutal-link {
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: transparent;
  border: none;
  transition: color 0.2s ease;
}

.brutal-link:hover {
  color: #C2A24D;
}

/* --- DROPDOWN TRIGGER BUTTON --- */
.dropdown-wrapper {
  position: relative;
}

.dropdown-btn {
  background: transparent;
  border: none;
  color: #E2E8F0;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

.dropdown-icon {
  font-size: 0.65rem;
  color: #C2A24D;
  transition: transform 0.2s ease;
}

.dropdown-wrapper:hover .dropdown-btn {
  color: #FFFFFF;
}

.dropdown-wrapper:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* --- HANGING SIGNBOARD LOGO (MINIMALIST REFINEMENT) --- */
.brand-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1010;
}

.logo-link.signboard-hanging {
  position: absolute;
  top: -18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transform-origin: top center;
  transition: transform 0.4s ease;
}

.logo-link.signboard-hanging:hover {
  transform: translateY(2px);
}

/* Delicate Mounting Chains */
.sign-mount {
  width: 60%;
  display: flex;
  justify-content: space-between;
  height: 18px;
}

.chain {
  width: 1px;
  height: 100%;
  background: rgba(194, 162, 77, 0.5);
  box-shadow: none;
}

/* Minimal Signboard Body */
.sign-board {
  position: relative;
  background: #0F1722;
  padding: 10px 16px;
  border: 1px solid rgba(194, 162, 77, 0.4);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}

.signboard-hanging:hover .sign-board {
  border-color: #C2A24D;
}

.brand-logo {
  height: 90px;
  width: auto;
  display: block;
}

/* Sleek Subtle Screws */
.sign-bolt {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(194, 162, 77, 0.6);
  border-radius: 50%;
}

.bolt-tl { top: 4px; left: 4px; }
.bolt-tr { top: 4px; right: 4px; }
.bolt-bl { bottom: 4px; left: 4px; }
.bolt-br { bottom: 4px; right: 4px; }

/* --- PHONE CTA BUTTON --- */
.brutal-cta {
  background: transparent;
  color: #FFFFFF;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.brutal-cta:hover {
  background: #FFFFFF;
  color: #0F1722;
  border-color: #FFFFFF;
}

.cta-icon {
  font-size: 0.8rem;
}

.live-pulse {
  width: 6px;
  height: 6px;
  background-color: #C2A24D;
  border-radius: 50%;
}
/* Privacy Choices Button Styling */
.privacy-footer-link {
  background: none;
  border: none;
  color: #8a99ad;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
}

.privacy-footer-link:hover {
  color: #2b7fff;
}

.privacy-footer-link:focus-visible {
  outline: 2px solid #2b7fff;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Parent Container Alignment Fix */
.legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-links .divider {
  color: #fff;
  user-select: none;
}
/* =========================================================
   MINIMALIST MEGA MENU DROPDOWN STYLES
   ========================================================= */

/* Off-canvas dropdown positioning */
.mega-menu.brutal-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  width: 880px;
  max-width: calc(100vw - 32px);
  background: #1B2A3A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 16px 36px rgba(0, 0, 0, 0.4);
  padding: 32px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 1050;
}

/* Instant hover reveal */
.dropdown-wrapper:hover .mega-menu.brutal-mega {
  opacity: 1;
  visibility: visible;
}

/* Structure Grid with Architectural Spacing */
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  position: relative;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

/* Editorial Section Tags */
.brutal-tag {
  display: inline-block;
  align-self: flex-start;
  color: #C2A24D;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  border: none;
}

.social-title {
  margin-top: 28px;
}

/* Navigation Links Grid */
.mega-links-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.mega-links-grid li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 4px 0;
  background: transparent;
  border: none;
  transition: color 0.2s ease;
}

.mega-links-grid li a span {
  color: #C2A24D;
  font-size: 0.65rem;
}

.mega-links-grid li a:hover {
  color: #FFFFFF;
}

.mega-links-grid li a:hover span {
  color: #FFFFFF;
}

/* Info Section Card */
.brutal-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  position: relative;
}

.property-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.property-address, 
.property-phone {
  color: #94A3B8;
  font-size: 0.8rem;
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.property-address span , 
.property-phone span {
  color: #C2A24D;
  font-size: 0.85rem;
  margin-top: 2px;
}

.property-phone a {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.property-phone a:hover {
  color: #C2A24D;
}

/* Social Icon Blocks */
.mega-socials {
  display: flex;
  gap: 12px;
}

.mega-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-socials a:hover {
  background: #FFFFFF;
  color: #0F1722;
  border-color: #FFFFFF;
}

/* Mega Footer Section */
.mega-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #64748B;
}

.ownership-text {
  max-width: 320px;
  line-height: 1.5;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #C2A24D;
}

.legal-links .divider {
  color: rgba(255, 255, 255, 0.15);
}
/* =========================================================
   RESPONSIVE CONTROLS & MOBILE DRAWER (MINIMALIST)
   ========================================================= */

/* Desktop Display Rules */
.desktop-only {
  display: flex;
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: background-color 0.2s ease;
}

.mobile-toggle-btn:hover .hamburger-bar {
  background-color: #C2A24D;
}

/* --- DRAWER BACKDROP --- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 34, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- MOBILE DRAWER --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0F1722;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-title {
  color: #C2A24D;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.drawer-close-btn:hover {
  color: #FFFFFF;
}

.drawer-content {
  padding: 24px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-links li a span {
  font-size: 0.65rem;
  color: #C2A24D;
}

.drawer-links li a:hover {
  color: #C2A24D;
  padding-left: 6px;
}

/* Property Info Card in Drawer */
.drawer-property-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  margin-top: auto;
}

.drawer-property-title {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.drawer-info-line {
  color: #94A3B8;
  font-size: 0.78rem;
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.drawer-info-line span {
  color: #C2A24D;
  font-size: 0.8rem;
  margin-top: 2px;
}

.drawer-info-line a {
  color: #E2E8F0;
  text-decoration: none;
}

/* Social Links in Drawer */
.drawer-socials {
  display: flex;
  gap: 10px;
}

.drawer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.drawer-socials a:hover {
  background: #FFFFFF;
  color: #0F1722;
  border-color: #FFFFFF;
}

/* Media Breakpoint Adjustments */
@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .phone-text {
    display: none;
  }

  .brutal-cta {
    padding: 8px 12px;
  }
}
/* =========================================================
   HEADER LAYOUT & POSITIONING FIXES (ALL SCREEN SIZES)
   ========================================================= */

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* Anchor for absolute centering */
}

/* Base Nav Groups */
.nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-left { 
  justify-content: flex-start; 
}

.nav-right { 
  justify-content: flex-end; 
}

/* Center Hanging Logo - Works across all viewports */
.brand-center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1010;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none; /* Prevents container from blocking nav links */
}

.logo-link.signboard-hanging {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  pointer-events: auto; /* Re-enables clicking on the logo */
  transition: transform 0.4s ease;
}

.logo-link.signboard-hanging:hover {
  transform: translateY(2px);
}

/* Mobile Toggle Layout */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  z-index: 1020;
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */

@media screen and (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }

  /* Force left/right groups to stay compact so logo has center space */
  .nav-left,
  .nav-right {
    flex: 0 0 auto;
  }

  /* Scale logo size dynamically for smaller viewports */
  .brand-logo {
    height: 60px; /* Reduced height prevents crowding controls */
    width: auto;
  }

  .sign-board {
    padding: 6px 10px;
  }

  .sign-mount {
    height: 12px;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .phone-text {
    display: none;
  }

  .brutal-cta {
    padding: 8px 12px;
  }
}

/* Small Screens (e.g. iPhone 14 Pro, Pixel 7) */
@media screen and (max-width: 480px) {
  .brand-logo {
    height: 52px;
  }

  .header-container {
    padding: 0 16px;
  }
}
/* =========================================================
   MINIMALIST HERO SECTION STYLES (FIXED ASPECT RATIOS)
   ========================================================= */
.hero-slider-section {
  min-height: 60vh;
  width: 100%;
  background-color: #0F1722;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 70px;
}

.hero-container {
  width: 100%;
  min-height: 70vh;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

/* Left Content Panel */
.hero-content {
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 10;
  height: 100%;
  box-sizing: border-box;
  background-color: #0F1722;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-text-area {
  max-width: 440px;
}

.hero-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #C2A24D;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.08;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  color: #94A3B8;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Right 3-Column Image Cards */
.hero-image-slices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
  align-content: center;
  width: 100%;
  box-sizing: border-box;
}

.image-slice {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4; /* Keeps images naturally proportioned without extreme vertical stretching */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #15202B;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slice-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.slice-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Center subject focal points */
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.slice-inner img.active {
  opacity: 1;
  z-index: 2;
}

/* Subtle Vignette for Text Contrast */
.slice-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 34, 0.1) 60%, rgba(15, 23, 34, 0.8) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Minimalist Captions */
.slice-caption {
  position: absolute;
  bottom: 20px;
  left: 16px;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 4;
  transition: opacity 0.3s ease;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media screen and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 80px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-image-slices {
    padding: 24px;
    gap: 12px;
  }
}

@media screen and (max-width: 640px) {
  .hero-content {
    padding: 60px 24px;
  }

  .hero-image-slices {
    grid-template-columns: 1fr;
  }

  .image-slice {
    aspect-ratio: 16 / 9;
  }
}
/* =========================================================
   WELCOME SECTION — ETHEREAL DESIGN SYSTEM
   ========================================================= */

.welcome-section.ethereal-theme {
  background: #0F1722;
  width: 100%;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  box-sizing: border-box;
  
}

/* Ambient Radial Glow Backgrounds */
.ethereal-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.glow-top {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194, 162, 77, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  top: 0px;
  left: 10%;
}

.glow-bottom {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 122, 189, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: -150px;
  right: 5%;
}

.welcome-container {
  max-width: 1300px;
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- ETHEREAL CENTER GLASS CARD --- */
.welcome-content.ethereal-glass-card {
  background: rgba(15, 23, 34, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 56px 48px 40px 48px;
  max-width: 820px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.ethereal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C2A24D;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 20px;
  background: rgba(194, 162, 77, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.2);
}

.welcome-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: #F8FAFC;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #C2A24D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.welcome-text {
  color: #94A3B8;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Highlights Grid */
.ethereal-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.highlight-item {
  color: #CBD5E1;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- ASYMMETRICAL FLOATING IMAGES (NEW POSITIONS) --- */
.ethereal-gallery-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ethereal-img-card {
  position: absolute;
  pointer-events: auto;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top-Left Image Floating Offset */
.img-card-top-left {
  top: -40px;
  left: -60px;
  width: 270px;
}

.img-card-top-left .img-wrapper {
  border-radius: 120px 120px 24px 24px; /* Organic Ethereal Curve */
  height: 320px;
}

.floating-tag {
  position: absolute;
  bottom: -12px;
  right: 20px;
  background: #080D16;
  color: #C2A24D;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.3);
}

/* Bottom-Right Image Floating Offset */
.img-card-bottom-right {
  bottom: -40px;
  right: -60px;
  width: 280px;
}

.img-card-bottom-right .img-wrapper {
  border-radius: 24px 24px 140px 140px; /* Inverted Soft Curve */
  height: 300px;
}

.ethereal-ring {
  position: absolute;
  inset: -12px;
  border: 1px stroke rgba(194, 162, 77, 0.2);
  border-radius: 32px 32px 150px 150px;
  pointer-events: none;
}

/* Image Wrappers */
.ethereal-img-card .img-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ethereal-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9);
}

.ethereal-img-card:hover {
  transform: translateY(-8px);
}

.ethereal-img-card:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* --- TEXT SCROLL CONTAINER --- */
.welcome-text-container {
  max-height: 220px;
  overflow-y: auto;
  padding: 0 10px;
  margin-bottom: 20px;
  transition: max-height 0.5s ease;
  scrollbar-width: none;
}

.welcome-text-container::-webkit-scrollbar {
  display: none;
}

.welcome-content.is-expanded .welcome-text-container {
  max-height: 480px;
}

.content-block {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-block.active {
  display: block;
  opacity: 1;
}

.welcome-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.welcome-text {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Gold Keyword Link Styling */
.welcome-link {
  color: #C2A24D;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.welcome-link:hover {
  color: #FFFFFF;
}

/* --- HIGHLIGHTS BAR --- */
.ethereal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.highlight-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: #C2A24D;
  background: rgba(194, 162, 77, 0.1);
  border: 1px solid rgba(194, 162, 77, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
}

/* --- ETHEREAL BUTTONS --- */
.welcome-read-more-btn.ethereal-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}

.welcome-read-more-btn.ethereal-btn:hover {
  background: rgba(194, 162, 77, 0.15);
  border-color: #C2A24D;
  color: #FFFFFF;
}

.welcome-read-more-btn.expanded .btn-icon {
  transform: rotate(180deg);
}
/* --- FLOATING GLASS RESERVATION BAR --- */
.welcome-reservation-bar.ethereal-bar {
  background: rgba(10, 16, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.res-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.res-field label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #C2A24D;
  margin-bottom: 6px;
}

.res-field input,
.res-field select {
  background: transparent;
  border: none;
  outline: none;
  color: #F8FAFC;
  font-size: 0.88rem;
  cursor: pointer;
}

.res-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.res-btn.ethereal-cta-btn {
  background: linear-gradient(135deg, #C2A24D 0%, #A38234 100%);
  color: #080D16;
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(194, 162, 77, 0.25);
}

.res-btn.ethereal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(194, 162, 77, 0.4);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

@media screen and (max-width: 1200px) {
  .img-card-top-left {
    left: -20px;
    width: 210px;
  }
  .img-card-bottom-right {
    right: -20px;
    width: 220px;
  }
}

@media screen and (max-width: 992px) {
  .ethereal-gallery-layer {
    display: none; /* Softly removes images on mobile to keep focus on the glass card */
  }

  .welcome-content.ethereal-glass-card {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .welcome-reservation-bar.ethereal-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .res-divider {
    width: 100%;
    height: 1px;
  }

  .res-btn.ethereal-cta-btn {
    width: 100%;
  }
}
/* =========================================================
   LIGHT ETHEREAL ROOMS SECTION (GRID LAYOUT)
   ========================================================= */

.rooms-section.ethereal-light {
  background: #F4F5F8; /* Soft ethereal off-white/gray balance */
  color: #1E293B;
  padding: 20px 40px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Ambient Radial Light Gradients for Soft Depth */
.ethereal-light-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.glow-top-right {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 208, 162, 0.3) 0%, rgba(244, 245, 248, 0) 70%);
  top: -150px;
  right: -100px;
}

.glow-bottom-left {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(195, 215, 230, 0.35) 0%, rgba(244, 245, 248, 0) 70%);
  bottom: -200px;
  left: -150px;
}

.rooms-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* --- HEADER BAR --- */
.rooms-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.ethereal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #B38E36;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(194, 162, 77, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.2);
}

.rooms-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #0F172A;
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.rooms-title span {
  font-weight: 600;
  background: linear-gradient(135deg, #0F172A 0%, #C2A24D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 2-CARD GRID --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
}

/* --- LIGHT ETHEREAL CARD --- */
.room-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.07);
  border-color: rgba(194, 162, 77, 0.35);
  background: rgba(255, 255, 255, 0.85);
}

/* ETHEREAL IMAGE FRAME */
.card-media {
  position: relative;
  padding: 16px 16px 0 16px;
}

.card-media .img-wrapper {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 100px 20px;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .card-media img {
  transform: scale(1.05);
}

.cap-badge {
  position: absolute;
  bottom: 12px;
  left: 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: #0F172A;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* DETAILS & TYPOGRAPHY */
.card-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.room-desc {
  font-size: 17px;
  color: #000;
  line-height: 1.65;
  margin: 0 0 18px 0;
  font-weight: 300;
}

/* AMENITIES TAGS */
.room-amenities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-amenities-tags span {
  font-size: 0.72rem;
  color: #475569;
  background: rgba(235, 240, 245, 0.7);
  border: 1px solid rgba(210, 220, 230, 0.6);
  padding: 5px 12px;
  border-radius: 100px;
}

/* FOOTER BUTTONS */
.card-footer {
  margin-top: auto;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C2A24D 0%, #A38234 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(194, 162, 77, 0.25);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media screen and (max-width: 768px) {
  .rooms-section.ethereal-light {
    padding: 60px 20px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-media .img-wrapper {
    height: 210px;
  }
}
/* =========================================================
   REFINED ETHEREAL AMENITIES SECTION
   ========================================================= */

.amenities-section.ethereal-light {
  background: #F4F5F8;
  color: #0F172A;
  padding: 40px 40px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Enhanced Ambient Light Glows */
.amenities-section .glow-top-left {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  background: radial-gradient(circle, rgba(195, 215, 230, 0.45) 0%, rgba(244, 245, 248, 0) 70%);
  top: -120px;
  left: -150px;
}

.amenities-section .glow-bottom-right {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
  background: radial-gradient(circle, rgba(226, 208, 162, 0.4) 0%, rgba(244, 245, 248, 0) 70%);
  bottom: -180px;
  right: -120px;
}

.amenities-container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* --- HEADER BAR --- */
.amenities-header-center {
  text-align: center;
  margin-bottom: 64px;
}

.amenities-header-center .ethereal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B38E36;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 14px;
  background: rgba(194, 162, 77, 0.12);
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.35);
  box-shadow: 0 2px 10px rgba(194, 162, 77, 0.08);
}

.amenities-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #0F172A;
  margin: 0 0 16px 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.amenities-title span {
  font-weight: 700;
  background: linear-gradient(135deg, #0F172A 0%, #C2A24D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amenities-subtitle {
  font-size: 0.98rem;
  color: #334155; /* Darker slate for high contrast */
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

/* --- AMENITIES GRID --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 56px;
}

/* --- CARD ARCHITECTURE --- */
.amenity-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Gold Accent Top Line on Hover */
.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0F172A 0%, #C2A24D 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 162, 77, 0.4);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

.amenity-card:hover::before {
  opacity: 1;
}

/* ICON STYLES */
.amenity-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.amenity-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #0F1722; /* Dark header match */
  color: #C2A24D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(15, 23, 34, 0.15);
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon-box {
  transform: scale(1.06);
  background: #C2A24D;
  color: #0F1722;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C2A24D;
  background: rgba(194, 162, 77, 0.1);
  border: 1px solid rgba(194, 162, 77, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

/* TYPOGRAPHY IN CARDS */
.amenity-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.amenity-desc {
  font-size: 0.88rem;
  color: #475569; /* Deep clear slate */
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

.amenity-desc strong {
  color: #0F172A;
  font-weight: 600;
}

/* FEATURED CARD STYLING */
.amenity-card.featured-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #0F1722 0%, #1B2A3A 100%);
  border-color: rgba(194, 162, 77, 0.3);
  color: #FFFFFF;
}

.amenity-card.featured-card .amenity-name {
  color: #FFFFFF;
}

.amenity-card.featured-card .amenity-desc {
  color: #94A3B8;
}

.amenity-card.featured-card .amenity-desc strong {
  color: #FFFFFF;
}

.amenity-card.featured-card .amenity-icon-box {
  background: rgba(194, 162, 77, 0.15);
  border: 1px solid rgba(194, 162, 77, 0.4);
}

.amenity-footer-pill {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.amenity-footer-pill span {
  font-size: 0.72rem;
  color: #C2A24D;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(194, 162, 77, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 500;
}

/* --- FOOTER BANNER --- */
.amenities-footer-banner {
  background: #0F1722; /* Matches header dark theme */
  border: 1px solid rgba(194, 162, 77, 0.3);
  border-radius: 20px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 15px 35px rgba(15, 23, 34, 0.2);
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.banner-badge {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #C2A24D;
}

.banner-text strong {
  color: #FFFFFF;
  font-size: 1.05rem;
  display: block;
  font-weight: 500;
}

.banner-text span {
  color: #94A3B8;
  font-size: 0.86rem;
}

.btn-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C2A24D;
  color: #0F1722;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-banner-cta:hover {
  background: #FFFFFF;
  color: #0F1722;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media screen and (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenity-card.featured-card {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  .amenities-section.ethereal-light {
    padding: 70px 20px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenity-card.featured-card {
    grid-column: span 1;
  }

  .amenities-footer-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .btn-banner-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
/* =========================================================
   FULLSCREEN EDITORIAL FLYER SLIDER (#0F1722) - NO OVERFLOW
   ========================================================= */

.attractions-fullscreen-section {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: #0F1722;
  position: relative;
  overflow: hidden; /* Prevents outer horizontal scrolling */
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* FLOATING NAVIGATION BUTTONS */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 23, 34, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.slider-nav-btn.prev-btn {
  left: 40px;
}

.slider-nav-btn.next-btn {
  right: 40px;
}

.slider-nav-btn:hover {
  background: #C2A24D;
  color: #0F1722;
  border-color: #C2A24D;
  transform: translateY(-50%) scale(1.08);
}

/* TRACK LAYOUT */
.attractions-fullscreen-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide Scrollbar Chrome / Safari / Opera */
.attractions-fullscreen-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* FLYER SLIDE */
.fullscreen-flyer {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  box-sizing: border-box;
}

.flyer-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-flyer:hover .flyer-bg-img {
  transform: scale(1.03);
}

.flyer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg, 
    rgba(15, 23, 34, 0.6) 0%, 
    rgba(15, 23, 34, 0.25) 40%, 
    rgba(15, 23, 34, 0.95) 100%
  );
}

/* EDITORIAL OVERLAY CONTENT */
.flyer-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.flyer-top-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.flyer-badge {
  color: #C2A24D;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  background: rgba(194, 162, 77, 0.12);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.35);
  backdrop-filter: blur(10px);
}

.flyer-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  background: rgba(15, 23, 34, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
}

.flyer-distance {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #C2A24D;
  background: rgba(15, 23, 34, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(194, 162, 77, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-left: auto;
}

.flyer-main-body {
  max-width: 750px;
}

.flyer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.flyer-desc {
  font-size: 1.15rem;
  color: #E2E8F0;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.flyer-footer {
  display: flex;
  align-items: center;
}

.flyer-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.flyer-link span {
  color: #C2A24D;
  transition: transform 0.3s ease;
}

.flyer-link:hover {
  background: #C2A24D;
  color: #0F1722;
  border-color: #C2A24D;
  box-shadow: 0 10px 30px rgba(194, 162, 77, 0.3);
}

.flyer-link:hover span {
  color: #0F1722;
  transform: translateX(6px);
}

/* =========================================================
   TABLET & MOBILE RESPONSIVE OPTIMIZATIONS
   ========================================================= */

/* iPad & Tablet Landscape / Portrait (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .attractions-fullscreen-section {
    height: 100vh;
    min-height: 650px;
  }

  .flyer-content {
    padding: 70px 60px 80px 60px; /* Leaves room for navigation arrows */
  }

  .flyer-title {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    margin-bottom: 16px;
  }

  .flyer-desc {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 90%;
  }

  .slider-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .slider-nav-btn.prev-btn {
    left: 15px;
  }

  .slider-nav-btn.next-btn {
    right: 15px;
  }
}

/* Mobile Devices & Phones (max-width: 768px) */
@media screen and (max-width: 768px) {
  .attractions-fullscreen-section,
  .fullscreen-flyer {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height fix for mobile browsers */
    min-height: 580px;
  }

  .flyer-overlay {
    /* Darker overlay on mobile for better text readability */
    background: linear-gradient(
      180deg, 
      rgba(15, 23, 34, 0.75) 0%, 
      rgba(15, 23, 34, 0.4) 40%, 
      rgba(15, 23, 34, 0.95) 100%
    );
  }

  .flyer-content {
    padding: 40px 20px 80px 20px; /* Leaves clear space at bottom for nav buttons */
    justify-content: space-between;
  }

  /* Top Meta Badges */
  .flyer-top-bar {
    gap: 8px;
  }

  .flyer-badge,
  .flyer-category,
  .flyer-distance {
    font-size: 0.65rem;
    padding: 6px 12px;
    letter-spacing: 0.1em;
  }

  .flyer-distance {
    margin-left: 0; /* Keeps distance tag inline on mobile */
  }

  /* Main Typography */
  .flyer-main-body {
    max-width: 100%;
    margin-top: auto;
    margin-bottom: 20px;
  }

  .flyer-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .flyer-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #CBD5E1;
    /* Limit lines on mobile to prevent content spilling */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .flyer-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.78rem;
  }

  /* Bottom Positioned Nav Buttons to Avoid Text Collision */
  .slider-nav-btn {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 44px;
    height: 44px;
    background: rgba(15, 23, 34, 0.8);
    border-color: rgba(194, 162, 77, 0.4);
    color: #C2A24D;
  }

  .slider-nav-btn.prev-btn {
    left: 20px;
  }

  .slider-nav-btn.next-btn {
    right: 20px;
  }

  .slider-nav-btn:hover {
    transform: scale(1.05);
  }
}
/* =========================================================
   FULL-BLEED ETHEREAL PORTAL SHOWCASE (#0F1722)
   ========================================================= */

.portal-video-section {
  position: relative;
  background-color: #0F1722;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* FULL-BLEED STAGE FRAME */
.portal-stage {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STICKY BACKGROUND SCENE */
.portal-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0);
}

.portal-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(0.8) contrast(1.1);
}

/* DARK ETHEREAL VIGNETTE */
.portal-shadow-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    linear-gradient(90deg, #0F1722 0%, rgba(15, 23, 34, 0.4) 30%, rgba(15, 23, 34, 0.4) 70%, #0F1722 100%),
    radial-gradient(ellipse at center, rgba(15, 23, 34, 0.1) 0%, rgba(15, 23, 34, 0.85) 100%);
}

/* CURVED ARCH SVG DIVIDERS */
.portal-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.portal-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.portal-divider-top {
  top: -1px;
}

.portal-divider-bottom {
  bottom: -1px;
}

/* CONTENT & PLAY BUTTON CONTAINER */
.portal-content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  padding: 0 60px;
}

.portal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-badge {
  color: #C2A24D;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  display: inline-block;
  margin-bottom: 6px;
  background: rgba(194, 162, 77, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.3);
  backdrop-filter: blur(8px);
}

.portal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  margin: 0;
  color: #FFFFFF;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

/* GLOWING GOLD BUTTON */
.portal-play-btn {
  position: relative;
  background: rgba(15, 23, 34, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(194, 162, 77, 0.5);
  padding: 12px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.portal-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.5);
  animation: portalPulse 2.5s infinite ease-in-out;
  pointer-events: none;
}

.portal-icon-box {
  width: 36px;
  height: 36px;
  background: #C2A24D;
  color: #0F1722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(194, 162, 77, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.portal-play-text {
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-play-btn:hover {
  background: #C2A24D;
  border-color: #C2A24D;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(194, 162, 77, 0.4);
}

.portal-play-btn:hover .portal-play-text {
  color: #0F1722;
}

.portal-play-btn:hover .portal-icon-box {
  background: #0F1722;
  color: #C2A24D;
  transform: scale(1.05);
}

@keyframes portalPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.03, 1.08); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* POPUP MODAL STYLING */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 34, 0.94);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #0F1722;
  border: 1px solid rgba(194, 162, 77, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(15, 23, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.video-modal-close:hover {
  background: #C2A24D;
  color: #0F1722;
  border-color: #C2A24D;
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FIXED MOBILE RESPONSIVE DESIGN (UNDER 768px) */
@media screen and (max-width: 768px) {
  .portal-stage {
    height: auto;
    min-height: 340px;
    padding: 60px 0;
  }

  .portal-content-wrap {
    padding: 0 20px;
  }

  .portal-content {
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    text-align: center;   /* Centers title & badge text */
    gap: 28px;
  }

  .portal-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .portal-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
    margin-bottom: 10px;
  }

  .portal-title {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .portal-play-btn {
    width: 100%;
    max-width: 280px;      /* Full width button capped for clean UI */
    justify-content: center;
    padding: 14px 20px;
  }

  .portal-divider svg {
    height: 50px;          /* Scaled down SVG waves to prevent visual overlapping */
  }

  /* Modal Mobile Fixes */
  .video-modal-overlay {
    padding: 12px;
  }

  .video-modal-container {
    border-radius: 14px;
  }

  .video-modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }
}
/* =========================================================
   SPLIT FAQ & MOSAIC GALLERY SECTION (#0F1722)
   ========================================================= */

.faq-gallery-section {
  background-color: #0F1722;
  padding: 120px 0;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

.faq-gallery-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start; /* Adjusted to align headers neatly at top */
}

/* --- BADGES & TITLES --- */
.ethereal-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C2A24D;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 12px;
  background: rgba(194, 162, 77, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(194, 162, 77, 0.25);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin: 0 0 36px 0;
  color: #FFFFFF;
}

.section-title span {
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, #C2A24D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- LEFT COLUMN: FAQ --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(194, 162, 77, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(194, 162, 77, 0.1);
  border: 1px solid rgba(194, 162, 77, 0.3);
  color: #C2A24D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: #C2A24D;
  color: #0F1722;
}

.faq-answer {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.65;
  font-weight: 300;
}

.faq-answer p {
  margin: 0;
}
/* Styling for links within the FAQ answers to match the dark luxury theme */
.faq-inline-link {
  color: #C2A24D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}

.faq-inline-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
/* --- RIGHT COLUMN: MOSAIC GALLERY --- */
.mosaic-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 175px 175px; /* Sized to align grid height nicely with the accordion */
  gap: 18px;
}

.collage-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-item:hover .collage-img {
  transform: scale(1.06);
}

/* Grid Spanning */
.item-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.item-top-right {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.item-bottom-right {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.collage-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 34, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(194, 162, 77, 0.3);
  color: #C2A24D;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- RESPONSIVE DESIGN --- */
@media screen and (max-width: 992px) {
  .faq-gallery-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mosaic-collage {
    grid-template-rows: 180px 180px;
  }
}
/* =========================================================
   UNIQUE MODERN LUXURY FOOTER STYLES (#0F1722 / #C2A24D)
   ========================================================= */

.site-footer {
  position: relative;
  background-color: #0F1722;
  color: #94A3B8;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 30px  30px ;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 162, 77, 0.6), transparent);
  box-shadow: 0 0 25px rgba(194, 162, 77, 0.8);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* FOOTER TOP GRID */
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Column 1: Brand */
.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94A3B8;
  margin-bottom: 24px;
  font-weight: 300;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.add h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
}

.cgs2 {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.25s ease;
}

.cgs2:hover {
  color: #C2A24D;
}

.gen {
  font-size: 0.85rem;
  color: #94A3B8;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(194, 162, 77, 0.12);
  color: #C2A24D;
  border: 1px solid rgba(194, 162, 77, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  font-size: 0.88rem;
}

.info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
}

.cgsl {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.cgsl:hover {
  color: #C2A24D;
}

/* Headings */
.footer-heading {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #C2A24D;
  border-radius: 2px;
}

/* Column 2: Quicklinks Grid */
.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.quick-links-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.quick-links-list a .arrow {
  color: #C2A24D;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.quick-links-list a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.quick-links-list a:hover .arrow {
  transform: translateX(3px);
}

/* Column 3: Social & Action */
.social-intro {
  font-size: 0.88rem;
  color: #94A3B8;
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: #C2A24D;
  color: #0F1722;
  border-color: #C2A24D;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(194, 162, 77, 0.4);
}

.footer-cta-box {
  background: linear-gradient(135deg, rgba(194, 162, 77, 0.08) 0%, rgba(15, 23, 34, 0.6) 100%);
  border: 1px solid rgba(194, 162, 77, 0.3);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.footer-cta-box h5 {
  color: #FFFFFF;
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-book-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  background: #C2A24D;
  color: #0F1722;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(194, 162, 77, 0.3);
}

.footer-book-btn:hover {
  background: #d4b45d;
  box-shadow: 0 6px 20px rgba(194, 162, 77, 0.5);
  transform: translateY(-2px);
}

/* MIDDLE TRADEMARK SECTION */
.footer-trademark-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 15px;
  text-align: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.01);
}

.trademark-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin: 0;
  letter-spacing: 0.01em;
}

.trademark-text strong {
  color: #C2A24D;
  font-weight: 700;
}

/* BOTTOM LEGAL BAR */
.footer-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748B;
  padding-top: 10px;
}

.legal-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.legal-link:hover {
  color: #C2A24D;
}

.privacy-footer-link {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s ease;
}

.privacy-footer-link:hover {
  color: #C2A24D;
}

.divider {
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quick-links-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom-bar .divider {
    display: none;
  }
  
  .quick-links-list {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   UNIQUE BACK TO TOP BUTTON WITH SCROLL RING
   ========================================================= */

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Glass Core Inner Hub */
.top-btn-inner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0088ff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.arrow-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* SVG Progress Ring Setup */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg); /* Start ring fill from top center */
  z-index: 1;
}

.progress-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.progress-ring-circle {
  fill: none;
  stroke: url(#blueGradient); /* Falls back to solid color if gradient not defined */
  stroke: #0066ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 150.796; /* 2 * PI * r (2 * 3.14159 * 24) */
  stroke-dashoffset: 150.796;
  transition: stroke-dashoffset 0.1s linear;
}

/* Hover Dynamics */
.back-to-top-btn:hover .top-btn-inner {
  background: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.8), 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: scale(1.08);
}

.back-to-top-btn:hover .arrow-icon {
  transform: translateY(-3px);
}

.back-to-top-btn:active .top-btn-inner {
  transform: scale(0.95);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
  }
}
/* =========================================================
   REUSABLE INNER PAGE BOOKING SECTION (#0F1722 / #C2A24D)
   ========================================================= */
.inner-booking-section {
  background-color: #0F1722;
  width: 100%;
  padding: 30px 24px;
  position: relative;
  z-index: 20;
}

.inner-booking-section *, 
.inner-booking-section *::before, 
.inner-booking-section *::after {
  box-sizing: border-box;
}

.inner-booking-container {
  max-width: 1140px;
  margin: 0 auto;
}

.inner-booking-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 24px;
  gap: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.inner-booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inner-booking-field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C2A24D;
}

.inner-input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.inner-input-box:focus-within {
  border-color: #C2A24D;
  background: rgba(255, 255, 255, 0.08);
}

.inner-field-icon {
  color: #C2A24D;
  flex-shrink: 0;
}

.inner-input-box input[type="date"],
.inner-input-box select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.inner-input-box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

.inner-input-box select option {
  background-color: #0F1722;
  color: #FFFFFF;
}

.inner-booking-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.inner-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #C2A24D;
  color: #0F1722;
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(194, 162, 77, 0.3);
  transition: all 0.3s ease;
}

.inner-booking-btn:hover {
  background-color: #d4b45d;
  box-shadow: 0 6px 20px rgba(194, 162, 77, 0.5);
  transform: translateY(-2px);
}

/* Responsive Adaptations */
@media (max-width: 992px) {
  .inner-booking-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .inner-booking-divider {
    display: none;
  }

  .inner-booking-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .inner-booking-section {
    padding: 0 16px 40px 16px;
  }
}

/* =========================================================
   HERO INNER SECTION (SINGLE IMAGE - LUXURY DARK)
   ========================================================= */
.hero-inner-static {
  min-height: 80vh;
  width: 100%;
  background-color: #0F1722;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  margin-top: 70px;
}

.hero-inner-static *, 
.hero-inner-static *::before, 
.hero-inner-static *::after {
  box-sizing: border-box;
}

.hero-inner-static .hero-container {
  width: 100%;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Left Content Panel */
.hero-inner-static .hero-content {
  padding: 80px 40px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 10;
  height: 100%;
}

.hero-inner-static .brand-text-area {
  width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  font-size: 0.85rem;
}

.breadcrumb-link {
  color: #8A99AD;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #C2A24D;
}

.breadcrumb-separator {
  color: #fff;
}

.breadcrumb-item.active {
  color: #C2A24D;
  font-weight: 600;
}

/* Text Typography */
.hero-inner-static .hero-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.hero-inner-static .hero-title span {
  display: block;
  color: #C2A24D;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-top: 8px;
}

.hero-inner-static .hero-subtitle {
  color: #94A3B8;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 440px;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(194, 162, 77, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(194, 162, 77, 0.1);
  border-color: #C2A24D;
  color: #C2A24D;
}

/* Right Single Image Container */
.hero-inner-static .hero-image-single {
  height: 100%;
  min-height: 80vh;
  width: 100%;
  padding: 40px 60px 40px 20px;
  display: flex;
  align-items: center;
}

.hero-inner-static .image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 16px;
  border: 1px solid rgba(194, 162, 77, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-inner-static .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-inner-static .card-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-inner-static .image-card:hover .card-inner img {
  transform: scale(1.03);
}

/* Gradient Overlay */
.hero-inner-static .card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 34, 0.1) 0%, rgba(15, 23, 34, 0) 50%, rgba(15, 23, 34, 0.7) 100%);
  pointer-events: none;
}

/* Caption Badge */
.hero-inner-static .card-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 34, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(194, 162, 77, 0.3);
  z-index: 3;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1024px) {
  .hero-inner-static {
    min-height: auto;
  }

  .hero-inner-static .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner-static .hero-content {
    padding: 120px 32px 32px 32px;
  }

  .hero-inner-static .hero-subtitle {
    max-width: 100%;
  }

  .hero-inner-static .hero-image-single {
    height: 320px;
    min-height: 320px;
    padding: 0 32px 32px 32px;
  }
}

@media (max-width: 768px) {
  .hero-inner-static .hero-content {
    padding: 130px 20px 24px 20px;
  }

  .hero-inner-static .hero-title {
    font-size: 2.2rem;
  }

  .hero-inner-static .hero-title span {
    font-size: 1.1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-inner-static .hero-image-single {
    height: 240px;
    min-height: 240px;
    padding: 0 20px 24px 20px;
  }

  .hero-inner-static .card-caption {
    bottom: 14px;
    left: 14px;
  }
}

/* =========================================================
   AMENITIES SECTION (#0F1722 / #C2A24D LUXURY DARK STYLE)
   ========================================================= */
.amenities-section {
  background-color: #0F1722;
  color: #FFFFFF;
  padding: 60px 24px;
  font-family: 'Montserrat', sans-serif;
}

.amenities-section *, 
.amenities-section *::before, 
.amenities-section *::after {
  box-sizing: border-box;
}

.amenities-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header & Intro Paragraphs */
.amenities-intro {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C2A24D;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.25;
  text-decoration: none;
}

.intro-text p {
  color: #94A3B8;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 18px 0;
}

/* Inline SEO Links */
.inline-link {
  color: #C2A24D;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.inline-link:hover {
  color: #FFFFFF;
}

/* Popular Facilities Highlight Bar */
.popular-facilities-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.popular-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.popular-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 162, 77, 0.1);
  border: 1px solid rgba(194, 162, 77, 0.3);
  color: #C2A24D;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Categorized Cards Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.amenity-card:hover {
  border-color: rgba(194, 162, 77, 0.4);
  transform: translateY(-2px);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bullet Checkmark Items */
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.amenity-list li {
  position: relative;
  padding-left: 22px;
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.4;
}

.amenity-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #C2A24D;
  font-weight: 800;
}

/* Responsive Adaptations */
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .amenities-section {
    padding: 50px 16px;
  }

  .popular-facilities-card {
    padding: 20px 16px;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   CASS LAKE HOTEL - THINGS TO DO SECTION (SCOPED)
   ========================================================= */
.clh-todo-section {
  background-color: #0F1722;
  color: #FFFFFF;
  padding: 20px 16px;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
  .clh-todo-section {
    padding: 60px 24px;
  }
}

.clh-todo-section *, 
.clh-todo-section *::before, 
.clh-todo-section *::after {
  box-sizing: border-box;
}

.clh-todo-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Spacing */
.clh-todo-header {
  margin-bottom: 28px;
}

.clh-section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C2A24D;
  margin-bottom: 8px;
}

.clh-section-title {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  line-height: 1.25;
  text-decoration: none;
}

.clh-intro-text p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.clh-inline-link {
  color: #C2A24D;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.clh-inline-link:hover {
  color: #E2C775;
}

/* Interactive Split Showcase Container */
.clh-attractions-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .clh-attractions-showcase {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
  }
}

/* Left Navigation Tabs */
.clh-attraction-tabs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.clh-attraction-tabs::-webkit-scrollbar {
  height: 4px;
}
.clh-attraction-tabs::-webkit-scrollbar-thumb {
  background: rgba(194, 162, 77, 0.3);
  border-radius: 4px;
}

@media (min-width: 1024px) {
  .clh-attraction-tabs {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 10px;
  }
}

.clh-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: left;
  color: #94A3B8;
  cursor: pointer;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  font-family: inherit;
}

@media (min-width: 1024px) {
  .clh-tab-btn {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    gap: 14px;
  }
}

.clh-tab-btn:hover {
  background: rgba(194, 162, 77, 0.08);
  border-color: rgba(194, 162, 77, 0.3);
  color: #FFFFFF;
}

.clh-tab-btn.active {
  background: rgba(194, 162, 77, 0.15);
  border-color: #C2A24D;
  color: #FFFFFF;
}

.clh-tab-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #C2A24D;
}

.clh-tab-btn.active .clh-tab-num {
  color: #E2C775;
}

.clh-tab-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .clh-tab-name {
    font-size: 0.92rem;
    white-space: normal;
  }
}

/* Right Display Section */
.clh-attraction-display {
  position: relative;
  width: 100%;
}

.clh-attraction-card {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.clh-attraction-card.active {
  display: flex;
  animation: clhFadeIn 0.35s ease-in-out;
}

@keyframes clhFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.clh-card-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
}

@media (min-width: 600px) {
  .clh-card-image-wrap {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .clh-card-image-wrap {
    height: 340px;
  }
}

.clh-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clh-card-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .clh-card-details {
    padding: 24px;
  }
}

.clh-card-details h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

@media (min-width: 768px) {
  .clh-card-details h3 {
    font-size: 1.3rem;
  }
}

.clh-card-details p {
  color: #CBD5E1;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 10px 0;
}

.clh-card-details p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .clh-card-details p {
    font-size: 0.92rem;
  }
}

/* =========================================================
   NEARBY LOCATIONS GRID
   ========================================================= */
.clh-nearby-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 0 auto;
}

@media (min-width: 640px) {
  .clh-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .clh-nearby-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.clh-nearby-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.clh-nearby-card:hover {
  border-color: rgba(194, 162, 77, 0.4);
}

.clh-nearby-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clh-cat-icon {
  width: 20px;
  height: 20px;
  color: #C2A24D;
  flex-shrink: 0;
}

.clh-nearby-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.clh-location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clh-location-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.clh-place-name {
  color: #CBD5E1;
  font-weight: 500;
}

.clh-place-name small {
  color: #64748B;
  font-size: 0.78rem;
  font-weight: 400;
  margin-left: 2px;
}

.clh-distance {
  color: #C2A24D;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.82rem;
  background: rgba(194, 162, 77, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(194, 162, 77, 0.25);
}
/* =========================================================
   LOCATION PAGE SECTION (RESPONSIVE LUXURY GOLD THEME)
   ========================================================= */
.location-section {
  background-color: #0F1722;
  color: #FFFFFF;
  padding: 40px 24px;
  font-family: 'Montserrat', sans-serif;
}

.location-section *, 
.location-section *::before, 
.location-section *::after {
  box-sizing: border-box;
}

.location-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Header */
.location-header {
  margin-bottom: 36px;
}

.location-header .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C2A24D;
  margin-bottom: 8px;
}

.location-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.25;
}

/* Main Grid Layout */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 420px 1fr;
    gap: 28px;
  }
}

/* Left Column Styling */
.location-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Address & Coordinates Box */
.property-address-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.address-item .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(194, 162, 77, 0.12);
  border: 1px solid rgba(194, 162, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-item .icon-wrap svg {
  width: 22px;
  height: 22px;
  color: #C2A24D;
}

.address-text .card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
  display: block;
  margin-bottom: 2px;
}

.address-text .card-val {
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
}

/* Coordinates Box */
.geo-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(194, 162, 77, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
}

.geo-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.geo-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748B;
}

.geo-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #C2A24D;
  margin-top: 2px;
}

.geo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 16px;
}

/* Directions Form Card */
.route-finder-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.route-finder-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.route-finder-card p {
  font-size: 0.88rem;
  color: #94A3B8;
  margin: 0 0 18px 0;
  line-height: 1.5;
}

.visual-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.route-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.route-form input[type="text"]::placeholder {
  color: #64748B;
}

.route-form input[type="text"]:focus {
  border-color: #C2A24D;
  background: rgba(194, 162, 77, 0.05);
}

.route-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #C2A24D;
  color: #0F1722;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.route-submit-btn:hover {
  background: #E2C775;
  transform: translateY(-1px);
}

/* Right Column Styling */
.location-right-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top Scrollable Description Card */
.location-description-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.location-scroll-content {
  max-height: 210px;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Scrollbar Customization */
.location-scroll-content::-webkit-scrollbar {
  width: 6px;
}

.location-scroll-content::-webkit-scrollbar-track {
  background: rgba(15, 23, 34, 0.8);
}

.location-scroll-content::-webkit-scrollbar-thumb {
  background: #C2A24D;
  border-radius: 10px;
}

.location-scroll-content::-webkit-scrollbar-thumb:hover {
  background: #E2C775;
}

.location-scroll-content p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.location-scroll-content .inline-link {
  color: #C2A24D;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-scroll-content .inline-link:hover {
  color: #E2C775;
  text-decoration: underline;
}

/* Highlighting Items */
.location-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(194, 162, 77, 0.15);
  border-radius: 10px;
  padding: 10px 6px;
}

.hl-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #C2A24D;
}

.hl-text {
  font-size: 0.72rem;
  color: #94A3B8;
  margin-top: 2px;
  font-weight: 600;
}

/* Dedicated Map Card with Full Dimensions */
.location-map-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.25);
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .location-section {
    padding: 30px 16px;
  }

  .location-scroll-content {
    max-height: 200px;
    padding: 18px;
  }

  .location-highlights {
    grid-template-columns: 1fr;
  }

  .location-map-card {
    height: 320px;
  }
}
/* =========================================================
   CASS LAKE HOTEL - CONTACT US SECTION (SCOPED)
   ========================================================= */
.clh-contact-section {
  background-color: #0F1722;
  color: #FFFFFF;
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
  .clh-contact-section {
    padding: 60px 24px;
  }
}

.clh-contact-section *, 
.clh-contact-section *::before, 
.clh-contact-section *::after {
  box-sizing: border-box;
}

.clh-contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Styling */
.clh-contact-header {
  margin-bottom: 40px;
}

.clh-contact-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C2A24D;
  margin-bottom: 8px;
}

.clh-contact-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.25;
  text-decoration: none;
}

/* Two-Column Grid */
.clh-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .clh-contact-grid {
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
  }
}

/* Left Side Info Cards */
.clh-contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clh-info-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.clh-info-card:hover {
  border-color: rgba(194, 162, 77, 0.5);
  transform: translateY(-2px);
}

.clh-info-card.clh-highlight-card {
  background: linear-gradient(135deg, rgba(194, 162, 77, 0.15) 0%, rgba(15, 23, 34, 0.7) 100%);
  border-color: rgba(194, 162, 77, 0.35);
}

.clh-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(194, 162, 77, 0.12);
  border: 1px solid rgba(194, 162, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clh-info-icon svg {
  width: 20px;
  height: 20px;
  color: #C2A24D;
}

.clh-info-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clh-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
}

.clh-info-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.clh-info-details p {
  font-size: 0.92rem;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.5;
}

.clh-phone-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: #C2A24D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clh-phone-number:hover {
  color: #E2C775;
}

.clh-availability-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  width: fit-content;
}

/* Right Side Text Paragraphs */
.clh-contact-text-side {
  background: rgba(15, 23, 34, 0.5);
  border: 1px solid rgba(194, 162, 77, 0.15);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.clh-contact-text-side p {
  color: #94A3B8;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.clh-contact-text-side strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .clh-contact-section {
    padding: 40px 16px;
  }

  .clh-contact-text-side {
    padding: 20px;
  }
}
/* =========================================================
   SITEMAP SECTION - REDESIGNED GRID LAYOUT (LUXURY GOLD)
   ========================================================= */
.sitemap-section-v2 {
  background-color: #0F1722;
  color: #FFFFFF;
  padding: 60px 24px;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(194, 162, 77, 0.15);
}

.sitemap-section-v2 *, 
.sitemap-section-v2 *::before, 
.sitemap-section-v2 *::after {
  box-sizing: border-box;
}

.sitemap-container-v2 {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Area */
.sitemap-header-v2 {
  max-width: 800px;
  margin-bottom: 40px;
}

.sitemap-header-v2 .section-tag-v2 {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C2A24D;
  margin-bottom: 8px;
}

.sitemap-header-v2 .section-title-v2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  line-height: 1.25;
  text-decoration: none;
}

.sitemap-intro-v2 {
  color: #94A3B8;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Cards Grid */
.sitemap-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .sitemap-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sitemap-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual Interactive Card */
.sitemap-card {
  background: rgba(15, 23, 34, 0.7);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sitemap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 162, 77, 0.6);
  box-shadow: 0 12px 24px -10px rgba(194, 162, 77, 0.2);
  background: linear-gradient(135deg, rgba(194, 162, 77, 0.08) 0%, rgba(15, 23, 34, 0.7) 100%);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(194, 162, 77, 0.12);
  border: 1px solid rgba(194, 162, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: #C2A24D;
}

.card-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.card-info p {
  font-size: 0.85rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}

.card-arrow {
  align-self: flex-end;
  font-size: 1.2rem;
  color: #C2A24D;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.sitemap-card:hover .card-arrow {
  transform: translateX(4px);
  color: #E2C775;
}

/* Bottom Copy Panel */
.sitemap-footer-text {
  background: rgba(15, 23, 34, 0.5);
  border: 1px solid rgba(194, 162, 77, 0.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sitemap-footer-text p {
  color: #94A3B8;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

.sitemap-footer-text .inline-link {
  color: #C2A24D;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap-footer-text .inline-link:hover {
  color: #E2C775;
  text-decoration: underline;
}

.sitemap-footer-text .callout-text {
  color: #E2E8F0;
  font-size: 1rem;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sitemap-section-v2 {
    padding: 40px 16px;
  }

  .sitemap-footer-text {
    padding: 20px;
  }
}

/* =========================================================
   CLEAN & SIMPLE FAQ DESIGN (LUXURY GOLD THEME)
   ========================================================= */
.simple-faq-section {
  background-color: #0F1722;
  color: #FFFFFF;
  padding: 60px 24px;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(194, 162, 77, 0.15);
}

.simple-faq-section *,
.simple-faq-section *::before,
.simple-faq-section *::after {
  box-sizing: border-box;
}

.simple-faq-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Header */
.simple-faq-header {
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(194, 162, 77, 0.4);
  padding-bottom: 16px;
}

.simple-faq-header .section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

/* FAQ List */
.simple-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual Item */
.simple-faq-item {
  background: rgba(15, 23, 34, 0.6);
  border: 1px solid rgba(194, 162, 77, 0.2);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.simple-faq-item:hover {
  border-color: rgba(194, 162, 77, 0.5);
  box-shadow: 0 8px 20px -8px rgba(194, 162, 77, 0.15);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.faq-answer {
  color: #94A3B8;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* Links */
.simple-link {
  color: #C2A24D;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.simple-link:hover {
  color: #E2C775;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .simple-faq-section {
    padding: 40px 16px;
  }

  .simple-faq-item {
    padding: 18px;
  }

  .faq-question {
    font-size: 1.02rem;
  }
}