﻿/* Import Google Fonts - Oswald for bold, highway-scannable headings; Roboto for clean reading */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FDFBF7; /* Soft Cream/Off-White from logo typography */
  color: #2D3142; /* Readable dark slate for body copy */
  line-height: 1.6;
  font-weight: 400;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* यह दाएँ-बाएँ वाले स्क्रॉलर को पूरी तरह ब्लॉक कर देगा */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Headings – Impactful, bold, and instantly readable for tired drivers */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase; /* Mirrors the all-caps layout of the logo */
  letter-spacing: 1px; /* Tight, clean, modern highway tracking */
  color: #1A1C1E; /* Deep Charcoal for high contrast */
}

/* Call to Action Button Class Example - Using the Logo Crimson Red */
.btn-gold-arch, .btn-primary {
  background-color: #D32F2F; /* Deep Crimson Red from logo background */
  color: #FDFBF7; /* Cream text for visibility */
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-gold-arch:hover {
  background-color: #B71C1C; /* Slightly darker red for hover state */
}
/* -----------------------------------------------------------
   THE MONOLITH HEADER - RIVERSIDE CORRIDOR STRUCTURE
   ----------------------------------------------------------- */

.monolith-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 20px;
}

.arch-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* TOP BAR - PRECISION METADATA */
.precision-bar {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.precision-bar .arch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-data {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D32F2F; /* Logo Crimson Red */
}

.location-data .sep {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 15px;
  vertical-align: middle;
}

.location-data .status { color: #FFF; opacity: 0.8; }

.utility-actions a {
  color: #FFF;
  text-decoration: none;
  font-size: 13px;
  margin-left: 10px;
  letter-spacing: 1px;
}

.social-dot {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px !important;
  transition: 0.3s;
}

.social-dot:hover { background: #D32F2F; border-color: #D32F2F; }

/* MAIN MONOLITH - THE STRUCTURE */
.main-monolith {
  padding-top: 25px;
}

.monolith-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(26, 28, 30, 0.75); /* Dark Highway Charcoal tint for maximum visibility */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 40px;
  height: 100px;
  position: relative;
}

/* Links Style */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.left .nav-links { justify-content: flex-end; padding-right: 40px; }
.right .nav-links { justify-content: flex-start; padding-left: 40px; }

.nav-links a {
  font-family: 'Oswald', sans-serif;
  color: #FFF;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s;
  opacity: 0.9;
}

.nav-links a:hover { color: #D32F2F; opacity: 1; }

/* LOGO SHIELD - THE CENTERPIECE */
.mono-center {
  position: relative;
  width: 220px; /* Slightly widened to gracefully host the wide rectangular logo */
  height: 110px; 
  background: #FDFBF7; /* Clean Logo Cream background box */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 10;
  border: 2px solid #D32F2F; /* Accent perimeter matching the brand red */
}

.logo-shield img {
  width: 190px; /* Adjusted to fill the wrapper layout cleanly */
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* Filter removed so the client's custom red/cream colors render flawlessly */
}

.shield-outline {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid #D32F2F;
  opacity: 0.3;
  pointer-events: none;
}

.mono-center:hover img {
  transform: scale(1.04);
}

/* CTA BUTTON */
.mono-section.right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-gold-arch {
  background: #D32F2F; /* Logo Crimson Red */
  color: #FFF;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
  border: 1px solid #D32F2F;
}

.btn-gold-arch:hover {
  background: transparent;
  color: #D32F2F;
}

/* STICKY BEHAVIOR */
.monolith-header.sticky .monolith-wrapper {
  background: #1A1C1E; /* Solid Dark Highway Background on scroll */
  height: 70px;
}

.monolith-header.sticky .mono-center {
  height: 80px;
  width: 180px;
}

.monolith-header.sticky .logo-shield img {
  width: 150px;
}

/* --- Entrance Animations --- */
@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shieldScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes outlineDraw {
  0% { width: 0; height: 0; opacity: 0; }
  50% { width: 100%; height: 0; opacity: 1; }
  100% { width: calc(100% + 10px); height: calc(100% + 10px); opacity: 0.4; }
}

/* Applying Animations to Classes */
.reveal-top {
  animation: slideDownFade 0.8s ease forwards;
}

.reveal-bottom {
  animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.reveal-center {
  animation: shieldScale 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.shield-outline {
  animation: outlineDraw 1.5s ease forwards;
  animation-delay: 1s;
}
/* --- Icon & Utility Refinements --- */

.phone-link i {
  font-size: 10px;
  margin-right: 5px;
  color: #D32F2F; /* Logo Crimson Red */
}

.social-dot {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px !important; /* Proper icon sizing */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
}

.social-dot:hover {
  background: #D32F2F; /* Logo Crimson Red */
  border-color: #D32F2F;
  transform: translateY(-3px) rotate(8deg);
  color: #FFF !important;
}

/* --- Smooth Interaction Enhancements --- */

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D32F2F; /* Logo Crimson Red Underline */
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-gold-arch {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold-arch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 100%;
  height: 100%;
  background: #FFF;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-gold-arch:hover {
  color: #1A1C1E !important; /* High contrast highway charcoal dark on hover */
}

.btn-gold-arch:hover::before {
  left: 0;
}

/* --- 1. The Monolith Wrapper (Stable & Smooth) --- */
.monolith-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 100px;
  position: relative;
  background: rgba(26, 28, 30, 0.75); /* Dark highway container background for text readability */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
  overflow: clip; 
  overflow-clip-margin: 50px;
  will-change: transform, opacity;
}

/* --- 2. Grid & Glow (Now Fixed to Parent) --- */
.monolith-wrapper::before,
.monolith-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* CRITICAL: This prevents the mouse from 'hitting' the grid and blinking */
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* THE GRID - Forced to back */
.monolith-wrapper::before {
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(211, 47, 47, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 47, 47, 0.08) 1px, transparent 1px); /* Crimson red grid lines */
  background-size: 30px 30px;
  z-index: -2;
}

/* THE MOUSE GLOW - Stays below links */
.monolith-wrapper::after {
  top: var(--y, 0);
  left: var(--x, 0);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 70%); /* Crimson red glow radius */
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Trigger both when hovering the wrapper OR the links inside */
.monolith-wrapper:hover::before,
.monolith-wrapper:hover::after {
  opacity: 1;
}

/* --- 4. Logo Shield (Locked) --- */
.mono-center {
  height: 110px !important; /* Adjusted to balance the wide rectangular logo layout */
  width: 220px;
  z-index: 10;
  background: #FDFBF7; /* Clean logo matching cream canvas */
  position: relative;
  pointer-events: auto;
  border: 2px solid #D32F2F; /* Crisp red frame line */
}

/* --- Desktop: Hide Mobile Elements --- */
.mobile-toggle, .mobile-monolith-overlay {
  display: none;
}
/* --- Tablet & Mobile Only Styles --- */
@media (max-width: 1024px) {
  /* 1. Remove Topbar on Mobile/iPad */
  .precision-bar {
    display: none !important;
  }

  /* 2. Realign Header */
  .monolith-header {
    padding-top: 15px;
  }

  .monolith-wrapper {
    height: 85px;
    grid-template-columns: 1fr;
    justify-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #1A1C1E; /* Dark Highway Charcoal background on mobile */
  }

  /* Hide Desktop Links */
  .mono-section.left, .mono-section.right {
    display: none;
  }

  /* 3. Show Hamburger */
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 3000;
  }

  .menu-text {
    font-family: 'Oswald', sans-serif;
    color: #D32F2F; /* Logo Crimson Red */
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .ham-box {
    width: 24px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ham-box .bar {
    width: 100%;
    height: 1px;
    background: #D32F2F; /* Logo Crimson Red Bars */
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  /* 4. The Overlay (Blueprint Expansion) */
  .mobile-monolith-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: #1A1C1E; /* High Contrast Dark Charcoal for fatigued eyes */
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1); /* Starts slightly zoomed out */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-items: center;
    justify-content: center;
  }

  .mobile-monolith-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  /* Background Grid Effect */
  .menu-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(211, 47, 47, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(211, 47, 47, 0.05) 1px, transparent 1px); /* Crimson red grid overlay */
    background-size: 40px 40px;
    z-index: -1;
  }

  /* Navigation Links */
  .m-nav ul { list-style: none; text-align: center; padding: 0; }
  .m-nav li { margin: 25px 0; }
  
  .m-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
  }

  .m-nav a:hover { color: #D32F2F; }

  /* Metadata & Footer */
  .menu-header { text-align: center; margin-bottom: 30px; }
  .m-coord { color: #D32F2F; font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
  .m-addr { color: #FFF; opacity: 0.7; font-family: 'Roboto', sans-serif; font-size: 13px; margin-top: 8px; }

  .menu-footer { text-align: center; margin-top: 30px; }
  .m-call { color: #FFF; font-family: 'Roboto', sans-serif; text-decoration: none; display: block; margin-bottom: 25px; letter-spacing: 1px; font-weight: 500; }
  .m-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
  .m-social i { color: #D32F2F; font-size: 18px; }

  /* Hamburger Active State (Transform to X) */
  .mobile-toggle.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-toggle.active .bar:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }
}
/* --- Tablet & Mobile Only Styles --- */
@media (max-width: 1024px) {
  /* 1. Remove Topbar completely */
  .precision-bar {
    display: none !important;
  }

  /* 2. Re-stabilize the Monolith Wrapper */
  .monolith-header {
    padding-top: 10px;
    width: 100%;
  }

  .monolith-wrapper {
    display: flex; /* Switched from grid for better mobile centering */
    justify-content: center; /* Forces Logo Shield to absolute center */
    align-items: center;
    height: 80px;
    padding: 0 20px;
    background: rgba(26, 28, 30, 0.95); /* High contrast Dark Highway Charcoal for mobile legibility */
    border-bottom: 1px solid rgba(211, 47, 47, 0.3); /* Logo Crimson Red subtle line */
    position: relative;
    overflow: visible; /* Allows the shield to hang */
  }

  /* Force the logo container to be the center of attention */
  .mono-center {
    width: 150px !important; /* Balanced for 393px screens */
    height: 90px !important; /* Proportional scale for rectangular logo */
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: #FDFBF7 !important; /* Clean logo cream background canvas */
    border: 2px solid #D32F2F !important; /* Red framing border */
  }

  .logo-shield img {
    width: 130px !important; /* Scaled logo width for mobile viewports */
    height: auto !important;
  }

  /* Hide Desktop Links */
  .mono-section.left, .mono-section.right {
    display: none;
  }

  /* 3. The Hamburger - Fixed to the Right */
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 8px;
    z-index: 3000;
  }

  .menu-text {
    font-family: 'Oswald', sans-serif;
    color: #D32F2F; /* Logo Crimson Red */
    font-size: 11px; /* Scaled cleanly for narrow mobile viewports */
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .ham-box .bar {
    background: #D32F2F !important; /* Crimson red bars */
  }

  /* 4. The Overlay (Blueprint Expansion) - Fixed for 393x852 */
  .mobile-monolith-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #1A1C1E; /* High contrast Dark Highway Charcoal background */
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); /* Subtle slide down instead of scale */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-direction: column;
    padding: 20px;
  }

  .mobile-monolith-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Background Grid Effect */
  .menu-grid-bg {
    background-image: 
      linear-gradient(rgba(211, 47, 47, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(211, 47, 47, 0.05) 1px, transparent 1px) !important;
  }

  /* Adjust Link Sizes for 393px height */
  .m-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
  }

  .m-nav li {
    margin: 20px 0;
  }

  .m-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 22px; /* Prevent wrapping on smaller screens */
    letter-spacing: 2px;
    color: #FFF;
  }
  
  .m-nav a:hover {
    color: #D32F2F !important;
  }

  .m-coord {
    color: #D32F2F !important;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
  }

  .m-social i {
    color: #D32F2F !important;
  }

  /* Ensure the footer doesn't get cut off on short phones */
  .menu-footer {
    margin-top: auto;
    padding-bottom: 40px;
    text-align: center;
  }
}
/* Specific fix for very small phones (under 400px) */
@media (max-width: 400px) {
  .mono-center {
    width: 130px !important; /* Retains safe tracking proportions for wide layout logo */
    height: 75px !important;
  }
  
  .logo-shield img {
    width: 110px !important;
  }
}

/* --- Bilateral Convergence Sticky --- */
.monolith-header {
  position: absolute; /* Default */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
              background 0.4s ease, 
              padding 0.4s ease;
}

/* Create the two sliding halves */
.monolith-header::before,
.monolith-header::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #1A1C1E; /* Dark Highway Charcoal */
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1; /* Behind the content */
  border-bottom: 2px solid #D32F2F; /* The Logo Crimson Edge */
  pointer-events: none;
  opacity: 0;
}

/* Left Half starts off-screen left */
.monolith-header::before {
  left: 0;
  transform: translateX(-100%);
}

/* Right Half starts off-screen right */
.monolith-header::after {
  right: 0;
  transform: translateX(100%);
}

/* --- THE STICKY ACTIVE STATE --- */
.monolith-header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  padding-top: 0; /* Remove top spacing when sticky */
  z-index: 2000;
}

.monolith-header.sticky-active::before,
.monolith-header.sticky-active::after {
  transform: translateX(0);
  opacity: 1;
}

/* Hide Top Bar and Shrink Header Height when Sticky */
.monolith-header.sticky-active .precision-bar {
  display: none;
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

/* Unique Sticky Design Update */
.monolith-header.sticky-active .monolith-wrapper {
  height: 70px; /* Thinner for sticky profiles */
  border: none; /* Let the sliding panels provide the perimeter edge */
  background: transparent; /* Wrapper is clear, panels are visible */
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

/* Scaling the logo center layout frame beautifully when Sticky */
.monolith-header.sticky-active .mono-center {
  height: 75px !important;
  width: 160px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

.monolith-header.sticky-active .logo-shield img {
  width: 130px !important;
}

/* --- HIDDEN STATE (Scrolling Down) --- */
.monolith-header.sticky-hidden {
  transform: translateY(-100%); /* Moves the whole bar smoothly up off-screen */
}

/* -----------------------------------------------------------
   HIGHWAY HAVEN HERO SECTION STYLING (SCROLL-BAR FIX)
   ----------------------------------------------------------- */
.highway-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Hard safety gate to stop any elements leaking */
  background-color: #1A1C1E;
  padding-top: 120px; 
  box-sizing: border-box;
}

/* Ensure all sub-elements inherit proper box models */
.highway-hero *, 
.highway-hero *::before, 
.highway-hero *::after {
  box-sizing: border-box;
}

/* -----------------------------------------------------------
   ENHANCED HERO BACKGROUND SLIDESHOW ENGINE
   ----------------------------------------------------------- */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Individual Slide Panels */
.hero-bg-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

/* Fallback/Active State */
.hero-bg-slider .slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slightly adjusted brightness so the images pop more while keeping text readable */
  filter: brightness(0.45) contrast(1.05); 
}

/* Shared Global Gradient Mask */
.hero-bg-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,28,30,0.95) 0%, rgba(26,28,30,0.35) 50%, rgba(26,28,30,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Repositioned Dynamic Labels */
.hero-bg-slider .panel-tag {
  position: absolute;
  bottom: 35px;
  left: 40px;
  background: rgba(26, 28, 30, 0.9);
  border: 1px solid rgba(211, 47, 47, 0.6);
  color: #FDFBF7;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive fixes specifically for the slider labels */
@media (max-width: 1024px) {
  .hero-bg-slider .panel-tag {
    bottom: auto;
    top: 100px; /* Moves label clear of navigation header space */
    left: 30px;
  }
}

@media (max-width: 580px) {
  .hero-bg-slider .panel-tag {
    top: 130px;
    left: 20px;
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* Built-in Indicator Label Overlays */
.panel-tag {
  position: absolute;
  bottom: 30px;
  background: rgba(26, 28, 30, 0.9);
  border: 1px solid rgba(211, 47, 47, 0.5);
  color: #FDFBF7;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}
.secure-parking .panel-tag { left: 40px; }
.landscaped-patio .panel-tag { right: 40px; }

/* Fixed Container: Balanced Grid Layout with explicit maximum width limits */
.hero-overlay-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); /* Added minmax safety guards to stop text scaling out of screen bounds */
  gap: 50px;
  align-items: center;
  z-index: 5;
}

/* Left Column Styling */
.hero-left-content {
  width: 100%;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #FDFBF7; 
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-title .accent-text {
  color: #D32F2F; 
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #FDFBF7;
  opacity: 0.95;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Action Trigger Buttons */
.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #D32F2F;
  color: #FDFBF7;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  letter-spacing: 1px;
  border: 2px solid #D32F2F;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: #B71C1C;
  border-color: #B71C1C;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(26, 28, 30, 0.7);
  color: #FDFBF7;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #FDFBF7;
  color: #1A1C1E;
  border-color: #FDFBF7;
  transform: translateY(-2px);
}

/* Right Column Block Panel */
.hero-right-features {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.features-card-box {
  background: rgba(26, 28, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-top: 4px solid #D32F2F;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);
  width: 100%;
  max-width: 440px;
}

.features-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #D32F2F;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-bullet-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-bullet-features li {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-bullet-features li:last-child {
  margin-bottom: 0;
}

.hero-bullet-features li i {
  color: #D32F2F; 
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.hero-bullet-features li strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #FDFBF7;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  font-weight: 500;
}

.hero-bullet-features li p {
  font-size: 13px;
  color: #FDFBF7;
  opacity: 0.75;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   HIGHWAY HAVEN HERO RESPONSIVE ENGINE (REWRITE & SCROLL CORRECTION)
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }
  .hero-overlay-container {
    gap: 35px;
    padding: 0 30px;
  }
}

/* Tablet / iPad Layout Fixes (Portrait & Landscape Breakout) */
@media (max-width: 1024px) {
  .highway-hero {
    min-height: auto; /* Dissolves strict viewport lock so content expands naturally */
    padding-top: 140px;
    padding-bottom: 80px;
    height: auto;
  }

  .hero-overlay-container {
    grid-template-columns: 1fr; /* Safely collapses into an aligned single column layout */
    gap: 50px;
    text-align: center;
    max-width: 700px; /* Constrains column text line lengths perfectly */
  }

  .hero-left-content {
    margin: 0 auto;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }

  .hero-cta-group {
    justify-content: center; /* Aligns triggers down the layout spine */
  }

  .hero-right-features {
    justify-content: center;
    width: 100%;
  }

  .features-card-box {
    max-width: 100%; /* Spans safely within container bounds */
    text-align: left; /* Restores checklist tracking text alignment for readability */
    box-sizing: border-box;
  }
}

/* Small Mobile Screen Adjustments */
@media (max-width: 580px) {
  .highway-hero {
    padding-top: 170px;
    padding-bottom: 50px;
  }

  /* Shifts split background tiles into vertical halves */
  .hero-bg-split {
    flex-direction: column;
  }
  
  .bg-panel {
    width: 100%;
    height: 50%;
  }

  /* Repositions indicator labels tightly inside their respective half bounds */
  .panel-tag {
    font-size: 11px;
    padding: 5px 12px;
    bottom: 15px;
  }
  .secure-parking .panel-tag { 
    left: 15px; 
    top: 130px; 
    bottom: auto; 
  }
  .landscaped-patio .panel-tag { 
    right: 15px; 
    bottom: 15px; 
  }

  .hero-overlay-container {
    padding: 0 20px;
    gap: 35px;
  }

  .hero-title {
    font-size: 32px; /* Smooth scale down prevents ugly broken sentence wraps */
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-hero-primary, 
  .btn-hero-secondary {
    width: 100%; /* Maximizes thumb target real estate */
    text-align: center;
    padding: 15px 20px;
    font-size: 15px;
  }

  .features-card-box {
    padding: 24px 20px;
  }

  .hero-bullet-features li {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-bullet-features li strong {
    font-size: 15px;
  }
}


/* -----------------------------------------------------------
   SECTION 2: SIDE BANNER INTRODUCTION STYLING (PREMIUM LIGHT)
   ----------------------------------------------------------- */
.hex-intro-section {
  position: relative;
  width: 100%;
  background-color: #FDFBF7; /* Brand Cream Base */
  padding: 60px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hex-intro-section * {
  box-sizing: border-box;
}

/* Enhanced 3-Column Grid Configuration for Desktop */
.hex-grid-layout {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

/* --- High-Visibility Side Banners --- */
.side-banner-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid #D32F2F;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.side-banner-frame img.focused-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.02);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.side-banner-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,28,30,0.85) 0%, rgba(26,28,30,0.2) 40%, transparent 100%);
  z-index: 1;
}

.banner-overlay-badge {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.banner-overlay-badge i {
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 8px;
  transition: transform 0.4s ease;
}

.banner-overlay-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.side-banner-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.12);
}

.side-banner-frame:hover img.focused-zoom {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.05);
}

.side-banner-frame:hover .banner-overlay-badge i {
  transform: scale(1.15);
}

/* --- Typography Content Column Styles --- */
.hex-text-col {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #D32F2F;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1C1E; 
  margin: 0 0 22px 0;
  letter-spacing: 0.5px;
  line-height: 1.15;
  transition: color 0.3s ease;
}

/* --- Default Content Wrapper (Scrollbar Paragraph + Feature List) --- */
.default-intro-wrapper {
  display: block;
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.default-intro-wrapper.is-disabled {
  display: none;
  opacity: 0;
}

.section-body-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4A4D50; 
  margin-bottom: 25px;
  max-height: 158px; /* ~6 lines */
  overflow-y: auto;
  padding-right: 12px;
}

.section-body-text::-webkit-scrollbar {
  width: 6px;
}

.section-body-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.section-body-text::-webkit-scrollbar-thumb {
  background: #D32F2F;
  border-radius: 4px;
}

.section-body-text::-webkit-scrollbar-thumb:hover {
  background: #111111;
}

/* --- Clean Bullet Features Integration --- */
.intro-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.intro-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  background: #FFFFFF; 
  padding: 20px;
  border-left: 4px solid transparent;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.intro-feature-list li:last-child {
  margin-bottom: 0;
}

.intro-feature-list li:hover {
  border-left: 4px solid #D32F2F;
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.08);
  transform: translateX(4px);
}

.intro-feature-list .icon-box {
  width: 46px;
  height: 46px;
  background: rgba(211, 47, 47, 0.06); 
  border: 1px solid rgba(211, 47, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #D32F2F;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.intro-feature-list li:hover .icon-box {
  background: #D32F2F;
  color: #FFFFFF;
  border-color: #D32F2F;
}

.feature-info strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: #1A1C1E;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-weight: 500;
}

.feature-info p {
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  color: #606468;
  margin: 0;
  line-height: 1.45;
}

/* --- Expanded About Us Content Wrapper --- */
.full-about-wrapper {
  display: none;
  opacity: 0;
  margin-bottom: 25px;
  transition: opacity 0.35s ease;
}

.full-about-wrapper.is-active {
  display: block;
  opacity: 1;
  animation: fadeInAbout 0.4s ease forwards;
}

@keyframes fadeInAbout {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-card-container {
  background: #FFFFFF;
  padding: 24px;
  border-left: 4px solid #D32F2F;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-height: 400px;
  overflow-y: auto;
}

.about-card-container::-webkit-scrollbar {
  width: 6px;
}

.about-card-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.about-card-container::-webkit-scrollbar-thumb {
  background: #D32F2F;
  border-radius: 4px;
}

.about-p {
  font-family: 'Roboto', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4A4D50;
  margin-bottom: 16px;
}

.about-p:last-child {
  margin-bottom: 0;
}

/* --- Button Styling --- */
.read-more-wrapper {
  margin-top: 5px;
}

.btn-read-more {
  background: #FFFFFF;
  border: 1.5px solid #D32F2F;
  color: #D32F2F;
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.06);
}

.btn-read-more:hover {
  background: #D32F2F;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.25);
  transform: translateY(-2px);
}

.btn-read-more .icon-toggle {
  font-size: 13px;
  transition: transform 0.3s ease;
}

/* Responsive Rules */
@media (max-width: 1280px) {
  .hex-grid-layout {
    grid-template-columns: 300px 1fr 300px;
    gap: 30px;
  }
  .side-banner-frame {
    min-height: 480px;
  }
  .section-title-h2 {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .hex-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hex-text-col {
    max-width: 750px;
    margin: 0 auto;
    order: 1;
  }
  .left-hex { order: 2; }
  .right-hex { order: 3; }

  .side-banner-frame {
    max-width: 550px;
    margin: 0 auto;
    min-height: 350px;
  }
  .intro-feature-list li {
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 580px) {
  .hex-intro-section {
    padding: 40px 0;
  }
  .section-title-h2 {
    font-size: 28px;
  }
  .side-banner-frame {
    min-height: 280px;
  }
}
/* -----------------------------------------------------------
   SECTION 3: HOTEL AMENITIES GRID STYLING (PREMIUM DARK)
   ----------------------------------------------------------- */
.amenities-dark-grid {
  position: relative;
  width: 100%;
  
  /* 
     1. Adds a linear-gradient fade overlay (85% opacity overlay fading to 95% down the section)
     2. Sets your crisp, high-resolution imagery as a background asset
  */
  background: linear-gradient(
      to bottom, 
      rgba(20, 25, 30, 0.88) 0%, 
      rgba(20, 25, 30, 0.96) 100%
    ), 
    url('../images/roomamenities7.png') no-repeat center center;
  
  /* Ensures the photo stays beautifully scaled and locked to the container viewport */
  background-size: cover;
  background-attachment: fixed; /* Parallax effect for instant premium feel */
  
  padding: 60px 0; /* Expanded padding for clean layout breathing room */
  overflow: hidden;
  box-sizing: border-box;
}

/* Fallback adjustment if background fixed attachment causes layout lag on minor browsers */
@media (max-width: 1024px) {
  .amenities-dark-grid {
    background-attachment: scroll;
    padding: 80px 0;
  }
}

.amenities-dark-grid * {
  box-sizing: border-box;
}

/* --- Section Title Formatting --- */
.amenities-header-box {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2; /* Ensures typography stays clear above the background image */
}

.amenities-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: #D32F2F; /* Identity Crimson Red */
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
}

.amenities-title-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FDFBF7; /* Brand Light Cream */
  margin: 0 auto 15px auto;
  letter-spacing: 1px;
}

.accent-line-red {
  width: 60px;
  height: 4px;
  background-color: #D32F2F;
  margin: 0 auto;
}

/* --- 3-Column Balanced Grid Blueprint --- */
.amenities-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  position: relative;
  z-index: 2; /* Layer protection */
}

/* --- Amenity Grid Card Components --- */
.amenity-card {
  /* Slightly increased backdrop thickness to balance out the background details */
  background: rgba(20, 25, 30, 0.65); 
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px); /* Frosted premium glassmorphism technique */
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

/* Structural Icon Nesting */
.amenity-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: #D32F2F;
  font-size: 26px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.amenity-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #FDFBF7;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.amenity-card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: #FDFBF7;
  opacity: 0.75;
  margin: 0;
}

/* --- High-End Hover Animations --- */
.amenity-card:hover {
  transform: translateY(-8px);
  background: rgba(211, 47, 47, 0.15);
  border-color: rgba(211, 47, 47, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(211, 47, 47, 0.15);
}

.amenity-card:hover .amenity-icon-wrapper {
  background: #D32F2F;
  color: #FDFBF7;
  border-color: #D32F2F;
  box-shadow: 0 0 20px rgba(211, 47, 47, 0.4);
  transform: scale(1.05);
}

/* --- Responsive Adaptability Rules --- */
@media (max-width: 1024px) {
  /* Shifts smoothly to 2 columns on tablet devices */
  .amenities-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .amenities-title-h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .amenities-dark-grid {
    padding: 60px 0;
  }
  /* Shifts cleanly to 1 column on mobile phones */
  .amenities-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .amenity-card {
    padding: 35px 20px;
  }
  .amenities-title-h2 {
    font-size: 30px;
  }
}
/* Update or add this specific property onto the selector block inside your styles.css */
.room-content-pane {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-amenities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto; /* Forces structural alignment of the action button below it */
  margin-bottom: 30px;
}
/* -----------------------------------------------------------
   SECTION 4: HIGH-END CINEMATIC ROOM DECK STYLING WITH CONTROLS
   ----------------------------------------------------------- */
.rooms-slider-section {
  position: relative;
  width: 100%;
  background-color: #FDFBF7;
  padding: 80px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.rooms-slider-section * {
  box-sizing: border-box;
}

/* --- Section Header Block --- */
.rooms-header-box {
  text-align: center;
  margin-bottom: 50px;
}

.rooms-badge {
  display: inline-block;
 
  font-size: 12px;
  text-transform: uppercase;
  color: #D32F2F;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rooms-title-h2 {
 
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1C1E;
  margin: 0 auto 15px auto;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.accent-line-red {
  width: 60px;
  height: 3px;
  background-color: #D32F2F;
  margin: 0 auto;
}

/* --- Control Wrapper Arena --- */
.rooms-slider-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
}

/* --- Premium Antique Control Buttons --- */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: #1A1C1E;
  border: 1px solid rgba(253, 251, 247, 0.1);
  color: #FDFBF7;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.slider-nav-btn:hover {
  background-color: #D32F2F;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.35);
}

.prev-btn { left: -10px; }
.next-btn { right: -10px; }

/* --- Interactive Track Window --- */
.rooms-slider-stage {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}

.rooms-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* --- Unique Asymmetric Fade-Out Base Cards --- */
.room-slide-card {
  width: calc((100% - 60px) / 3); /* Ensures exactly 3 clean cards fit the window */
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid rgba(26, 28, 30, 0.05);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  opacity: 0.35; /* Fades out inactive elements */
  filter: grayscale(30%);
  transform: scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.6s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

/* Focus Overlays */
.room-slide-card.active-view {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1);
  box-shadow: 0 12px 35px rgba(26, 28, 30, 0.06);
  border-color: rgba(26, 28, 30, 0.1);
}

.room-slide-card.active-view:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: 0 20px 45px rgba(26, 28, 30, 0.1);
}

/* --- Media Image Box Component --- */
.room-image-frame {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #1A1C1E;
}

.room-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-slide-card.active-view:hover .room-image-frame img {
  transform: scale(1.06);
}

.room-price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1A1C1E;
  color: #FDFBF7;
  
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 14px;
  letter-spacing: 1px;
  font-weight: 500;
  border-left: 3px solid #D32F2F;
}

/* --- Content Layout Pane --- */
.room-content-pane {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1A1C1E;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
}

.room-divider-line {
  width: 40px;
  height: 2px;
  background-color: #D32F2F;
  margin-bottom: 20px;
}

.room-card-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555A60;
  margin: 0 0 25px 0;
  min-height: 68px;
}

/* --- Amenity Tag Grid System --- */
.room-amenities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto; 
  margin-bottom: 30px;
}

.room-amenities-tags span {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #1A1C1E;
  background: #F4F5F6;
  padding: 6px 12px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.room-amenities-tags span i {
  color: #D32F2F;
  font-size: 11px;
}

/* --- Action Button Interaction --- */
.btn-room-action {
  display: block;
  text-align: center;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  background-color: #D32F2F;
  padding: 14px 20px;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
}

.btn-room-action:hover {
  background-color: #1A1C1E;
  box-shadow: 0 6px 20px rgba(26, 28, 30, 0.3);
}

/* --- High-End Responsive Adaptations --- */
@media (max-width: 1024px) {
  .rooms-title-h2 { 
    font-size: 32px; 
  }
  
  .rooms-slider-stage-wrapper { 
    padding: 0 60px; /* Gives more safety clearance for arrows */
  }
  
  /* Calculates precise sizing for exactly 2 items inside the view track window */
  .room-slide-card { 
    width: calc((100% - 30px) / 2); 
    opacity: 0.4; 
    transform: scale(0.97);
  }

  /* Ensures items fully flash awake when highlighted by script */
  .room-slide-card.active-view {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .rooms-slider-stage-wrapper { 
    padding: 0 45px; 
  }
  
  /* Single card focus framework optimized for mobile screens */
  .room-slide-card { 
    width: 100%; 
    opacity: 0.2; 
    transform: scale(0.95);
  }
  
  .room-slide-card.active-view {
    opacity: 1;
    transform: scale(1);
  }

  /* Compact, premium adjustments for structural control arrows */
  .slider-nav-btn { 
    width: 44px; 
    height: 44px; 
    font-size: 14px; 
  }
  .prev-btn { left: -8px; }
  .next-btn { right: -8px; }
  
  .room-content-pane {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .rooms-title-h2 { 
    font-size: 26px; 
    line-height: 1.2;
  }
  
  .rooms-badge {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .room-image-frame { 
    height: 210px; 
  }
  
  .room-card-title {
    font-size: 20px;
  }

  .room-card-description {
    font-size: 13.5px;
    min-height: auto; /* Drops rigid text requirements on strict narrow viewports */
    margin-bottom: 20px;
  }
  
  .room-amenities-tags {
    margin-bottom: 20px;
    gap: 6px;
  }
  
  .room-amenities-tags span {
    padding: 5px 10px;
    font-size: 11px;
  }
}
/* -----------------------------------------------------------
   SECTION 5: FAQ ACCORDION & CAROUSEL ATTRACTION GRID STYLING
   ----------------------------------------------------------- */
.review-aggregator-section {
  position: relative;
  width: 100%;
  background-color: #F8F9FA;
  padding: 80px 0;
  box-sizing: border-box;
}

.review-aggregator-section * {
  box-sizing: border-box;
}

.aggregator-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr; /* Premium asymmetric ratio for single card presence */
  gap: 50px;
  align-items: flex-start;
  width: 100%;
}

/* --- Left Column Elements (FAQ UI Framework) --- */
.reviews-column {
  width: 100%;
}

.aggregator-header {
  margin-bottom: 35px;
}

.aggregator-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #1A1C1E;
  padding: 6px 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 30px;
}

.aggregator-badge i {
  color: #D32F2F;
}

.aggregator-title-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1C1E;
  margin: 15px 0 6px 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.aggregator-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #D32F2F;
  margin: 0;
  font-weight: 500;
}

/* Accordion Component UI */
.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-trigger {
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  background: #FFFFFF;
  transition: background 0.2s ease;
}

.faq-trigger strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1C1E;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.03);
  color: #1A1C1E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #505458;
  margin: 0 0 20px 0;
}

.faq-item.active {
  border-left: 4px solid #D32F2F;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.faq-item.active .faq-trigger {
  background: rgba(211, 47, 47, 0.01);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: #D32F2F;
  color: #FFFFFF;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding: 0 25px 5px 25px;
}

/* --- Right Column: Premium Horizontal Carousel Elements --- */
.location-column {
  width: 100%;
  min-width: 0;
}

.proximity-card-box.visual-showcase-theme {
  background: #1A1C1E;
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.header-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.proximity-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #FDFBF7;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proximity-header h3 i {
  color: #D32F2F;
}

.proximity-header p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #FDFBF7;
  opacity: 0.7;
  margin: 0 0 30px 0;
}

/* Navigation Inline Controls */
.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FDFBF7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.slider-btn:hover {
  background: #D32F2F;
  border-color: #D32F2F;
  color: #FFFFFF;
}

/* Masking Window frame */
.attraction-slider-window {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

/* Horizontal Sliding Track Blueprint */
.attraction-visual-deck.large-card-layout.dynamic-carousel-track {
  display: flex;
  flex-direction: row; 
  gap: 20px;
  margin-bottom: 0;
  width: 100%;
  will-change: transform;
  min-width: 0; /* Anti-overflow guard for flex architectures */
}

/* Individual Card Sizing Strategy: Displays EXACTLY ONE card at a time */
.attraction-large-card {
  flex: 0 0 100%; 
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  min-width: 0; /* Prevents text elements from pushing the box wider than the screen */
}

/* Image framing inside slider context */
.attraction-hero-image {
  position: relative;
  width: 100%;
  height: 240px; /* Enhanced cinematic proportions for full-width cards */
  overflow: hidden;
}

.attraction-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prox-distance-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1A1C1E;
  background: #FFD700;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.attraction-content-block {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prox-category-tag {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D32F2F;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.attraction-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #FDFBF7;
  margin: 0 0 8px 0;
}

.attraction-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #FDFBF7;
  opacity: 0.7;
  margin: 0;
}

.attraction-large-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(211, 47, 47, 0.4);
}

.attraction-large-card:hover .attraction-hero-image img {
  transform: scale(1.04);
}

.btn-location-map {
  display: block;
  text-align: center;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1A1C1E;
  background-color: #FDFBF7;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-location-map:hover {
  background-color: #D32F2F;
  color: #FFFFFF;
}
/* ==========================================================================
   TOP 5 ATTRACTIONS GRID - DARK THEME ADAPTATION
   ========================================================================== */
.rmv-featured-top5-container {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle dark border */
  text-align: left;
}

.rmv-top5-header {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #FFFFFF; /* High contrast heading */
  text-transform: uppercase;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.rmv-top5-header i {
  color: #E53935; /* Vibrant red icon */
}

.rmv-top5-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Dark Card Styling */
.rmv-top5-card {
  background: #1A1D20; /* Dark slate card background matching nearby blocks */
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.rmv-top5-card:hover {
  transform: translateY(-5px);
  border-color: #E53935; /* Red glow border on hover */
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.15);
}

.rmv-top5-card-full {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* Image Frame & Badge */
.rmv-top5-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #121416;
  overflow: hidden;
}

.rmv-top5-card-full .rmv-top5-image-wrap {
  height: 100%;
  min-height: 200px;
}

.rmv-top5-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.rmv-top5-card:hover .rmv-top5-image-wrap img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.1);
}

.rmv-top5-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(18, 20, 22, 0.9);
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  border-left: 3px solid #E53935;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Dark Theme Typography */
.rmv-top5-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.rmv-top5-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #FFFFFF; /* White title */
  margin: 0 0 10px 0;
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.rmv-top5-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #B0B5C0; /* Easy-to-read light grey text */
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .rmv-top5-grid {
    grid-template-columns: 1fr;
  }
  .rmv-top5-card-full {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
  }
  .rmv-top5-card-full .rmv-top5-image-wrap {
    height: 200px;
  }
}
/* --- Responsive Layout Configurations --- */
@media (max-width: 1140px) {
  .aggregator-split-layout {
    grid-template-columns: 1fr; /* Formats layout structure into clean stacked columns */
    gap: 40px;
    width: 100%;
    overflow: hidden;
  }
  
  .proximity-card-box.visual-showcase-theme {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 25px;
  }

  .attraction-hero-image {
    height: 220px; /* Scales down card image height gracefully for tablet frames */
  }
}

@media (max-width: 640px) {
  .review-aggregator-section {
    padding: 50px 0;
  }
  
  .aggregator-title-h2 {
    font-size: 28px;
  }
  
  .faq-trigger {
    padding: 16px 20px;
  }
  
  .proximity-card-box.visual-showcase-theme {
    padding: 20px 15px; /* Shrinks container paddings to clear screen edges */
  }
  
  .attraction-hero-image {
    height: 180px; /* Standard structural height for mobile screens */
  }

  .attraction-content-block {
    padding: 15px;
  }

  .attraction-card-name {
    font-size: 16px;
  }
}
/* -----------------------------------------------------------
   SECTION 6: THE APERTURE & THE VAULT MEDIA LAYOUT STYLING
   ----------------------------------------------------------- */
.media-vault-section {
  position: relative;
  width: 100%;
  background-color: #14191E; /* Highway Charcoal Matte base */
  padding: 30px 0;
  box-sizing: border-box;
}

.media-vault-section * {
  box-sizing: border-box;
}

/* Split Balanced 2-Column Grid Layout */
.vault-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: stretch;
  width: 100%;
}

/* Standardized Typography Setup */
.vault-label-group {
  margin-bottom: 30px;
}

.vault-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #D32F2F; /* Crimson Red Utility accent */
  letter-spacing: 2.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.vault-title-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FDFBF7; /* Soft light text backdrop element */
  margin: 0;
  letter-spacing: 0.5px;
}

/* --- Left Column Video Component --- */
.aperture-video-block {
  display: flex;
  flex-direction: column;
}

.video-player-frame {
  position: relative;
  width: 100%;
  flex-grow: 1;
  background: #0D1013;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.video-player-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

.video-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(13, 16, 19, 0.95) 0%, rgba(13, 16, 19, 0.4) 70%, rgba(0,0,0,0) 100%);
  padding: 25px 30px;
  pointer-events: none; /* Allows click interactions underneath */
}

.video-overlay-caption p {
  font-family: 'Roboto', sans-serif;
  color: #FDFBF7;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}

.video-overlay-caption p i {
  color: #D32F2F;
  margin-right: 6px;
}

/* --- Right Column Gallery Components --- */
.vault-gallery-block {
  display: flex;
  flex-direction: column;
}

.gallery-tiles-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.gallery-tile-card {
  position: relative;
  width: 100%;
  height: 180px;
  background: #0D1013;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.tile-image-wrapper {
  width: 100%;
  height: 100%;
}

.gallery-tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.75;
}

/* Interactive Text Hover Overlays */
.tile-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(20, 25, 30, 0.9) 0%, rgba(20, 25, 30, 0.3) 60%, rgba(0,0,0,0) 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.tile-text h3 {
  font-family: 'Oswald', sans-serif;
  color: #FDFBF7;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  letter-spacing: 0.3px;
}

.tile-text p {
  font-family: 'Roboto', sans-serif;
  color: #FDFBF7;
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.65;
  max-width: 85%;
}

.tile-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FDFBF7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

/* Vault Interaction Zoom and Highlights */
.gallery-tile-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.gallery-tile-card:hover .tile-content-overlay {
  background: linear-gradient(to right, rgba(211, 47, 47, 0.85) 0%, rgba(20, 25, 30, 0.4) 70%, rgba(0,0,0,0) 100%);
}

.gallery-tile-card:hover .tile-icon-btn {
  opacity: 1;
  background: #FDFBF7;
  color: #14191E;
  border-color: #FDFBF7;
}

/* Master Gallery Call-To-Action Button */
.gallery-action-footer {
  margin-top: 30px;
}

.btn-vault-gallery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  background-color: #D32F2F;
  padding: 15px 32px;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-vault-gallery .btn-subtext {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 400;
  text-transform: none;
}

.btn-vault-gallery:hover {
  background-color: #FDFBF7;
  color: #14191E;
}

/* --- Mobile Breakpoint Optimization Layers --- */
@media (max-width: 1024px) {
  .media-vault-section {
    padding: 90px 0;
  }
  .vault-split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .video-player-frame video {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .media-vault-section {
    padding: 60px 0;
  }
  .vault-title-h2 {
    font-size: 30px;
  }
  .gallery-tile-card {
    height: 150px;
  }
  .tile-content-overlay {
    padding: 15px;
  }
  .tile-text p {
    max-width: 100%;
  }
  .tile-icon-btn {
    display: none; /* Hide decorative circle element on small mobile scales */
  }
  .btn-vault-gallery {
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
  }
}
/* YouTube Coming Soon Placeholder Custom Canvas */
.video-player-frame.youtube-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1C1E; /* Dark gray match background */
  border: 2px dashed rgba(213, 47, 47, 0.3); /* Subtle dotted red brand edge */
  min-height: 410px;
}

.youtube-coming-soon-overlay {
  text-align: center;
  padding: 40px;
}

.coming-soon-icon {
  font-size: 64px;
  color: #D32F2F; /* YouTube Red color pop */
  margin-bottom: 15px;
  animation: pulse 2s infinite ease-in-out;
}

.coming-soon-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #FDFBF7;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coming-soon-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #70757A;
  margin: 0 0 15px 0;
}

.coming-soon-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
  color: #FDFBF7;
  padding: 5px 12px;
  border-radius: 3px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 8px rgba(213, 47, 47, 0.6)); }
  100% { transform: scale(1); opacity: 0.9; }
}
/* -----------------------------------------------------------
   SECTION 7: PROPERTY MASTER FOOTER STYLES
   ----------------------------------------------------------- */
.riverside-utility-footer {
    background-color: #1A1C1E; /* Highway Charcoal Base Anchor */
    position: relative;
    padding-top: 100px;
    color: #FDFBF7; /* Brand Light Cream text illumination */
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* BIG BACKDROP WATERMARK */
.riverside-footer-watermark {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 10vw;
    font-weight: 900;
    color: rgba(253, 251, 247, 0.02); /* Clean ghosted contrast visibility */
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 12px;
}

/* Master Layout Alignment Canvas */
.riverside-utility-footer .vinn-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 5;
}

/* --- FOOTER IDENTITY LOGO --- */
.riverside-f-logo {
    height: 65px;
    width: auto;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.4s ease;
}

.riverside-f-logo:hover {
    transform: scale(1.03);
}

.riverside-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}

/* --- TYPOGRAPHY SYSTEMS --- */
.riverside-f-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FDFBF7;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}

/* Decorative Red Framing Accent Line */
.riverside-f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #D32F2F; /* Identity Crimson Red Line */
}

.riverside-f-tagline {
    color: rgba(253, 251, 247, 0.65);
    line-height: 1.7;
    font-size: 15px;
    margin: 20px 0;
    max-width: 90%;
}

/* --- COLUMNS, LINKS & SOCIAL MEDIA INTERACTION --- */
.riverside-link-columns { 
    display: flex; 
    gap: 50px; 
}

.riverside-f-list { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.riverside-f-list li { 
    margin-bottom: 14px; 
}

.riverside-f-list a {
    color: rgba(253, 251, 247, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.riverside-f-list a:hover { 
    color: #D32F2F; /* Shifts to brand red on hover */
    padding-left: 6px; 
}

/* Standout High-Contrast Call To Action */
.riverside-red-cta {
    color: #D32F2F !important;
    font-weight: 700;
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px dashed rgba(211, 47, 47, 0.4);
}

.riverside-red-cta:hover {
    border-bottom-style: solid;
}

.riverside-f-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(253, 251, 247, 0.1);
    color: #FDFBF7;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
    background: rgba(253, 251, 247, 0.02);
}

.riverside-f-socials a:hover {
    border-color: #D32F2F;
    background-color: #D32F2F;
    color: #FFFFFF;
    transform: translateY(-4px);
}

/* --- THE HIGHWAY CONCIERGE INFO CARD --- */
.riverside-contact-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid #D32F2F; /* Bold Crimson top boundary anchor */
    border-radius: 0 0 4px 4px;
}

.riverside-contact-row { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 22px; 
}

.riverside-contact-row:last-child { 
    margin-bottom: 0; 
}

.riverside-contact-row i { 
    color: #D32F2F; /* Vibrant Red Iconography accent mapping */
    font-size: 16px; 
    margin-top: 4px; 
}

.riverside-contact-row p, 
.riverside-contact-row a { 
    color: #FDFBF7; 
    text-decoration: none; 
    font-size: 14.5px; 
    line-height: 1.55; 
    margin: 0;
}

.riverside-contact-row a:hover {
    color: #D32F2F;
    text-decoration: underline;
}

/* --- BOTTOM COMPLIANCE BAR --- */
.riverside-estate-bar {
    background: #0F1215; /* Absolute Deep Charcoal drop bar */
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: rgba(253, 251, 247, 0.45);
}

.riverside-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.riverside-legal-links a, 
.riverside-credit a {
    color: rgba(253, 251, 247, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.riverside-legal-links a:hover, 
.riverside-credit a:hover { 
    color: #D32F2F; 
}

.riverside-sep { 
    margin: 0 10px; 
    color: #D32F2F; 
    opacity: 0.4; 
}

/* --- MOBILE RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .riverside-utility-footer {
        padding-top: 80px;
    }
    .riverside-footer-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .riverside-f-heading {
        margin-bottom: 25px;
    }
    .riverside-bar-content { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    }
}

@media (max-width: 480px) {
    .riverside-utility-footer {
        padding-top: 60px;
    }
    .riverside-link-columns {
        flex-direction: column;
        gap: 20px;
    }
    .riverside-contact-card {
        padding: 20px;
    }
}


/* -----------------------------------------------------------
   BACK TO TOP ACTION TRIGGER STYLING
   ----------------------------------------------------------- */
.riverside-back-to-top {
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #1A1C1E; /* Highway Charcoal match */
  color: #FDFBF7; /* Brand Cream */
  border: 1px solid rgba(253, 251, 247, 0.1);
  border-radius: 4px; /* Crisp geometric edge matching project aesthetics */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Visibility Trigger Class handled by Javascript */
.riverside-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.riverside-back-to-top i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btt-text {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.8;
}

/* Premium Interaction State: Crimson shift on hover */
.riverside-back-to-top:hover {
  background-color: #D32F2F; /* Accent Crimson Red */
  color: #FFFFFF;
  border-color: #D32F2F;
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.riverside-back-to-top:hover i {
  transform: translateY(-3px); /* Subtle physical kinetic feedback */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .riverside-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .btt-text {
    display: none; /* Simplify on mobile screen targets */
  }
}
/* ===========================================================
   MODERN HIGH-CONTRAST RESERVATION BAR STYLING
   =========================================================== */
.reservation-bar {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background-color: #F8F9FA; /* Matches the clean white/light gray page stripes */
  width: 100%;
  box-sizing: border-box;
  z-index: 20;
}

/* Form Panel Wrapper - Matched to the website's dark charcoal section aesthetics */
.reservation-bar-form {
  background: #1A1C1E; /* Authentic Dark Charcoal matching theme blocks */
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06); 
  display: flex;
  align-items: flex-end; /* Keeps labels aligned balanced on top of input frames */
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  max-width: 1200px;
  width: 92%;
  will-change: transform, opacity;
  animation: barFadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes barFadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Individual Form Fields */
.field {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-width: 0; /* Anti-overflow metric for row flexboxes */
}

/* Form Labels - Styled to match clean typography signature */
.field label {
  font-family: 'Oswald', sans-serif; 
  font-weight: 500;
  color: #FDFBF7; /* Off-White typography */
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field label i {
  color: #D32F2F; /* Radiant Crimson Red accent color icon */
  font-size: 11px;
}

/* Fields & Custom Dropdown Select Framework */
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FDFBF7; 
  font-size: 14px;
  font-family: 'Roboto', sans-serif; 
  transition: all 0.3s ease;
  height: 46px; /* Explicit height matching for clean browser compatibility */
  box-sizing: border-box;
}

/* Targeting option colors inside select container layers */
.field select option {
  background-color: #1A1C1E;
  color: #FDFBF7;
}

/* Input Focus Behaviors */
.field input:focus,
.field select:focus {
  border-color: #D32F2F; /* Crimson border active focus loop indicator */
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
  background-color: rgba(0, 0, 0, 0.2);
  outline: none;
}

/* CTA Execution Button (Branded Deep Crimson Accent) */
.btn-check-availability {
  background: #D32F2F; /* Rich Red CTA tone matching the hero button blocks */
  color: #FFFFFF; 
  padding: 0 28px;
  border-radius: 4px; /* Structured border matching modern geometric buttons */
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  height: 46px; /* Perfectly aligned to the side-by-side input fields */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
  flex-shrink: 0;
}

.btn-check-availability:hover {
  background: #FFFFFF; 
  color: #1A1C1E; /* Shifts into corporate layout dark tone */
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-check-availability i {
  font-size: 13px;
}

/* ===========================================================
   RESPONSIVE DESIGN BREAKPOINTS
   =========================================================== */

/* Tablet & iPad Portrait Views */
@media (max-width: 1024px) {
  .reservation-bar-form {
    padding: 20px 24px;
    gap: 12px;
  }
  
  .field {
    min-width: calc(33.33% - 8px); /* Shifts fields cleanly into a balanced grid layer matrix */
  }
  
  .btn-check-availability {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* Small Screen Phones & Handset Viewports */
@media (max-width: 640px) {
  .reservation-bar {
    padding: 15px 0;
  }

  .reservation-bar-form {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
    gap: 14px;
    width: 90%;
  }

  .field {
    width: 100%;
    min-width: 100%;
  }
  
  .field label {
    margin-bottom: 6px;
  }

  .btn-check-availability {
    margin-top: 6px;
    width: 100%;
    height: 48px; /* Slightly heightened finger hit box targets for standard touch screens */
  }
}
/* --- Accessibility Banner Styling --- */
.accessibility-assistance-row {
    width: 100%;
    background-color: #1A1C1E; /* Matched to dark charcoal/black UI theme */
    border-top: 1px solid #222222; /* Subtle divider accent */
    border-bottom: 1px solid #222222;
    padding: 18px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessibility-container {
    width: 1280px;
    max-width: 100%;
    text-align: center;
}

/* Forces the sentence into a single row on desktop resolutions */
.accessibility-text {
    color: #ffffff; /* Crisp white for clean readability on dark bg */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.3px;
    white-space: nowrap; /* Forces text to sit strictly in one single row */
}

/* High Contrast Phone Link Element */
.accessibility-phone-link {
    color: #e63946; /* Matched to brand bright red CTA accent */
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
    display: inline-block;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.accessibility-phone-link:hover,
.accessibility-phone-link:focus {
    color: #ff4d5a; /* Slightly brighter red for hover state */
    text-decoration: underline;
    outline: none; /* Focus indicator managed visually via underline */
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Screens - Break the single row restriction gracefully to avoid overflow clipping */
@media (max-width: 1120px) {
    .accessibility-text {
        white-space: normal; /* Permits the text block to fold naturally onto a second line */
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .accessibility-assistance-row {
        padding: 15px 15px;
    }
    
    .accessibility-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .accessibility-phone-link {
        display: inline; /* Wrap closely inline on tiny mobile profiles */
        margin-left: 2px;
    }
}
/* ==========================================================================
   INNER PAGE HERO SECTION STYLING
   ========================================================================== */
.inner-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1A1C1E;
  padding-top: 90px; /* Accounts for header height */
  box-sizing: border-box;
}

.inner-hero *,
.inner-hero *::before,
.inner-hero *::after {
  box-sizing: border-box;
}

/* Background Image & Gradient Overlays */
.inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.inner-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(26, 28, 30, 0.85) 0%, 
    rgba(26, 28, 30, 0.5) 50%, 
    rgba(26, 28, 30, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Inner Overlay Grid Container */
.inner-hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
  z-index: 5;
  margin-top: 20px;
}

/* --- Left Column & Breadcrumb --- */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-breadcrumb a {
  color: #D32F2F;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-breadcrumb a:hover {
  color: #FDFBF7;
}

.hero-breadcrumb .separator {
  color: rgba(253, 251, 247, 0.4);
  font-size: 10px;
}

.hero-breadcrumb .current-page {
  color: #FDFBF7;
  opacity: 0.8;
}

.inner-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #FDFBF7;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.inner-hero-title .accent-text {
  color: #D32F2F;
}

.inner-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #FDFBF7;
  opacity: 0.9;
  margin: 0;
  max-width: 580px;
  line-height: 1.5;
}

/* --- Right Column Feature Glass Card --- */
.inner-hero-right {
  display: flex;
  justify-content: flex-end;
}

.inner-feature-card {
  background: rgba(26, 28, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #D32F2F;
  padding: 20px 24px;
  border-radius: 4px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.feature-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: #D32F2F;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inner-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-hero-highlights li {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #FDFBF7;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}

.inner-hero-highlights li:last-child {
  margin-bottom: 0;
}

.inner-hero-highlights li i {
  color: #D32F2F;
  font-size: 15px;
  width: 18px;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .inner-hero {
    height: auto;
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .inner-hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .inner-hero-right {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .inner-hero-container {
    padding: 0 20px;
  }

  .inner-hero-title {
    font-size: 32px;
  }

  .inner-hero-subtitle {
    font-size: 14px;
  }
}
/* ==========================================================================
   AMENITIES PAGE CONTENT SECTION
   ========================================================================== */
.amenities-page-section {
  width: 100%;
  background-color: #111111; /* Dark corporate background matching footer/cards */
  padding: 40px 20px;
  box-sizing: border-box;
}

.amenities-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Intro Text Card --- */
.amenities-intro-card {
  background: #1a1a1a;
  border: 1px solid #222222;
  border-left: 4px solid #D32F2F;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.intro-badge {
  font-family: 'Oswald', sans-serif;
  color: #D32F2F;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
}

.section-title .accent-text {
  color: #D32F2F;
}

.title-divider {
  width: 60px;
  height: 3px;
  background-color: #D32F2F;
  margin-bottom: 20px;
}

.intro-description {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 15px;
}

.intro-description:last-child {
  margin-bottom: 0;
}

.intro-description strong {
  color: #ffffff;
}

/* --- Amenities Grid Section --- */
.amenities-grid-header {
  margin-bottom: 30px;
}

.amenities-grid-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenities-grid-header p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #888888;
  margin: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Individual Feature Cards */
.amenity-card {
  background: #1a1a1a;
  border: 1px solid #282828;
  padding: 25px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  border-color: #333333;
}

/* Highlighted Main Card */
.amenity-card.featured-card {
  border-top: 3px solid #D32F2F;
  background: linear-gradient(180deg, #1f1a1a 0%, #1a1a1a 100%);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
}

.card-header i {
  color: #D32F2F;
  font-size: 20px;
}

.card-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Amenity Lists */
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #dddddd;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-list li:last-child {
  margin-bottom: 0;
}

.amenity-list li i {
  color: #D32F2F;
  font-size: 12px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .amenities-page-section {
    padding: 50px 15px;
  }

  .amenities-intro-card {
    padding: 25px;
  }

  .section-title {
    font-size: 24px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   RIVERSIDE MOTEL THINGS TO DO SECTION (ISOLATED SCOPE)
   ========================================================================== */
.rmv-ttd-section {
  width: 100% !important;
  background-color: #111111 !important; /* Matches layout background */
  padding: 40px 20px !important;
  box-sizing: border-box !important;
}

.rmv-ttd-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* --- Intro Header Box --- */
.rmv-ttd-intro-card {
  background: #1a1a1a !important;
  border: 1px solid #222222 !important;
  border-left: 4px solid #D32F2F !important;
  padding: 40px !important;
  margin-bottom: 50px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.rmv-ttd-intro-badge {
  font-family: 'Oswald', sans-serif !important;
  color: #D32F2F !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rmv-ttd-section-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 32px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 15px 0 !important;
}

.rmv-ttd-section-title .rmv-ttd-accent-text {
  color: #D32F2F !important;
}

.rmv-ttd-title-divider {
  width: 60px !important;
  height: 3px !important;
  background-color: #D32F2F !important;
  margin-bottom: 20px !important;
}

.rmv-ttd-intro-description {
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #cccccc !important;
  margin-bottom: 15px !important;
}

.rmv-ttd-intro-description:last-child {
  margin-bottom: 0 !important;
}

.rmv-ttd-intro-description strong {
  color: #ffffff !important;
}

/* --- Grid Section --- */
.rmv-ttd-attractions-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
}

/* Individual Cards */
.rmv-ttd-attraction-card {
  background: #1a1a1a !important;
  border: 1px solid #282828 !important;
  padding: 25px !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.rmv-ttd-attraction-card:hover {
  transform: translateY(-4px) !important;
  border-color: #333333 !important;
}

/* Featured Top Card */
.rmv-ttd-attraction-card.rmv-ttd-featured-card {
  border-top: 3px solid #D32F2F !important;
  background: linear-gradient(180deg, #1f1a1a 0%, #1a1a1a 100%) !important;
}

.rmv-ttd-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #2a2a2a !important;
}

.rmv-ttd-card-header i {
  color: #D32F2F !important;
  font-size: 20px !important;
}

.rmv-ttd-card-header h4 {
  font-family: 'Oswald', sans-serif !important;
  font-size: 18px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 !important;
}

/* Item List Styling */
.rmv-ttd-attraction-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.rmv-ttd-attraction-list li {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  color: #dddddd !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.rmv-ttd-attraction-list li:last-child {
  margin-bottom: 0 !important;
}

.rmv-ttd-attraction-list li i {
  color: #D32F2F !important;
  font-size: 13px !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.rmv-ttd-attraction-list li strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 14px !important;
}

.rmv-ttd-attraction-list li span {
  display: block !important;
  color: #888888 !important;
  font-size: 12px !important;
  margin-top: 2px !important;
}

/* Two-column layout inside cards */
.rmv-ttd-two-column-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}

.rmv-ttd-two-column-list li {
  margin-bottom: 0 !important;
}

/* Span across 2 grid columns on wide screens */
.rmv-ttd-span-2-desktop {
  grid-column: span 2 !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .rmv-ttd-attractions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .rmv-ttd-span-2-desktop {
    grid-column: span 2 !important;
  }
}

@media (max-width: 768px) {
  .rmv-ttd-attractions-grid {
    grid-template-columns: 1fr !important;
  }

  .rmv-ttd-span-2-desktop {
    grid-column: span 1 !important;
  }

  .rmv-ttd-two-column-list {
    grid-template-columns: 1fr !important;
  }

  .rmv-ttd-section {
    padding: 50px 15px !important;
  }

  .rmv-ttd-intro-card {
    padding: 25px !important;
  }

  .rmv-ttd-section-title {
    font-size: 24px !important;
  }
}
/* ==========================================================================
   RIVERSIDE MOTEL LOCATION & DIRECTIONS SECTION (ISOLATED SCOPE)
   ========================================================================== */
.rmv-loc-page-section {
  width: 100% !important;
  background-color: #111111 !important;
  padding: 40px 20px !important;
  box-sizing: border-box !important;
}

.rmv-loc-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.rmv-loc-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  gap: 30px !important;
  align-items: stretch !important;
}

/* --- Left Card: Details & Form --- */
.rmv-loc-info-card {
  background: #1a1a1a !important;
  border: 1px solid #222222 !important;
  border-left: 4px solid #D32F2F !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.rmv-loc-intro-badge {
  font-family: 'Oswald', sans-serif !important;
  color: #D32F2F !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rmv-loc-section-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 32px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 15px 0 !important;
}

.rmv-loc-section-title .rmv-loc-accent-text {
  color: #D32F2F !important;
}

.rmv-loc-title-divider {
  width: 60px !important;
  height: 3px !important;
  background-color: #D32F2F !important;
  margin-bottom: 20px !important;
}

.rmv-loc-intro-description {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #cccccc !important;
  margin-bottom: 15px !important;
}

.rmv-loc-intro-description strong {
  color: #ffffff !important;
}

/* Coordinates Box */
.rmv-loc-coordinates-box {
  display: flex !important;
  gap: 20px !important;
  background: #111111 !important;
  border: 1px solid #282828 !important;
  padding: 15px 20px !important;
  margin: 20px 0 !important;
}

.rmv-loc-coord-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.rmv-loc-coord-item i {
  color: #D32F2F !important;
  font-size: 18px !important;
}

.rmv-loc-coord-label {
  display: block !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 11px !important;
  color: #888888 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.rmv-loc-coord-value {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  color: #ffffff !important;
}

/* Directions Form Styling */
.rmv-loc-directions-wrapper {
  margin-top: 10px !important;
  padding-top: 20px !important;
  border-top: 1px solid #282828 !important;
}

.rmv-loc-form-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 16px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin: 0 0 15px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rmv-loc-form-title i.rmv-loc-accent-text {
  color: #D32F2F !important;
}

.rmv-loc-directions-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.rmv-loc-input-group {
  position: relative !important;
  width: 100% !important;
}

.rmv-loc-input-icon {
  position: absolute !important;
  left: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #888888 !important;
  font-size: 14px !important;
}

.rmv-loc-directions-form input[type="text"] {
  width: 100% !important;
  padding: 14px 15px 14px 42px !important;
  background-color: #111111 !important;
  border: 1px solid #333333 !important;
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease !important;
}

.rmv-loc-directions-form input[type="text"]:focus {
  outline: none !important;
  border-color: #D32F2F !important;
}

.rmv-loc-btn-directions {
  background: #D32F2F !important;
  color: #ffffff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 14px 25px !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.rmv-loc-btn-directions:hover {
  background: #b71c1c !important;
  transform: translateY(-2px) !important;
}

/* --- Right Card: Map iFrame --- */
.rmv-loc-map-card {
  background: #1a1a1a !important;
  border: 1px solid #282828 !important;
  padding: 10px !important;
  min-height: 480px !important;
}

.rmv-loc-map-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 460px !important;
}

.rmv-loc-map-wrapper iframe {
  filter: grayscale(20%) contrast(1.1) brightness(0.9) !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .rmv-loc-grid {
    grid-template-columns: 1fr !important;
  }

  .rmv-loc-map-card {
    height: 400px !important;
  }
}

@media (max-width: 576px) {
  .rmv-loc-page-section {
    padding: 50px 15px !important;
  }

  .rmv-loc-info-card {
    padding: 25px !important;
  }

  .rmv-loc-coordinates-box {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .rmv-loc-section-title {
    font-size: 24px !important;
  }
}
/* ==========================================================================
   RIVERSIDE MOTEL CONTACT SECTION (ISOLATED SCOPE)
   ========================================================================== */
.rmv-cnt-page-section {
  width: 100% !important;
  background-color: #111111 !important; /* Matches dark layout background */
  padding: 40px 20px !important;
  box-sizing: border-box !important;
}

.rmv-cnt-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* --- Intro Text Card --- */
.rmv-cnt-intro-card {
  background: #1a1a1a !important;
  border: 1px solid #222222 !important;
  border-left: 4px solid #D32F2F !important;
  padding: 40px !important;
  margin-bottom: 50px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.rmv-cnt-intro-badge {
  font-family: 'Oswald', sans-serif !important;
  color: #D32F2F !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rmv-cnt-section-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 32px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 15px 0 !important;
}

.rmv-cnt-section-title .rmv-cnt-accent-text {
  color: #D32F2F !important;
}

.rmv-cnt-title-divider {
  width: 60px !important;
  height: 3px !important;
  background-color: #D32F2F !important;
  margin-bottom: 20px !important;
}

.rmv-cnt-intro-description {
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #cccccc !important;
  margin-bottom: 15px !important;
}

.rmv-cnt-intro-description:last-child {
  margin-bottom: 0 !important;
}

.rmv-cnt-intro-description strong {
  color: #ffffff !important;
}

/* --- Contact Cards Grid --- */
.rmv-cnt-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}

.rmv-cnt-card {
  background: #1a1a1a !important;
  border: 1px solid #282828 !important;
  padding: 35px 25px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.rmv-cnt-card:hover {
  transform: translateY(-4px) !important;
  border-color: #333333 !important;
}

/* Highlighted Address Card */
.rmv-cnt-card.rmv-cnt-featured-card {
  border-top: 3px solid #D32F2F !important;
  background: linear-gradient(180deg, #1f1a1a 0%, #1a1a1a 100%) !important;
}

.rmv-cnt-card-icon {
  width: 60px !important;
  height: 60px !important;
  background-color: #111111 !important;
  border: 1px solid #333333 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}

.rmv-cnt-card-icon i {
  color: #D32F2F !important;
  font-size: 24px !important;
}

.rmv-cnt-card-content h4 {
  font-family: 'Oswald', sans-serif !important;
  font-size: 20px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 15px 0 !important;
}

.rmv-cnt-card-content address {
  font-family: 'Roboto', sans-serif !important;
  font-style: normal !important;
  font-size: 15px !important;
  color: #dddddd !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

.rmv-cnt-highlight-info {
  font-family: 'Oswald', sans-serif !important;
  font-size: 24px !important;
  color: #ffffff !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: 0.5px !important;
}

.rmv-cnt-sub-info {
  font-family: 'Roboto', sans-serif !important;
  font-size: 13px !important;
  color: #888888 !important;
  display: block !important;
  margin-bottom: 20px !important;
}

/* Schedule Block */
.rmv-cnt-time-schedule {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  width: 100% !important;
  background: #111111 !important;
  border: 1px solid #252525 !important;
  padding: 15px 10px !important;
  margin-bottom: 15px !important;
  box-sizing: border-box !important;
}

.rmv-cnt-time-item {
  display: flex !important;
  flex-direction: column !important;
}

.rmv-cnt-time-label {
  font-family: 'Oswald', sans-serif !important;
  font-size: 11px !important;
  color: #888888 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.rmv-cnt-time-value {
  font-family: 'Oswald', sans-serif !important;
  font-size: 18px !important;
  color: #D32F2F !important;
}

/* Action Links */
.rmv-cnt-card-link {
  font-family: 'Oswald', sans-serif !important;
  font-size: 13px !important;
  color: #D32F2F !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: color 0.2s ease !important;
}

.rmv-cnt-card-link:hover {
  color: #ffffff !important;
}

.rmv-cnt-card-link.rmv-cnt-btn-link {
  background: #D32F2F !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  transition: background 0.2s ease !important;
}

.rmv-cnt-card-link.rmv-cnt-btn-link:hover {
  background: #b71c1c !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .rmv-cnt-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .rmv-cnt-page-section {
    padding: 50px 15px !important;
  }

  .rmv-cnt-intro-card {
    padding: 25px !important;
  }

  .rmv-cnt-section-title {
    font-size: 24px !important;
  }

  .rmv-cnt-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ==========================================================================
   RIVERSIDE MOTEL SITEMAP SECTION (ISOLATED SCOPE)
   ========================================================================== */
.rmv-sm-page-section {
  width: 100% !important;
  background-color: #111111 !important;
  padding: 80px 20px !important;
  box-sizing: border-box !important;
}

.rmv-sm-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* --- Intro Text Card --- */
.rmv-sm-intro-card {
  background: #1a1a1a !important;
  border: 1px solid #222222 !important;
  border-left: 4px solid #D32F2F !important;
  padding: 40px !important;
  margin-bottom: 50px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.rmv-sm-intro-badge {
  font-family: 'Oswald', sans-serif !important;
  color: #D32F2F !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rmv-sm-section-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 32px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 15px 0 !important;
}

.rmv-sm-section-title .rmv-sm-accent-text {
  color: #D32F2F !important;
}

.rmv-sm-title-divider {
  width: 60px !important;
  height: 3px !important;
  background-color: #D32F2F !important;
  margin-bottom: 20px !important;
}

.rmv-sm-intro-description {
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #cccccc !important;
  margin-bottom: 15px !important;
}

.rmv-sm-intro-description:last-child {
  margin-bottom: 0 !important;
}

.rmv-sm-intro-description strong {
  color: #ffffff !important;
}

/* --- Sitemap Cards Grid --- */
.rmv-sm-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}

.rmv-sm-card {
  background: #1a1a1a !important;
  border: 1px solid #282828 !important;
  padding: 30px 25px !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.rmv-sm-card:hover {
  transform: translateY(-4px) !important;
  border-color: #333333 !important;
}

.rmv-sm-card.rmv-sm-featured-card {
  border-top: 3px solid #D32F2F !important;
  background: linear-gradient(180deg, #1f1a1a 0%, #1a1a1a 100%) !important;
}

.rmv-sm-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #2a2a2a !important;
}

.rmv-sm-card-header i {
  color: #D32F2F !important;
  font-size: 20px !important;
}

.rmv-sm-card-header h4 {
  font-family: 'Oswald', sans-serif !important;
  font-size: 18px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 !important;
}

/* Links List */
.rmv-sm-links-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.rmv-sm-links-list li {
  margin-bottom: 12px !important;
}

.rmv-sm-links-list li:last-child {
  margin-bottom: 0 !important;
}

.rmv-sm-links-list a {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
  color: #dddddd !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  background: #111111 !important;
  border: 1px solid #222222 !important;
  transition: all 0.2s ease !important;
}

.rmv-sm-links-list a i {
  color: #D32F2F !important;
  font-size: 14px !important;
  width: 18px !important;
  text-align: center !important;
  transition: color 0.2s ease !important;
}

.rmv-sm-links-list a:hover {
  color: #ffffff !important;
  background: #222222 !important;
  border-color: #D32F2F !important;
  padding-left: 18px !important; /* Smooth slide right on hover */
}

/* Highlighted CTA Link (Book Now) */
.rmv-sm-links-list a.rmv-sm-cta-link {
  background: #D32F2F !important;
  color: #ffffff !important;
  border-color: #D32F2F !important;
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.rmv-sm-links-list a.rmv-sm-cta-link i {
  color: #ffffff !important;
}

.rmv-sm-links-list a.rmv-sm-cta-link:hover {
  background: #b71c1c !important;
  border-color: #b71c1c !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .rmv-sm-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .rmv-sm-page-section {
    padding: 50px 15px !important;
  }

  .rmv-sm-intro-card {
    padding: 25px !important;
  }

  .rmv-sm-section-title {
    font-size: 24px !important;
  }

  .rmv-sm-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ==========================================================================
   RIVERSIDE MOTEL FAQ SECTION (ISOLATED SCOPE)
   ========================================================================== */
.rmv-faq-page-section {
  width: 100% !important;
  background-color: #111111 !important;
  padding: 40px 20px !important;
  box-sizing: border-box !important;
}

.rmv-faq-main-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* --- Intro Header Box --- */
.rmv-faq-intro-box {
  background-color: #1a1a1a !important;
  border: 1px solid #222222 !important;
  border-left: 4px solid #D32F2F !important;
  padding: 40px !important;
  margin-bottom: 40px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.rmv-faq-badge {
  
  color: #D32F2F !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rmv-faq-title {
  
  font-size: 32px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 15px 0 !important;
}

.rmv-faq-accent {
  color: #D32F2F !important;
}

.rmv-faq-divider {
  width: 60px !important;
  height: 3px !important;
  background-color: #D32F2F !important;
  margin-bottom: 20px !important;
}

.rmv-faq-intro-text {

  font-size: 17px !important;
  line-height: 1.7 !important;
  color: #cccccc !important;
  margin: 0 !important;
}

.rmv-faq-intro-text strong {
  color: #ffffff !important;
}

/* --- Main Grid Layout --- */
.rmv-faq-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
}

/* --- Individual FAQ Card --- */
.rmv-faq-single-card {
  background-color: #1a1a1a !important; /* Forces solid dark background */
  border: 1px solid #282828 !important;
  padding: 30px !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.rmv-faq-single-card:hover {
  transform: translateY(-4px) !important;
  border-color: #3e3e3e !important;
}

.rmv-faq-single-card.rmv-faq-featured {
  border-top: 3px solid #D32F2F !important;
  background: linear-gradient(180deg, #221a1a 0%, #1a1a1a 100%) !important;
}

/* Header inside Card */
.rmv-faq-card-head {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  padding-bottom: 18px !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid #282828 !important;
}

.rmv-faq-icon-circle {
  width: 48px !important;
  height: 48px !important;
  background-color: #111111 !important;
  border: 1px solid #2d2d2d !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.rmv-faq-icon-circle i {
  color: #D32F2F !important;
  font-size: 20px !important;
}

.rmv-faq-tag-label {
  
  font-size: 11px !important;
  color: #888888 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 2px !important;
}

.rmv-faq-card-heading {
  
  font-size: 22px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 !important;
}

/* Question Styling */
.rmv-faq-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

.rmv-faq-q-text {
  
  font-size: 18px !important;
  color: #ffffff !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.rmv-faq-q-badge {
  color: #D32F2F !important;
  font-weight: bold !important;
  font-size: 16px !important;
}

/* Answer Content Box (FIXES THE WHITE BACKGROUND OVERLAP) */
.rmv-faq-a-text {
  background-color: #111111 !important; /* Dark background box for answer text */
  border: 1px solid #252525 !important;
  padding: 18px 20px !important;

  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #dddddd !important; /* Clean light gray readable text */
  margin: 0 !important;
  border-radius: 4px !important;
}

/* Links inside Answers */
.rmv-faq-link {
  color: #D32F2F !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.rmv-faq-link:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .rmv-faq-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .rmv-faq-page-section {
    padding: 50px 15px !important;
  }

  .rmv-faq-intro-box {
    padding: 25px !important;
  }

  .rmv-faq-title {
    font-size: 24px !important;
  }

  .rmv-faq-single-card {
    padding: 20px !important;
  }
}

/* --- UNIVERSAL COOKIE BANNER --- */
.uni-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111111; /* Dark background */
  border-top: 3px solid #D32F2F; /* Riverside Red Accent Line */
  z-index: 999999;
  padding: 15px 20px; 
  box-sizing: border-box;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.uni-cookie-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.uni-cookie-text {
  color: #e0e0e0;
  font-family: 'Jost', sans-serif;
  font-size: 14px; 
  text-align: left;
  line-height: 1.5;
  flex: 1 1 70%;
}

.uni-cookie-link {
  color: #ffffff; 
  text-decoration: underline;
  margin-left: 4px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.uni-cookie-link:hover {
  color: #D32F2F;
}

.uni-cookie-btn {
  background-color: #D32F2F; /* Riverside Red button */
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700; 
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.uni-cookie-btn:hover {
  background-color: #ffffff;
  color: #111111;
}

.uni-cookie-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Responsive adjustment for mobile screen breakpoints */
@media (max-width: 768px) {
  .uni-cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .uni-cookie-text {
    text-align: center;
    font-size: 13px;
  }
  .uni-cookie-btn {
    width: 100%;
  }
}