﻿/* Import Jost - A clean, geometric sans-serif that matches the Studio 6 logo's circular geometry */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Using Jost across the site for brand cohesion */
  font-family: 'Jost', sans-serif;
  background-color:#004A99; 
  color: #002d5e; /* Updated to deep Studio 6 Blue variant */
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased; /* Makes geometric fonts look crisper */
}

/* Headings – Geometric & Modern */
h1, h2, h3, h4, h5 {
  font-family: 'Jost', sans-serif;
  font-weight: 700; /* Bold weights emphasize the geometric shapes */
  text-transform: none; /* Studio 6 uses lowercase in the logo, so we avoid forced all-caps */
  letter-spacing: -0.02em; /* Tighter tracking is common in modern geometric design */
  
}

/* -----------------------------------------------------------
   THE MONOLITH HEADER - BRAND ALIGNMENT: STUDIO 6
   Colors: Blue (#004A99), Red (#75bcff), White (#FFFFFF)
   ----------------------------------------------------------- */

.monolith-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 20px;
}

.arch-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

/* TOP BAR - PRECISION METADATA */
.precision-bar {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.precision-bar .arch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-data {
  
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  /* Brand Red for key metadata highlights */
  color: #ffffff; 
}

.location-data .sep {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 15px;
  vertical-align: middle;
}

.location-data .status { color: #FFF; opacity: 0.9; }

.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.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px !important;
  transition: 0.3s;
}

/* Hover state uses Brand Blue */
.social-dot:hover { background: #004A99; border-color: #004A99; }

/* MAIN MONOLITH - THE STRUCTURE */
.main-monolith {
  padding-top: 25px;
}

/* 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 {
   /* Swapped Cinzel for Montserrat for a modern look */
  color: #FFF;
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.4s;
  opacity: 0.9;
  font-weight: 600;
}

.nav-links a:hover { color: #E31837; opacity: 1; }

/* LOGO SHIELD - THE CENTERPIECE */
.mono-center {
  position: relative;
  width: 180px;
  height: 140px; 
  background: #FFF; /* White background to make the blue/red logo pop */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10;
  border-radius: 4px;
}

.logo-shield img {
  width: 140px; /* Slightly larger for the Studio 6 logo shape */
}

.shield-outline {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #E31837; /* Blue accent border */
  opacity: 0.2;
  pointer-events: none;
}

.mono-center:hover img {
  transform: scale(1.05);
}

/* CTA BUTTON - BRAND RED */
.mono-section.right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-gold-arch {
  background: #E31837; /* Studio 6 Red */
  color: #FFF;
  text-decoration: none;
  
  font-weight: 600;
  font-size: 11px;
  padding: 12px 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s;
  border: 2px solid #E31837;
}

.btn-gold-arch:hover {
  background: transparent;
  color: #E31837;
}

/* STICKY BEHAVIOR */
.monolith-header.sticky .monolith-wrapper {
  background: #003366; /* Darker variant of brand blue */
  height: 70px;
}

.monolith-header.sticky .mono-center {
  height: 90px;
}
/* --- 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 span {
  font-size: 10px;
  margin-right: 5px;
  color: #75bcff; /* Brand Red for visibility */
}

.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;
  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: #004A99; /* Brand Blue */
  border-color: #004A99;
  transform: translateY(-3px) rotate(8deg);
  color: #FFF !important;
}
.btn-red-arch {
  background: #ffffff;
  color: #A50021;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  padding: 12px 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s;
  border: 2px solid #A50021;
}

.btn-red-arch:hover {
  background: #FFFFFF;
  color: #A50021;
}
/* --- Smooth Interaction Enhancements --- */

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px; /* Slightly thicker for better brand presence */
  background: #E31837; /* Brand Red underline */
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-gold-arch {
  background: #E31837; /* Default Brand Red */
  border: 1px solid #E31837;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold-arch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15%; /* Adjusted for full coverage */
  width: 100%;
  height: 100%;
  background: #004A99; /* Swipes to Brand Blue on hover */
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-gold-arch:hover {
  color: #FFF !important;
  border-color: #004A99;
}

.btn-gold-arch:hover::before {
  left: 0;
}

/* --- 1. The Monolith Wrapper --- */
.monolith-wrapper {
  display: grid;
  grid-template-columns: 3fr auto 3fr;
  align-items: center;
  padding: 0 40px;
  height: 100px;
  position: relative;
  background: rgba(0, 74, 153, 0.05); /* Very subtle brand blue tint */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  overflow: clip; 
  overflow-clip-margin: 50px;
  will-change: transform, opacity;
}

/* --- 2. Grid & Glow (Studio 6 Blue Theme) --- */

/* THE GRID */
.monolith-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  /* Grid lines now use Brand Blue */
  background-image: 
    linear-gradient(rgba(0, 74, 153, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 74, 153, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -2;
  transition: opacity 0.5s ease;
}

/* THE MOUSE GLOW */
.monolith-wrapper::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0;
  top: var(--y, 0);
  left: var(--x, 0);
  width: 300px;
  height: 300px;
  /* Radial glow uses Brand Blue */
  background: radial-gradient(circle, rgba(0, 74, 153, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity 0.5s ease;
}

.monolith-wrapper:hover::before,
.monolith-wrapper:hover::after {
  opacity: 1;
}

/* --- 4. Logo Shield (Clean White for Logo Pop) --- */
.mono-center {
  height: 140px !important;
  width: 180px;
  z-index: 10;
  background: #FFFFFF; /* White background makes the Studio 6 logo colors stand out */
  position: relative;
  pointer-events: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 74, 153, 0.1);
}

/* --- Desktop: Hide Mobile Elements --- */
.mobile-toggle, .mobile-monolith-overlay {
  display: none;
}

/* --- STUDIO 6 MOBILE & TABLET STYLES --- */
@media (max-width: 1024px) {
  /* 1. Remove Topbar */
  .precision-bar {
    display: none !important;
  }

  /* 2. Realign Header */
  .monolith-header {
    padding-top: 15px;
  }

  .monolith-wrapper {
    height: 85px;
    grid-template-columns: 1fr;
    justify-items: center;
    /* CHANGE: Border to Brand Blue (Subtle) */
    border-bottom: 1px solid rgba(0, 74, 153, 0.2);
    background: #1A1A1A; /* Solid Charcoal for mobile header */
  }

  /* Hide Desktop Links */
  .mono-section.left, .mono-section.right {
    display: none;
  }

  /* 3. Show Hamburger - Studio 6 Red */
  .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 {
    /* CHANGE: Text color to Studio 6 Red */
    color: #E31837; 
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .ham-box {
    width: 24px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ham-box .bar {
    width: 100%;
    height: 2px; /* Slightly thicker for better visibility */
    /* CHANGE: Bar color to Studio 6 Red */
    background: #E31837; 
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  /* 4. The Overlay (Studio 6 Brand Space) */
  .mobile-monolith-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    /* CHANGE: Charcoal Background to match building facade */
    background: #1A1A1A; 
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05); 
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .mobile-monolith-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  /* Background Grid Effect - Modern Tech Blue */
 .menu-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
      /* Horizontal Lines - Studio 6 Red (0.06 opacity for subtlety) */
      linear-gradient(rgba(227, 24, 55, 0.06) 1px, transparent 1px),
      /* Vertical Lines - Studio 6 Blue (0.06 opacity) */
      linear-gradient(90deg, rgba(0, 74, 153, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    /* Optional: Deep charcoal base ensures the grid "pops" */
    background-color: #1A1A1A; 
  }

  /* Navigation Links */
  .m-nav ul { list-style: none; text-align: center; padding: 0; }
  .m-nav li { margin: 25px 0; }
  
  .m-nav a {
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
  }

  /* CHANGE: Hover state to Brand Blue */
  .m-nav a:hover { color: #004A99; }

  /* Metadata & Footer */
  .menu-header { text-align: center; margin-bottom: 30px; }
  
  /* CHANGE: Coordinates to Brand Red */
  .m-coord { 
    color: #ffffff; 
    font-size: 10px; 
    font-weight: 700;
    letter-spacing: 3px; 
  }
  
  .m-addr { 
    color: #FFFFFF; 
    opacity: 0.7; 
    font-size: 12px; 
    margin-top: 10px; 
    max-width: 250px;
    line-height: 1.5;
  }

  .menu-footer { text-align: center; margin-top: 40px; }
  
  .m-call { 
    color: #FFFFFF; 
    font-weight: 700;
    text-decoration: none; 
    display: block; 
    margin-bottom: 25px; 
    letter-spacing: 2px;
    border: 1px solid #E31837; /* Red border for Call Button */
    padding: 10px 20px;
  }
  
  /* CHANGE: Social Icons to Brand Blue */
  .m-social { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; }
  .m-social span { color: #004A99; font-size: 20px; }

  /* Hamburger Active State (Transform to X) */
  .mobile-toggle.active .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .mobile-toggle.active .bar:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }
}
/* --- Studio 6 Tablet & Mobile Only Styles --- */
@media (max-width: 1024px) {
  /* 1. Remove Topbar */
  .precision-bar {
    display: none !important;
  }

  /* 2. Re-stabilize the Monolith Wrapper */
  .monolith-header {
    padding-top: 10px;
    width: 100%;
  }

  .monolith-wrapper {
    display: flex; 
    justify-content: center; 
    align-items: center;
    height: 80px;
    padding: 0 20px;
    /* CHANGE: Background to Studio 6 Charcoal (Building Facade) */
    background: rgba(45, 45, 45, 0.98); 
    /* CHANGE: Border to Brand Blue with low opacity */
    border-bottom: 1px solid rgba(0, 74, 153, 0.3);
    position: relative;
    overflow: visible;
  }

  /* Force the logo container to be the center of attention */
  .mono-center {
    width: 140px !important; 
    height: 110px !important; 
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }

  .logo-shield img {
    width: 90px !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 {
    /* CHANGE: Text color to Studio 6 Red */
    color: #E31837; 
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* Hamburger Bars - ensure they match the red accent */
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    background-color: #E31837 !important;
  }

  /* 4. The Overlay (Blueprint Expansion) */
  .mobile-monolith-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    /* CHANGE: Solid Charcoal for the full menu background */
    background: #1A1A1A; 
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-direction: column;
    padding: 30px;
  }

  .mobile-monolith-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Navigation Links */
  .m-nav li {
    margin: 20px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: 0.3s;
  }

  /* Active link or hover state gets the Red accent */
  .m-nav li:hover {
    border-left-color: #E31837;
  }

  .m-nav a {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    /* CHANGE: Link color to White for contrast against charcoal */
    color: #FFFFFF; 
    letter-spacing: 3px;
    text-decoration: none;
  }

  /* Menu Footer (Location Info) */
  .menu-footer {
    margin-top: auto;
    padding-bottom: 40px;
    /* CHANGE: Brand Blue for the secondary info */
    color: #004A99; 
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
  }
}

/* Specific fix for very small phones */
@media (max-width: 400px) {
  .mono-center {
    width: 120px !important;
    height: 100px !important;
  }
  .m-nav a {
    font-size: 20px;
  }
}
/* --- Bilateral Convergence Sticky --- */
.monolith-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: transform 0.4s ease;
}

/* Create the two sliding halves */
.monolith-header::before,
.monolith-header::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #003366; /* Deep variant of Studio 6 Blue */
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1; 
    border-bottom: 3px solid #E31837; /* Studio 6 Red "Laser" 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;
    /* When active, halves slide to center */
}

.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 {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.monolith-header.sticky-active .monolith-wrapper {
    height: 70px; 
    border: none;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Scaling the logo slightly to make the "Lock" feel tighter */
.monolith-header.sticky-active .mono-center {
    transform: scale(0.8);
    background: #FFFFFF; /* Maintains logo legibility against blue panels */
    border-bottom: 2px solid #E31837;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.monolith-header.sticky-active .nav-links a:hover {
    color: #E31837; /* Red highlights on blue background */
}

/* --- HIDDEN STATE (Scrolling Down) --- */
.monolith-header.sticky-hidden {
    transform: translateY(-100%); /* Moves the whole bar up */
}
/* --- Ghost Monolith Sticky Logic --- */
.monolith-header {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                background 0.4s ease, 
                padding 0.4s ease;
}

/* The "Hidden" State (When scrolling down) */
.monolith-header.sticky-hidden {
  transform: translateY(-100%);
}

/* The "Active Sticky" State (When scrolling up) */
.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;
}

/* Unique Sticky Design - The "Antique Slab" Look */
.monolith-header.sticky-active .monolith-wrapper {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Shrink the Shield when Sticky */
.monolith-header.sticky-active .mono-center {
    height: 85px !important;
    width: 120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.monolith-header.sticky-active .logo-shield img {
    width: 90px !important; /* Adjusted for Studio 6 aspect ratio */
}
.monolith-header.sticky-active .btn-gold-arch {
    padding: 10px 20px;
    font-size: 10px;
    background: #E31837;
    border-color: #E31837;
}

/* Hide Top Bar in sticky mode to keep it clean */
.monolith-header.sticky-active .precision-bar {
  display: none;
}

/* --- NEW FUTURISTIC ANIMATION KEYFRAMES --- */

/* Text "Data-Stream" Reveal */
@keyframes dataStreamUp {
    0% { 
        opacity: 0; 
        transform: translateY(40px) skewX(-15deg);
        clip-path: inset(100% 0 0 0);
        filter: blur(10px) brightness(2);
    }
    60% {
        clip-path: inset(0 0 0 0);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) skewX(0deg);
        clip-path: inset(0 0 0 0);
        filter: blur(0) brightness(1);
    }
}

/* Image "Digital Slice" Transition */
@keyframes glitchSlice {
    0% { 
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transform: scale(1.2) translateX(20px);
        filter: hue-rotate(90deg);
    }
    100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scale(1.1);
        filter: hue-rotate(0deg);
    }
}

/* --- BASE HERO SYSTEM --- */
.hero-grid-system {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000810;
    font-family: 'Jost', sans-serif;
    overflow: hidden;
    color: #ffffff;
}

/* THE OUTER FRAME */
.grid-canvas {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(0, 74, 153, 0.2);
    z-index: 1;
}

/* --- SLIDER & IMAGERY --- */
.canvas-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 1s ease;
}

.canvas-slide.active {
    opacity: 1;
    z-index: 2;
    animation: glitchSlice 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.2) saturate(0.8);
}

/* --- HUD LAYOUT (TOP THIRD) --- */
.corner-cluster {
    position: absolute;
    z-index: 10;
    padding: 60px;
}

.top-left { 
    top: 140px; 
    left: 0; 
}

.top-right { 
    top: 130px; 
    right: 0; 
    text-align: right; 
}

/* BRANDING ELEMENTS */
.brand-tag {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tag-dash { 
    width: 40px; 
    height: 3px; 
    background: #75bcff; 
}

.tag-label { 
    font-size: 20px; 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    font-weight: 200; 
    color: #fff; 
}

/* DATA TELEMETRY (TOP RIGHT) */
.matrix-item { 
    display: none; 
}

.matrix-item.active { 
    display: block; 
    animation: dataStreamUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.m-label { 
    color: #75bcff; 
    font-size: 10px; 
    letter-spacing: 3px; 
    font-weight: 800; 
    text-transform: uppercase;
}

.m-value { 
    font-size: 24px; 
    font-weight: 200; 
    color: #fff; 
    margin-top: 5px;
    display: block;
}

/* --- MAIN CONTENT (LOWER THIRD) --- */
.main-content-anchor {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45vh;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bottom-left { 
    bottom: 0; 
    left: 0; 
    width: 60%; 
}

.bottom-right { 
    bottom: 0; 
    right: 0; 
}

/* TYPOGRAPHY */
.glitch-title {
    font-size: clamp(50px, 7vw, 110px);
    line-height: 0.8;
    font-weight: 900;
    text-transform: uppercase;
    display: none;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.glitch-title.active { 
    display: block; 
    animation: dataStreamUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards; 
}

.glitch-title .outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 5px;
}

.hero-brief {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 420px;
    display: none;
    margin: 25px 0 40px 0;
    text-transform: uppercase;
}

.hero-brief.active { 
    display: block; 
    animation: dataStreamUp 0.8s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both; 
}

/* PAGER & PROGRESS */
.hero-pager {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pager-rail {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.pager-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #75bcff;
}

.pager-numbers { 
    font-size: 12px; 
    color: #fff; 
    letter-spacing: 2px; 
    font-weight: 700;
}

/* --- INTERACTION ELEMENTS --- */
.cta-cyber-button {
    padding: 20px 40px;
    border: 1px solid #75bcff;
    background: rgba(227, 24, 55, 0.05);
    backdrop-filter: blur(5px);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-cyber-button::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%;
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta-cyber-button:hover::before { 
    left: 100%; 
}

.cta-cyber-button:hover {
    background: #75bcff;
    box-shadow: 0 0 30px rgba(227, 24, 55, 0.6);
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes dataStreamUp {
    0% { 
        opacity: 0; 
        transform: translateY(40px) skewX(-15deg);
        clip-path: inset(100% 0 0 0);
        filter: blur(10px) brightness(2);
    }
    60% {
        clip-path: inset(0 0 0 0);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) skewX(0deg);
        clip-path: inset(0 0 0 0);
        filter: blur(0) brightness(1);
    }
}

@keyframes glitchSlice {
    0% { 
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transform: scale(1.2) translateX(20px);
        filter: hue-rotate(90deg);
    }
    100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scale(1.1);
        filter: hue-rotate(0deg);
    }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 74, 153, 0.1), transparent);
    border-bottom: 1px solid rgba(0, 74, 153, 0.4);
    z-index: 5;
    pointer-events: none;
    animation: scanLineMove 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scanLineMove {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100vh); }
}
/* --- ANTIQUE NAV SYSTEM (RIGHT SIDE) --- */
.antique-nav-system {
    position: absolute;
    top: 60%;
    right: 60px; /* Shifted from left to right */
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

.nav-trigger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.nav-trigger:hover {
    border-color: #75bcff;
    box-shadow: 0 0 20px rgba(227, 24, 55, 0.4);
    transform: scale(1.1);
}

/* The rotating dashed ring */
.nav-ring {
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(227, 24, 55, 0.4);
    border-radius: 50%;
    animation: rotateRing 12s linear infinite;
    pointer-events: none;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ANTIQUE DIAL (RIGHT ALIGNED) */
.dial-frame {
    width: 2px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.dial-hand {
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 20%;
    background: #75bcff;
    box-shadow: 0 0 10px #75bcff;
    transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SLIDE SELECTOR (BOTTOM CENTER) */
.slide-indices {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.idx-item {
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'Jost';
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    border-top: 2px solid transparent; /* Changed to top for a cleaner look */
    transition: 0.4s;
}

.idx-item.active {
    color: #ffffff;
    border-color: #75bcff;
}
/* --- RESPONSIVE HUD ALIGNMENT (Mobile & iPad) --- */
@media (max-width: 1024px) {
	.hero-grid-system {
    
    height: 60vh;
    
}
    /* 1. Adjust the Outer Frame */
    .grid-canvas {
        inset: 15px; /* Smaller margin for mobile screens */
    }

    /* 2. Reposition HUD Clusters */
    .corner-cluster {
        padding: 30px; /* Reduce padding */
    }

    .top-left { 
        top: 95px; 
        left: 0; 
    }

    .top-right { 
        top: 95px; 
        right: 0; 
    }

    /* 3. Stabilize Main Content (The Bottom Section) */
    .main-content-anchor {
        height: auto;
        bottom: 120px; /* Leave room for the pager/indices */
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
    }

    .bottom-left {
        width: 100%;
    }

    .glitch-title {
        font-size: clamp(40px, 12vw, 65px); /* Responsive title size */
        margin-bottom: 15px;
    }

    .hero-brief {
        font-size: 12px;
        margin: 15px 0 25px 0;
        max-width: 90%;
    }

    /* 4. Reposition Antique Nav (Prevents overlap) */
    .antique-nav-system {
        top: auto;
        bottom: 40px;
        right: 30px;
        flex-direction: row; /* Horizontal layout for mobile */
        gap: 15px;
    }

    .dial-frame {
        display: none; /* Hide vertical dial on mobile to save space */
    }

    /* 5. Fix Slide Indices (Bottom Center) */
    .slide-indices {
        bottom: 20px;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .idx-item {
        padding: 10px 5px;
        font-size: 10px;
    }

    /* 6. Studio 6 Brand Color Overrides */
    .tag-dash { background: #E31837; } /* Red Accent */
    .tag-label { color: #004A99; }     /* Brand Blue */
    .m-label { color: #E31837; }      /* Matrix items in Red */
    .pager-fill { background: #E31837; }
    
    .cta-cyber-button {
        display:none;
    }
    
    .cta-cyber-button:hover {
        background: #E31837;
        box-shadow: 0 0 20px rgba(227, 24, 55, 0.4);
    }
}

/* Specific fix for narrow mobile (iPhone 13/14/15) */
@media (max-width: 480px) {
    .corner-cluster {
        padding: 20px;
    }
    
     .top-left { 
        top: 95px; 
        left: 0; 
    }

    .top-right { 
        top: 95px; 
        right: 0; 
    }
    .glitch-title {
        font-size: 38px;
    }

    .antique-nav-system {
        right: 20px;
    }
    
    .nav-trigger {
        width: 44px;
        height: 44px;
    }
}
/* Force the body to stay contained */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
/* --- UPDATED FOUNDATION (Same Row) --- */
.hero-foundation {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 15;
}

/* --- CENTER NAVIGATION THUMBS --- */
.hero-nav-thumbs {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-thumb {
    width: 60px;
    height: 40px;
    background-size: cover;
    background-position: center;
    /* CHANGE: Border color to Studio 6 Charcoal with low opacity */
    border: 1px solid rgba(45, 45, 45, 0.3); 
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    filter: grayscale(100%);
}

.nav-thumb:hover {
    opacity: 0.9;
    filter: grayscale(0%);
    /* CHANGE: Hover border to Studio 6 Blue */
    border-color: #004A99; 
}

.nav-thumb.active {
    opacity: 1;
    filter: grayscale(0%);
    /* CHANGE: Active border to Studio 6 Red */
    border-color: #E31837; 
    width: 80px; 
    /* Added subtle red glow to emphasize the active property view */
    box-shadow: 0 0 15px rgba(227, 24, 55, 0.3);
}

/* --- RIGHT SIDE ACTIONS --- */
.foundation-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Ensure action text/icons match the Brand Blue or Black */
.foundation-actions a, 
.foundation-actions span {
    color: #1A1A1A;
    font-weight: 700;
    transition: color 0.3s ease;
}

.foundation-actions a:hover {
    color: #E31837; /* Studio 6 Red on hover */
}

.hero-action-block { margin-top: 0 !important; }


/* --- STUDIO 6 ARCHITECTURAL DESIGN SYSTEM --- */

.vinn-split-grid {
    height: 120vh;
    background: #F2F4F7; /* Sky/Concrete Light Gray */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    transition: background 0.8s ease;
}

/* KINETIC RAIL (Background Branding) */
.vinn-kinetic-rail {
    position: absolute;
    left: 2%;
    height: 100%;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 1;
    pointer-events: none;
}

.rail-text {
    font-size: 8vh;
    font-weight: 900;
    color: rgba(0, 74, 153, 0.05); /* Very subtle Brand Blue */
    animation: marqueeVertical 40s linear infinite;
    text-transform: uppercase;
    letter-spacing: 12px;
}

@keyframes marqueeVertical {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

/* GRID WRAPPER */
.vinn-grid-wrapper {
    width: 100%;
    margin-left: 10%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    z-index: 2;
    align-items: center;
}

/* --- IMAGE PANEL --- */
.vinn-panel-img {
    height: 75vh;
    position: relative;
    /* Hide the 'bleeding' parts of the image */
    overflow: hidden; 
    /* The architectural slant */
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
    background: #2D2D2D; 
    box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
    /* Border is now inside to prevent alignment gaps */
    border-left: 5px solid #E31837; 
    transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
}

/* FIX: Force the inner reveal wrapper to fill the container height */
.vinn-img-reveal {
    width: 100%;
    height: 100%;
    position: relative;
}

.vinn-panel-img img {
    width: 100%;
    height: 100%;
    /* Standardizes the image fit */
    object-fit: cover;
    /* Centers the photo content in the frame */
    object-position: center center; 
    display: block;
    /* Increase scale slightly to cover the clip-path edges completely */
    transform: scale(1.1.1); 
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ensure the overlay also follows the slant perfectly */
.vinn-panel-overlay {
    position: absolute;
    inset: 0;
    /* Match the container slant to avoid color leaks at edges */
    clip-path: inherit; 
    background: linear-gradient(to bottom, rgba(45, 45, 45, 0.1), transparent);
    pointer-events: none;
}
/* CONTENT PANEL */
.vinn-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 8%;
}

.vinn-tag-line {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #004A99; /* Studio 6 Blue */
    margin-bottom: 15px;
    font-weight: 800;
}

.vinn-main-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.0;
    color: #004A99; /* Stark Black */
    margin: 0;
    text-transform: uppercase;
    text-decoration: none;
}
.welltitle{
color:#004A99;
text-decoration: none;
}

/* Outlined Effect */
.vinn-main-title span {
    display: block;
    color: #E31837;
    -webkit-text-stroke: 1.5px #E31837; /* Studio 6 Red Stroke */
    font-weight: 500;
    transition: -webkit-text-stroke 0.6s ease;
}

/* TEXT AREA */
.vinn-scroll-container {
    margin-top: 30px;
    min-height: 400px;
}

.vinn-lead {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2D2D2D; /* Charcoal Grey */
    line-height: 1.4;
}

.vinn-body {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A; /* Softened Body Grey */
    max-width: 440px;
}

/* FEATURE ITEMS */
.vinn-feature-grid {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.f-item {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1A1A1A;
    font-weight: 700;
}

.f-item span { 
    color: #E31837; /* Bullet Point Red */
    font-weight: 900;
    font-size: 16px;
}

/* ACTION BUTTON */
.vinn-footer-nav {
    margin-top: 50px;
}

.vinn-action-trigger {
    background: #2D2D2D; /* Charcoal Button */
    border: none;
    display: flex;
    align-items: center;
    padding: 18px 35px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: #FFFFFF; /* White Text */
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 30px;
    height: 1px;
    background: #E31837; /* Studio 6 Red */
    margin-left: 20px;
    position: relative;
    z-index: 2;
    transition: width 0.3s ease;
}

.vinn-action-trigger:hover {
    background: #E31837; /* Hover to Red */
    transform: translateX(10px);
}

.vinn-action-trigger:hover .btn-icon {
    background: #FFFFFF;
    width: 45px;
}

/* --- STATE CHANGE: ABOUT MODE --- */
[data-state="about"] .vinn-panel-img {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    border-color: #004A99; /* Red border changes to Blue */
}

[data-state="about"] .vinn-main-title span {
    -webkit-text-stroke-color: #004A99; /* Red stroke changes to Blue */
}

[data-state="about"] .vinn-panel-img img {
    transform: scale(1.1) translateX(20px);
}

/* ANIMATION HELPERS */
.vinn-view {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vinn-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(15px);
}
/* --- TEXT AREA WITH INTEGRATED SCROLLER --- */
.vinn-scroll-container {
    margin-top: 30px;
    max-height: 38vh;          /* Caps the content height relative to screen */
    overflow-y: auto;          /* Enables vertical scrolling when content spills over */
    padding-right: 20px;       /* Spacing context between scrollbar and text */
}

/* Custom Scrollbar Styles for WebKit (Chrome, Safari, Edge) */
.vinn-scroll-container::-webkit-scrollbar {
    width: 4px;                /* Minimal sleek scrollbar width */
}

.vinn-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05); /* Light gray subtle track background */
    border-radius: 2px;
}

.vinn-scroll-container::-webkit-scrollbar-thumb {
    background: #E31837;       /* Studio 6 Red Scroll Thumb */
    border-radius: 2px;
}

.vinn-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #004A99;       /* Color shift to Blue on hover */
}

/* Firefox fallback configuration */
.vinn-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #E31837 rgba(0, 0, 0, 0.05);
}

/* Adjust the paragraph layout to ensure nice scroller visibility */
.vinn-body {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 100%;           /* Let text fill out nicely within the scroll container boundary */
    margin-bottom: 20px;       /* Separation whitespace for layout text */
}

.vinn-body:last-child {
    margin-bottom: 0;
}
/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .vinn-grid-wrapper {
        grid-template-columns: 1fr;
        margin-left: 5%;
        width: 90%;
        margin-top: 50px;
    }
    .vinn-panel-img { height: 40vh; margin-bottom: 20px; }
    .vinn-kinetic-rail { display: none; }
    .vinn-split-grid { height: auto; padding: 80px 0; }
}

@media (max-width: 480px) {
    .vinn-main-title { font-size: 2.2rem; }
    .vinn-action-trigger { width: 100%; justify-content: center; }
}
/* --- AMENITIES: ARCHITECTURAL HUD SYSTEM (GRADIENT EDITION) --- */
.vinn-prop-section {
    height: 100vh;
    background: #0a0a0b;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* 1. KINETIC BACKGROUND */
.vinn-bg-parallax {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Slightly lowered to favor the gradient overlay */
    
    transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1), background-image 0.8s ease-in-out; 
    z-index: 1;
}

/* 2. TECHNICAL GRADIENT OVERLAY (New) */
.vinn-hud-overlay {
    position: absolute;
    inset: 0;
    /* A deep blue to red gradient at a low opacity to "tint" the background image */
    background: linear-gradient(135deg, rgba(0, 74, 153, 0.15) 0%, rgba(227, 24, 55, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

/* VIGNETTE LAYER: Ensures text readability */
.vinn-prop-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30%, transparent 10%, #0a0a0b 95%);
    z-index: 3;
    pointer-events: none;
}

.vinn-hud-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

/* LEFT SIDE: DATA FOCUS AREA */
.vinn-data-focus {
    max-width: 1200px;
}

.vinn-serial {
    color: #ffffff; 
    font-weight: 900;
    letter-spacing: 6px;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.vinn-focus-header h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    text-transform: uppercase;
    margin: 10px 0;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.vinn-title-underline {
    width: 60px;
    height: 3px;
    /* Gradient underline */
    background: linear-gradient(90deg, #004A99, #E31837);
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(227, 24, 55, 0.3);
}

#vinnPropDesc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(230, 230, 230, 0.8); 
    min-height: 120px;
    max-width: 480px;
}

/* RIGHT SIDE: THE INTERACTIVE RAIL */
.vinn-vertical-rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vinn-rail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 35px;
    background: rgba(255, 255, 255, 0.03); 
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* GRADIENT HOVER EFFECT (New) */
.vinn-rail-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 74, 153, 0.2), rgba(227, 24, 55, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.vinn-rail-item:hover::before, .vinn-rail-item.active::before {
    opacity: 1;
}

.vinn-rail-item:hover, .vinn-rail-item.active {
    border-left-color: #E31837;
    transform: translateX(-15px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.rail-icon {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.3);
    transition: 0.3s ease;
}

.vinn-rail-item.active .rail-icon, 
.vinn-rail-item:hover .rail-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 8px #004A99);
}

.rail-label {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.vinn-rail-item.active .rail-label,
.vinn-rail-item:hover .rail-label {
    color: #ffffff;
    letter-spacing: 3px;
}

/* ANIMATION: TYPEWRITER REVEAL */
.vinn-typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #E31837;
    animation: typing 0.5s steps(30, end), blink-caret .75s step-end infinite;
}

@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: #E31837; } }

/* HUD FOOTER (Index Counter) */
.vinn-hud-footer {
    margin-top: 40px;
  
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    letter-spacing: 2px;
}

.current-idx {
	
    color: #ffffff; 
    font-weight: 900;
}

/* --- COMPREHENSIVE HUD RESPONSIVE FIXES --- */

/* Tablet & iPad (Portrait) */
@media (max-width: 1024px) {
    .vinn-prop-section {
        height: auto; /* Allow section to grow with content */
        min-height: 80vh;
        padding: 60px 0;
        display: block; /* Switch from flex to block */
    }

    .vinn-hud-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .vinn-data-focus {
        max-width: 90%;
        margin: 0 auto;
    }

    .vinn-title-underline {
        margin: 0 auto 30px auto; /* Center the underline */
    }

    #vinnPropDesc {
        margin: 0 auto;
        max-width: 100%;
    }

    .vinn-vertical-rail {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two items per row on iPad */
        gap: 15px;
    }

    .vinn-rail-item {
        padding: 20px;
        justify-content: center;
        border-left: none;
        border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    }

    .vinn-rail-item:hover, .vinn-rail-item.active {
        transform: translateY(-5px); /* Move UP instead of LEFT */
        border-left-color: transparent;
        border-bottom-color: #E31837;
    }
}

/* Mobile Devices (Phones) */
@media (max-width: 767px) {
    .vinn-prop-section {
        padding: 60px 0;
    }

    .vinn-focus-header h2 {
        font-size: 2rem; /* Shrink title for mobile */
    }

    #vinnPropDesc {
        font-size: 15px;
        line-height: 1.6;
        min-height: auto; /* Allow box to shrink */
        margin-bottom: 20px;
    }

    /* Change Rail to a 1-column list or keep 2 columns if items are short */
    .vinn-vertical-rail {
        grid-template-columns: 1fr; 
        gap: 10px;
        padding: 0 10px;
    }

    .vinn-rail-item {
        padding: 15px;
        gap: 15px;
    }

    .rail-icon {
        font-size: 24px;
    }

    .rail-label {
        font-size: 14px;
    }

    .vinn-hud-footer {
        margin-top: 20px;
        font-size: 16px;
    }
    
    /* Ensure parallax background doesn't create horizontal scroll */
    .vinn-bg-parallax {
        inset: 0; 
    }
}

/* Landscape Mobile (Short screens) */
@media (max-height: 600px) and (orientation: landscape) {
    .vinn-prop-section { height: auto; padding: 40px 0; }
    .vinn-vertical-rail { grid-template-columns: 1fr 1fr 1fr; }
}
/* Ensure overlays don't block clicks */
.vinn-hud-overlay, 
.vinn-prop-section::after,
.vortex-container::after {
    pointer-events: none !important;
    z-index: 5;
}

/* Force buttons to the front */
.vortex-nav, 
.vinn-vertical-rail, 
.vinn-v3-details-feed,
.v-btn {
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* Ensure the cards are clickable on mobile */
.vinn-v3-card, .vinn-rail-item {
    pointer-events: auto !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* Removes the blue box on tap */
}
/* --- BRIGHTNESS & LAYER FIX FOR MOBILE/IPAD --- */

@media (max-width: 1024px) {
    /* 1. Remove the darkening vignette from overlapping the stacked content */
    .vinn-prop-section::after {
        background: radial-gradient(circle at 50% 0%, transparent 20%, #0a0a0b 100%) !important;
        opacity: 0.6; /* Lighten the overall shadow */
    }

    /* 2. Force Rail Labels to be readable (remove the 0.5 opacity) */
    .rail-label {
        color: rgba(255, 255, 255, 0.9) !important; /* Force high visibility */
        opacity: 1 !important; 
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Add contrast against the image */
    }

    .rail-icon {
        color: rgba(255, 255, 255, 0.8) !important;
        opacity: 1 !important;
    }

    /* 3. Increase background opacity of the rail items for better contrast */
    .vinn-rail-item {
        background: rgba(255, 255, 255, 0.08) !important; /* Slightly more solid than 0.03 */
        border-left: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    /* 4. Active state brightness */
    .vinn-rail-item.active .rail-label {
        color: #ffffff !important;
        text-shadow: 0 0 10px rgba(0, 74, 153, 0.8);
    }
}

/* Specific Phone Fix */
@media (max-width: 767px) {
    /* Ensure the technical overlay doesn't dull the colors too much */
    .vinn-hud-overlay {
        opacity: 0.3 !important;
    }
}
/* --- ROOMS V3: ARCHITECTURAL LIGHT THEME MASTER --- */
.vinn-rooms-v3 {
    background:rgb(242, 244, 247);
    color: #1a1a1a;
    
    position: relative;
    overflow: hidden;
}

.vinn-v3-container {
    display: grid;
    /* FLIPPED: Info (0.8fr) on Left, Visual (1.2fr) on Right */
    grid-template-columns: 0.8fr 1.2fr; 
    height: 100vh;
    width: 100%;
}

/* --- LEFT SIDE: FIXED VIEWPORT --- */
.vinn-v3-viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #f0f0f0;
    /* Border now on the LEFT of the image */
    border-left: 1px solid #e5e5e5; 
}
.vinn-v3-bg-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.vinn-v3-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: opacity 0.6s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* BRANDING BOX (Glassmorphism Light) */
.vinn-v3-branding {
    position: absolute;
    bottom: 50px;
    right: 50px; /* Moved to right */
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-right: 4px solid #E31837; /* Border flipped to right */
    border-left: none;
    text-align: right;
}

.vinn-v3-serial {
    display: block;
    font-size: 15px;
    letter-spacing: 4px;
    color: #004A99;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.vinn-v3-indicator {
   
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(90deg, #E31837, #004A99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- RIGHT SIDE: INTERACTIVE FEED --- */
.vinn-v3-details-feed {
    padding: 100px 12%;
    overflow-y: auto;
    background: #fafafa;
}

/* Custom Scrollbar for Chrome/Safari */
.vinn-v3-details-feed::-webkit-scrollbar {
    width: 4px;
}
.vinn-v3-details-feed::-webkit-scrollbar-track {
    background: #fafafa;
}
.vinn-v3-details-feed::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}

/* --- WELCOME STYLE HEADING REPLICA --- */

.vinn-v3-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #E31837; /* Studio 6 Red */
    margin-bottom: 15px;
    display: block;
    font-weight: 800; /* Bold 'WELCOME TO' style */
}

.vinn-feed-header h2 {
    font-size: 3.2rem; /* Large Impact */
    line-height: 0.9;
    color: #004A99; /* Solid Studio 6 Blue */
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

/* This creates the 'SAN MARCOS' outlined effect */
.vinn-feed-header h2 span {
    display: block;
    margin-top: 5px;
    color: #E31837;
    -webkit-text-stroke: 1.5px #E31837; /* Red Outline */
    font-weight: 400;
    letter-spacing: 2px;
}

/* ROOM CARDS */
.vinn-v3-card {
    padding: 45px 0;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.vinn-v3-card:last-child {
    border-bottom: none;
}

/* Hover & Active States */
.vinn-v3-card.active, 
.vinn-v3-card:hover {
    opacity: 1;
    background: #ffffff;
    padding-left: 25px;
    transform: translateX(10px);
    border-bottom-color: transparent;
}

.vinn-v3-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E31837, #004A99);
    transition: width 0.6s ease;
}

.vinn-v3-card.active::after {
    width: 100%;
}

.vinn-v3-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
    font-weight: 400;
    color: #1a1a1a;
}

.vinn-v3-sleeps {
    font-size: 17px;
    color: #004A99;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
}

.vinn-v3-accessibility {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    margin: 20px 0;
    max-width: 90%;
    padding: 15px;
    background: #fdfdfd;
    border-left: 2px solid #E31837;
}

/* --- THE BUTTON --- */
.vinn-v3-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(90deg, #E31837, #004A99);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(227, 24, 55, 0.15);
}

.vinn-v3-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 74, 153, 0.25);
    filter: brightness(1.1);
}

.vinn-v3-book-btn.disabled {
    background: #d0d0d0;
    color: #777;
    pointer-events: none;
    box-shadow: none;
}

/* --- COMPREHENSIVE RESPONSIVE FIXES --- */

/* Tablet & iPad (Portrait/Landscape) */
@media (max-width: 1024px) {
    .vinn-v3-container {
        /* Adjust ratio for tablets to give text more room */
        grid-template-columns: 1fr 1fr; 
        height: auto; /* Allow content to grow */
        min-height: 100vh;
    }

    .vinn-v3-details-feed {
        padding: 60px 5%;
        height: 100vh; /* Keep scrollable on iPad */
    }

    .vinn-feed-header h2 {
        font-size: 2.2rem;
    }

    .vinn-v3-branding {
        padding: 20px;
        bottom: 30px;
        right: 30px;
    }
}

/* Mobile Devices (Phones) */
@media (max-width: 767px) {
    .vinn-v3-container {
        display: flex;
        flex-direction: column; /* Stack vertically */
        height: auto;
    }

    /* Fixed Image Top Area */
    .vinn-v3-viewport {
        height: 40vh; /* Reduce height so user sees text below */
        width: 100%;
        position: sticky; /* Optional: keeps image visible while scrolling cards */
        top: 0;
        z-index: 100;
        border-left: none;
        border-bottom: 3px solid #E31837;
    }

    /* Branding box adjustments for small screens */
    .vinn-v3-branding {
        padding: 15px;
        bottom: 15px;
        right: 15px;
    }

    .vinn-v3-indicator {
        font-size: 2rem;
    }

    .vinn-v3-serial {
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* Details Feed Area */
    .vinn-v3-details-feed {
        padding: 40px 20px;
        height: auto; /* No internal scroll on mobile, use page scroll */
        overflow-y: visible;
        background: #ffffff;
    }

    .vinn-v3-tag {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .vinn-feed-header h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Room Cards Mobile Optimization */
    .vinn-v3-card {
        padding: 30px 0;
        opacity: 1; /* Keep fully visible on mobile as there is no 'hover' */
        transform: none !important;
    }

    .vinn-v3-card.active {
        padding-left: 15px;
        background: rgba(242, 244, 247, 0.5);
    }

    .vinn-v3-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .vinn-v3-sleeps {
        font-size: 14px;
    }

    .vinn-v3-accessibility {
        max-width: 100%;
        font-size: 14px;
        padding: 12px;
    }

    .vinn-v3-book-btn {
        width: 100%; /* Full width buttons are easier to tap on mobile */
        justify-content: center;
        padding: 16px;
    }
}

/* Small Screen Landscape Fix (For short phones) */
@media (max-height: 500px) and (max-width: 900px) {
    .vinn-v3-viewport {
        height: 60vh;
    }
    .vinn-v3-branding {
        display: none; /* Hide branding to save space in landscape */
    }
}
/* --- VORTEX ATTRACTIONS MASTER: STUDIO 6 BRANDING --- */
.vinn-attraction-vortex {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #0a0e12; /* Deepest Midnight Navy */
    overflow: hidden;
}

.vinn-vortex-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinn-vortex-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* --- THE VORTEX FRAMEWORK --- */
.vortex-container { 
    position: relative; 
    width: 100%; 
    height: 100%; 
}

.vortex-row, .vortex-col {
    position: absolute;
    overflow: hidden;
    background: #0f151c; /* Structural Dark Slate */
}

/* Track Positions */
.top-row { top: 0; left: 0; width: 100%; height: 18vh; border-bottom: 1px solid rgba(227, 24, 55, 0.2); }
.bottom-row { bottom: 0; left: 0; width: 100%; height: 18vh; border-top: 1px solid rgba(227, 24, 55, 0.2); }
.right-col { top: 18vh; right: 0; width: 25vw; height: 64vh; border-left: 1px solid rgba(0, 74, 153, 0.2); }
.left-col { top: 18vh; left: 0; width: 25vw; height: 64vh; border-right: 1px solid rgba(0, 74, 153, 0.2); }

/* Track Appearance */
.track {
    display: flex;
    background-size: cover;
    background-position: center;
    /* Clean, high-contrast look: less sepia, more blue-tinted darkness */
    filter: brightness(0.35) saturate(0.6) contrast(1.1);
    transition: filter 0.10s ease;
}

/* --- CENTER CONTENT STYLING --- */
.vortex-center-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 60%;
    color: #ffffff;
}

/* Red Tag for Distance/Status */
.vinn-prop-tag {
    background: #E31837; /* Studio 6 Official Red */
    color: #fff;
    padding: 5px 15px;
    font-family: 'monospace';
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.vinn-rooms-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.vinn-rooms-main-title span {
    color: #ffffff; /* Primary Branding Blue */
    font-style: normal;
}

.vortex-center-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px auto;
    max-width: 550px;
}

/* The Button - Studio 6 Red Style */
.vortex-center-content .btn-ledger {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #E31837;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #E31837;
}

.vortex-center-content .btn-ledger:hover {
    background: transparent;
    color: #E31837;
    transform: translateY(-2px);
}

/* --- NAVIGATION --- */
.vortex-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

/* --- CRITICAL FIX: Give the tracks a size --- */
.track {
    display: block; /* Change from flex to block */
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: repeat; /* Important for the infinite scroll */
    filter: brightness(0.4) saturate(0.6) contrast(1.1);
    transition: filter 0.3s ease;
}

/* Ensure the track containers are larger than the viewport to allow for the 'infinite' slide */
.top-row .track, .bottom-row .track { 
    width: 200%; /* Double width for horizontal scrolling */
    height: 100%; 
}

.right-col .track, .left-col .track { 
    height: 200%; /* Double height for vertical scrolling */
    width: 100%; 
}


/* Update track background images for the new list */
.t-park, .b-park, .r-park, .l-park { background-image: url('../images/lake-Park.jpg'); }
.t-museum, .b-museum, .r-museum, .l-museum { background-image: url('../images/museum.jpg'); }
.t-shop, .b-shop, .r-shop, .l-shop { background-image: url('../images/mall.webp'); }
.t-nature, .b-nature, .r-nature, .l-nature { background-image: url('../images/fish-hatchery.jpg'); }
.t-water, .b-water, .r-water, .l-water { background-image: url('../images/Schlitterbahn1.jpg'); }
.v-btn {
    background: #1a222a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-family: 'Montserrat';
    font-size: 12px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-btn.active {
    background: #E31837;
    border-color: #E31837;
    box-shadow: 0 0 15px rgba(227, 24, 55, 0.4);
}
/* --- CORE ANIMATIONS: Add these to make it move --- */
.top-row .track { 
    animation: moveRight 35s linear infinite; 
}
.bottom-row .track { 
    animation: moveLeft 35s linear infinite; 
}
.right-col .track { 
    animation: moveDown 35s linear infinite; 
}
.left-col .track { 
    animation: moveUp 35s linear infinite; 
}

/* Keyframes for the Infinite Loop */
@keyframes moveRight { 
    from { transform: translateX(-50%); } 
    to { transform: translateX(0); } 
}

@keyframes moveLeft { 
    from { transform: translateX(0); } 
    to { transform: translateX(-50%); } 
}

@keyframes moveDown { 
    from { transform: translateY(-50%); } 
    to { transform: translateY(0); } 
}

@keyframes moveUp { 
    from { transform: translateY(0); } 
    to { transform: translateY(-50%); } 
}

/* Ensure the background images repeat so there is no gap when moving */
.track {
    background-repeat: repeat !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* iPad / Tablet (Portrait) */
@media (max-width: 1024px) {
	.vinn-attraction-vortex {
   
    height: 90vh;
   
}
    .vinn-rooms-main-title {
        font-size: 2.5rem;
    }
    .vortex-center-content {
        width: 80%;
    }
    .right-col, .left-col {
        width: 15vw; /* Narrower side tracks */
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
	.vinn-attraction-vortex {
   
    height: 50vh;
   
}
    /* Shrink the tracks so they don't crush the text */
    .top-row { height: 12vh; }
    .bottom-row { height: 12vh; }
    .right-col { 
        top: 12vh; 
        height: 76vh; 
        width: 10vw; 
    }
    .left-col { 
        top: 12vh; 
        height: 76vh; 
        width: 10vw; 
    }

    /* Adjust Center Content */
    .vortex-center-content {
        width: 85%;
        padding: 0 10px;
    }

    .vinn-rooms-main-title {
        font-size: 1.8rem; /* Smaller titles on mobile */
        line-height: 1.2;
    }

    .vortex-center-content p {
        font-size: 14px;
        line-height: 1.5;
        margin: 10px auto;
    }

    .vinn-prop-tag {
        font-size: 10px;
        padding: 4px 10px;
    }

    .vortex-center-content .btn-ledger {
        padding: 12px 25px;
        font-size: 12px;
        margin-top: 15px;
    }

    /* Adjust Nav Dots for thumbs */
    .vortex-nav {
        bottom: 20px;
        gap: 10px;
    }

    .v-btn {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }
}

/* Landscape Mobile (Short screens) */
@media (max-height: 500px) {
    .vinn-rooms-main-title { font-size: 1.5rem; }
    .top-row, .bottom-row { height: 15vh; }
    .vortex-center-content p { display: none; } /* Hide description on very short screens */
}
/* --- CINEMATIC REVEAL SECTION (50vh) --- */
.st6-pro-cinematic {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background: #0a0e12;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sticky Reveal Logic */
.st6-reveal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates the "Reveal" effect */
    filter: brightness(0.5) saturate(0.8);
    z-index: 1;
}

/* Letterbox Frames (Top and Bottom) */
.st6-frame {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: #0a0e12;
    z-index: 5;
}
.st6-frame-top { top: 0; border-bottom: 1px solid rgba(227, 24, 55, 0.2); }
.st6-frame-bottom { bottom: 0; border-top: 1px solid rgba(0, 74, 153, 0.2); }

/* The Glass-morphism Trigger */
.st6-interface-layer {
    position: relative;
    z-index: 10;
}

.st6-play-trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 40px 15px 15px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.st6-glass-circle {
    width: 60px;
    height: 60px;
    background: #E31837; /* Studio 6 Official Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(227, 24, 55, 0.3);
    transition: transform 0.4s ease;
}

.st6-play-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 4px;
}

.st6-trigger-labels {
    display: flex;
    flex-direction: column;
}

.st6-small-tag {
    font-size: 10px;
    color: #004A99; /* Studio 6 Blue */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.st6-main-action {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Hover State */
.st6-play-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(227, 24, 55, 0.4);
}

.st6-play-trigger:hover .st6-glass-circle {
    transform: scale(1.1) rotate(90deg);
    background: #004A99; /* Shifts to blue on hover */
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .st6-pro-cinematic { height: 40vh; }
    .st6-frame { height: 10%; }
    .st6-main-action { font-size: 14px; }
    .st6-glass-circle { width: 45px; height: 45px; }
}
/* --- PROFESSIONAL MODAL SYSTEM --- */
.st6-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000; /* Ensure it's above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.st6-video-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.st6-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 18, 0.95); /* Deep dark backdrop */
    backdrop-filter: blur(8px);
}

.st6-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 10;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.st6-video-modal.is-active .st6-modal-content {
    transform: translateY(0);
}

/* 16:9 Aspect Ratio */
.st6-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.st6-video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.st6-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.st6-close-btn:hover {
    color: #E31837; /* Studio 6 Red */
}

/* --- COLLAGE GALLERY CSS --- */
.st6-collage-gallery {
    width: 100%;
    background: #F2F4F7; /* Your requested light background */
    padding: 60px 0; /* Added breathing room for the light section */
    overflow: hidden;
}

.st6-collage-slider {
    width: 100%;
    height: 90vh;
}

.collage-col {
    height: 100%;
    padding: 2px; /* Minimal gap for professional look */
    display: flex;
    flex-direction: column;
}

.collage-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

/* STACKED COLUMN LOGIC */
.collage-col.stacked { gap: 4px; }
.collage-col.stacked .collage-item { height: 50%; }

/* --- THE SLIDE-UP OVERLAY SYSTEM --- */
.item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    
    /* Hide by default */
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-info {
    /* Pushes info below the bottom edge */
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Reveal Actions */
.collage-item:hover img { transform: scale(1.1); }
.collage-item:hover .item-overlay { opacity: 1; }
.collage-item:hover .item-info { transform: translateY(0); }

/* Typography */
.st6-label {
    color: #E31837; /* ST6 Red */
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 10px;
    margin-bottom: 10px;
    display: block;
}

.item-overlay h3 {
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px 0;
}

.item-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 90%;
}

.st6-number {
    font-weight: 700;
    color: #004A99; /* ST6 Blue */
    letter-spacing: 2px;
}

/* Navigation Arrows */
.collage-arrow {
    background: white !important;
    width: 45px !important;
    height: 70px !important;
    border-radius: 4px;
    opacity: 0.8;
}
.collage-arrow:after { font-size: 18px !important; color: #000 !important; font-weight: 900; }
/* --- UPDATED STYLING FOR TECH HUB LOOK --- */

.st6-gradient-line {
    width: 60px;
    height: 3px;
    margin: 0 auto 15px auto;
    background: linear-gradient(to right, #004A99 50%, #E31837 50%); /* Blue to Red split */
}

.item-info {
    text-align: center; /* Center text like your screenshot */
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.st6-number {
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
    color: #fff;
}

/* Blue styling for current index */
.st6-number::first-letter {
    color: #004A99;
}

/* Ensure smooth hover */
.collage-item:hover .item-info {
    transform: translateY(0);
}
/* Responsive Widths */
@media (min-width: 1024px) {
    .collage-col.vertical { width: 25% !important; }
    .collage-col.featured { width: 45% !important; }
    .collage-col.stacked { width: 30% !important; }
}

@media (max-width: 768px) {
    .st6-collage-slider { height: 60vh; }
    .collage-col { width: 85% !important; }
    .item-overlay { opacity: 1; padding: 20px; }
    .item-info { transform: translateY(0); }
    .item-overlay h3 { font-size: 1.5rem; }
}

/* --- ST6 GRADIENT FOOTER MASTER --- */
.st6-estate-footer {
    /* Subtle Blue to Red Gradient Background */
    background: linear-gradient(135deg, #001A33 0%, #111111 50%, #200407 100%); 
    position: relative;
    padding-top: 80px;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* ANTIQUE WATERMARK (Updated for Brand) */
.st6-footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 6vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); 
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 15px;
    text-transform: uppercase;
}

.st6-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

/* --- LOGO STYLING --- */
.st6-f-logo {
    height: 70px;
    width: auto;
    margin-bottom: 30px;
    display: block;
    filter: brightness(1); /* Keep original logo colors */
    transition: transform 0.4s ease;
}

.st6-f-logo:hover {
    transform: scale(1.05);
}

.st6-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

/* --- TYPOGRAPHY & GRADIENT ACCENTS --- */
.st6-f-heading {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

/* Signature Red/Blue divider as seen in Connectivity Hub */
.st6-f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #004A99 50%, #E31837 50%);
}

.st6-f-tagline {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 15px;
    margin: 25px 0;
}

/* --- LINKS & SOCIALS --- */
.st6-link-columns { display: flex; gap: 40px; }
.st6-f-list { list-style: none; padding: 0; }
.st6-f-list li { margin-bottom: 12px; }

.st6-f-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st6-f-list a:hover { 
    color: #E31837; /* ST6 Red Hover */
    padding-left: 8px; 
}

.st6-red-cta {
    color: #E31837 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.st6-f-socials a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: 0.4s;
    background: rgba(255,255,255,0.02);
    text-decoration: none;
}

.st6-f-socials a:hover {
    border-color: #004A99; /* ST6 Blue */
    background: #004A99;
    transform: translateY(-5px);
}

/* --- THE LEDGER CARD (ST6 Red Accented) --- */
.st6-contact-card {
    background: rgba(0,0,0,0.4);
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid #E31837; /* ST6 Red Accent */
}

/* Kept your spacing rules on the link element */
.st6-contact-row { 
    display: inline-flex; /* Changed to inline-flex so it flows nicely as a link */
    gap: 15px; 
    margin-bottom: 20px;
    color: #fff; 
    text-decoration: none; 
    font-size: 15px; 
    line-height: 1.6; 
}
.st6-contact-row:last-child { margin-bottom: 10px; }

/* Adjusted selector: Target the parent span of the contact row */
span:has(> .st6-contact-row) { 
    color: #004A99; /* ST6 Blue Icons */
    font-size: 18px; 
    margin-top: 3px; 
}

/* --- ESTATE BAR (LEGAL) --- */
.st6-estate-bar {
    background: #111111; /* Changed from transparent RGBA to a solid dark background for predictable contrast testing */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #b3b3b3; /* Increased brightness to pass WAVE contrast checks */
    line-height: 1.6;
    
}

.st6-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Prevents text crushing on smaller screens */
}

/* Ensure the ownership text has room and doesn't squeeze columns */
.st6-ownership {
    margin: 0;
    flex: 1 1 40%;
    min-width: 280px;
}

/* Fixes the mid-column breaking issue */
.st6-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Forces Privacy / Accessibility to stay in a flat single line */
    flex: 0 0 auto;
}

.st6-credit {
    margin: 0;
    text-align: right;
    flex: 1 1 30%;
    min-width: 280px;
}

/* Link Styling with High Contrast */
.st6-legal-links a, 
.st6-credit a {
    color: #ffffff; /* pure white links for perfect contrast against dark background */
    text-decoration: underline; /* WCAG guidelines prefer underlines on links within text blocks */
    transition: color 0.3s ease;
}

/* High contrast hover behavior */
.st6-legal-links a:hover, 
.st6-credit a:hover { 
    color: #ffcc00; /* High contrast gold color for easy readability on hover */
    text-decoration: none;
}

/* Accessible separator visibility */
.st6-sep { 
    margin: 0 12px; 
    color: #ff3344; /* Brightened up slightly to pass standard visual contrast checkers */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .st6-bar-content {
        flex-direction: column;
        text-align: center;
    }
    .st6-credit {
        text-align: center;
    }
}
@media (max-width: 1024px) {
    .st6-footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .st6-bar-content { flex-direction: column; gap: 20px; text-align: center; }
}
/* --- ACCESSIBLE BACK TO TOP BUTTON --- */
.st6-back-to-top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #2D2D2D; /* Match your content panel/button charcoal dark grey */
    color: #FFFFFF;
    border: none;
    border-radius: 0px; /* Sharp architectural edges matching your layout theme */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button reveal state */
.st6-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* High contrast hover color transition */
.st6-back-to-top:hover {
    background-color: #E31837; /* Studio 6 Red brand signature accent */
    color: #FFFFFF;
}

/* Focus indicator for keyboard accessibility users */
.st6-back-to-top:focus-visible {
    outline: 3px solid #004A99; /* Brand Blue crisp focus ring */
    outline-offset: 2px;
}

/* Adjust placement on small screens to prevent overlap with thumb zones */
@media (max-width: 768px) {
    .st6-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
/* --- UNIVERSAL COOKIE BANNER --- */
.uni-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111111; /* Sleek dark architectural tone matching your estate bar */
  border-top: 3px solid #E31837; /* Studio 6 Brand Red Accent Line */
  z-index: 999999;
  padding: 15px 20px; 
  box-sizing: border-box;
  display: none; /* Controlled dynamically by JavaScript */
  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; /* Spreads text left and button right for a balanced layout */
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.uni-cookie-text {
  color: #e0e0e0; /* Off-white for clean readability */
  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: #ffcc00; /* High contrast hover color */
}

.uni-cookie-btn {
  background-color: #E31837; /* Studio 6 Red button instead of yellow */
  color: #ffffff; /* Stark white text for visibility */
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700; 
  text-transform: uppercase; /* Structural crisp lettering */
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0px; /* Removed round capsule look to match your site's sharp buttons */
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.uni-cookie-btn:hover {
  background-color: #004A99; /* Smooth shift to Studio 6 Brand Blue on hover */
  color: #ffffff;
}

.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%; /* Full width button on small mobile screens */
  }
}
/* --- Accessibility Banner Styling --- */
.accessibility-assistance-row {
    width: 100%;
    background-color: #052340; /* Exact match to your layout's architectural charcoal dark gray */
    padding: 18px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.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 high contrast readability */
    font-size: 16px; 
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Forces text to sit strictly in one single row */
}

/* High Contrast Phone Link Element */
.accessibility-phone-link {
    color: #fff; /* Studio 6 Signature Brand Red for standalone link visibility */
    text-decoration: underline; /* Underline enforced to pass WCAG text-block requirements */
    font-weight: 700;
    margin-left: 4px;
    display: inline-block;
    transition: color 0.2s ease;
}

.accessibility-phone-link:hover {
    color:#E31837; /* Transition to Studio 6 Brand Blue on hover actions */
    text-decoration: none;
}

/* Clear, highly visible focus ring for keyboard navigation users */
.accessibility-phone-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* ==========================================================================
   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 instead of running offscreen */
        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 Styles --- */
.inner-hero-section {
    position: relative;
    width: 100%;
    height: 450px; /* Perfect height balance for Studio 6 architectural sub-headers */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
   
}

/* Forces the HTML image to act like a full-bleed cover background */
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Semi-transparent dark overlay matching your Studio 6 charcoal background aesthetic */
.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85), rgba(45, 45, 45, 0.7));
    z-index: 2;
}

/* Holds the text layers neatly centered in front of the image */
.inner-hero-container {
    position: relative;
    z-index: 3;
    width: 1280px;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Clean, crisp header styling - matching bold architectural text rules */
.inner-hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900; /* Structural thick weighting */
    text-transform: uppercase;
    margin: 0 0 12px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
	margin-top:120px;
}

/* Breadcrumbs section for visual navigation and SEO health */
.inner-hero-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inner-hero-breadcrumbs a {
    color: #ffffff; /* Changed to white for ultra-clean contrast visibility over dark banner graphics */
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.2s ease;
}

.inner-hero-breadcrumbs a:hover {
    color: #E31837; /* Studio 6 Red accent on hover */
    text-decoration: none;
}

/* Red structural separator points */
.breadcrumb-separator {
    color: #E31837; /* Signature brand red matching bullet/line structures across code modules */
    font-weight: 900;
    user-select: none;
}

.breadcrumb-current {
    color: #b3b3b3; /* Accessible gray text tint for active node pathing indicators */
    font-weight: 500;
}

/* Responsive adjustments for mobile phone viewports */
@media (max-width: 768px) {
    .inner-hero-section {
        height: 220px; /* Shorter header footprint on small mobile panels */
    }
    
    .inner-hero-title {
        font-size: 28px;
    }
}
/* --- Amenities Page Content Presentation Grid Layout --- */
.amenities-display-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
}

.amenities-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
}

/* Header Text Rules */
.amenities-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.amenities-main-title {
    color: #004A99; /* Studio 6 Corporate Blue */
    font-size: 38px;
    font-weight: 900; /* Bold structural weighting */
    margin: 0 0 16px 0;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Decorative architectural accent line below title */
.amenities-main-title1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #E31837; /* Studio 6 Signature Red divider line */
}

.amenities-main-desc {
    color: #4A4A4A; /* Softened Body Grey matching homepage code modules */
    font-size: 18px;
    line-height: 1.8;
    max-width: 1280px; /* Reduced for optimal, easy-to-read text line lengths */
    margin: 20px auto 0 auto;
}

/* Highlights Box Row styles */
.amenities-highlights-bar {
    background: #2D2D2D; /* Solid dark charcoal block layout matching content panels */
    padding: 30px;
    border-radius: 0px; /* Crisp architectural corners */
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-title {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.highlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.highlight-badges span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08); /* Sleek overlay pill badges */
    padding: 8px 16px;
    border-radius: 0px; /* Sharp corners */
}

/* Red vector spans over deep charcoal background panels */
.highlight-badges span .fa-solid {
    color: #E31837 !important;
}

/* Core Multi-Column Amenities Grid Component */
.amenities-grid-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Perfect Equal Columns on Wide Screens */
    gap: 30px;
}

/* Card Component Formatting Rules */
.amenity-category-card {
    background-color: #F2F4F7; /* Sky/Concrete Light Gray matching your homepage background */
    border: 1px solid #e1e5eb;
    border-top: 4px solid #2D2D2D; /* Sharp dark top edge accents */
    border-radius: 0px; /* Removed rounded corners to match the structural brand style */
    padding: 25px;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.amenity-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 153, 0.08); /* Hover footprint cast in soft blue */
    border-top-color: #E31837; /* Turns red dynamically on interactive state hover */
}

/* Explicitly sets the policy card container apart using Brand Blue */
.amenity-category-card.policy-card {
    border-top-color: #004A99;
}

.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #d1d9e3;
    padding-bottom: 12px;
    color: #004A99; /* Heading text using Brand Blue */
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title-wrapper .fa-solid {
    font-size: 18px;
    color: #E31837; /* Core Brand Red applied to main icon spans */
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amenity-list li {
    color: #2D2D2D; /* Charcoal text for readable, high-contrast text blocks */
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.amenity-list li .fa-solid {
    color: #004A99; /* Studio 6 Blue applied to checkmark spans to cleanly balance card design */
    font-size: 14px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.policy-note {
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
    display: block;
    margin-top: 5px;
}

/* Responsive Adaptive Viewport Layout Changes */
@media (max-width: 992px) {
    .amenities-grid-system {
        grid-template-columns: repeat(2, 1fr); /* Snaps down cleanly to 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .amenities-grid-system {
        grid-template-columns: 1fr; /* 1 Column single linear grid layout flow on smartphones */
        gap: 20px;
    }
    
    .amenities-main-title {
        font-size: 28px;
    }
    
    .highlight-badges span {
        width: 100%; /* Makes pills stack intuitively on tightly grouped viewports */
        box-sizing: border-box;
    }
}
/* --- Accordion Showcase UI Layout --- */
.accordion-showcase-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
}

.showcase-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    color: #004A99; /* Studio 6 Corporate Blue */
    font-size: 38px;
    font-weight: 900; /* Bold structural weighting matching brand assets */
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.showcase-subtitle {
    color: #4A4A4A; /* Softened Body Charcoal for easy readability */
    font-size: 18px;
    line-height: 1.8;
    max-width: 1280px;
    margin: 0 auto 15px auto;
}

/* Master Grid split frame container */
.showcase-workspace {
    display: flex;
    gap: 40px;
    align-items: stretch;
    min-height: 480px;
}

/* Left Accordion Column Track */
.accordion-panel-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.accordion-item {
    border-bottom: 1px solid #e1e5eb;
    padding: 18px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-left 0.2s ease;
    border-left: 0px solid transparent;
}

.accordion-item:hover {
    background-color: #F2F4F7; /* Soft Concrete tint matching hotel content block styles */
}

.accordion-item.active {
    border-left: 4px solid #E31837; /* Studio 6 Signature Red active bar indicator */
    padding-left: 10px;
    background-color: #F2F4F7; /* Highlight active item matching brand blocks */
}

.accordion-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-number {
    font-size: 17px;
    font-weight: 700;
    color: #2D2D2D; /* Brand red for structural list indexing */
    opacity: 0.6;
}

.accordion-item.active .item-number {
    opacity: 1;
}

.accordion-header-row h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 20px;
    color: #2D2D2D; /* Deep Charcoal structural gray text */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.accordion-item.active .accordion-header-row h3 {
    color: #004A99; /* Heading shifts to Studio 6 Blue on expansion state */
}

.status-arrow {
    font-size: 14px;
    color: #888888;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

/* Red arrow transitions on active state */
.accordion-item.active .status-arrow,
.accordion-item.active .status-arrow.fa-solid {
    transform: rotate(90deg);
    color: #E31837 !important;
}

/* Hidden container state expanded via active toggles */
.accordion-body-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.3s ease;
    padding-left: 31px;
}

.accordion-item.active .accordion-body-content {
    max-height: 260px; /* Room enough to unfold cleanly without cropping texts */
    padding-top: 12px;
}

.accordion-body-content p {
    margin: 0;
    color: #4A4A4A;
    font-size: 17px;
    line-height: 1.6;
}

/* Right Static Graphic Panel layout */
.accordion-panel-right {
    flex: 1;
    position: relative;
}

.live-image-frame {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 0px; /* Sharp architectural corners matching corporate guidelines */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 74, 153, 0.06); /* Soft blueprint shadow */
    background-color: #2D2D2D;
    border: 1px solid #e1e5eb;
}

.live-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease-in-out;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .showcase-workspace {
        flex-direction: column-reverse; /* Put picture panel beneath content flow on mobiles */
        gap: 25px;
    }
    .live-image-frame {
        min-height: 240px;
        height: 240px;
    }
    .showcase-title {
        font-size: 28px;
    }
    .accordion-header-row h3 {
        font-size: 18px;
    }
}
/* --- Unique Vertical Proximity Roadmap Track Styles --- */
.proximity-timeline-section {
    width: 100%;
    background-color: #F2F4F7; /* Swapped to Concrete Gray matching hotel content blocks */
    padding: 0 20px 80px 20px;
    box-sizing: border-box;
}

.timeline-wrapper-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    font-family: 'Jost', sans-serif;
}

/* Vertical Core Spine Pathway Connecting Bars */
.timeline-road-track {
    position: relative;
    padding-left: 45px; /* Creates clearance space for the left-hand category badges */
    border-left: 2px dashed #004A99; /* Studio 6 Corporate Blue line track links everything together */
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Category Structural Block Node Labels */
.timeline-group-block {
    position: relative;
    width: 100%;
}

.timeline-category-marker {
    position: absolute;
    left: -71px; /* Positions icon element center-aligned directly above line track */
    top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

/* Graphical Icon Core Node using spans instead of legacy span tags */
.timeline-category-marker span.fa-solid {
    width: 50px;
    height: 50px;
    background-color: #004A99; /* Studio 6 Corporate Blue Background */
    color: #ffffff; /* Stark white icon presentation */
    border: 4px solid #F2F4F7; /* Blends cleanly into the concrete track background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 74, 153, 0.15);
}

.timeline-category-marker span.category-label-text {
    font-size: 16px;
    font-weight: 900; /* Bold structural brand weights */
    color: #004A99; /* Studio 6 Corporate Blue text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background-color: #F2F4F7; /* Blends seamlessly with section background tint */
    padding: 2px 8px;
}

/* Horizontal Cards Flow Container Layout rules */
.timeline-cards-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Perfect Equal card columns for wide screen presentations */
    gap: 20px;
    padding-top: 65px; /* Gives clearance padding so cards slide neatly underneath category labels */
}

/* Fallback override to make smaller list sets take full grid widths beautifully */
.timeline-card.full-span-card {
    grid-column: span 3;
}

/* The Individual Card Layout */
.timeline-card {
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 0px; /* Sharp architectural corners matching studio 6 layouts */
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    border-color: #E31837; /* Changes to Signature Brand Red on interaction points */
    box-shadow: 0 6px 18px rgba(0, 74, 153, 0.08);
}

.card-interior {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2D2D2D;
    letter-spacing: 0.8px;
}

.card-interior h4 {
    margin: 0;
    color: #2D2D2D; /* Deep Charcoal typography for structural text contrast */
    font-size: 18px;
    font-weight: 700;
}

/* Floating Distance Badges */
.distance-badge-pill {
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 0px; /* Sharp corners matching architectural layout design */
    white-space: nowrap;
    background-color: rgba(227, 24, 55, 0.08); /* Signature Brand Red alpha tint */
    color: #E31837; /* Studio 6 Signature Red text */
}

/* Distinct color variation for high-distance items */
.distance-badge-pill.accent-blue {
    background-color: rgba(0, 74, 153, 0.08); /* Studio 6 Corporate Blue alpha tint */
    color: #004A99; /* Studio 6 Corporate Blue text */
}

/* Responsive Overrides for Tablets and Smartphones */
@media (max-width: 1024px) {
    .timeline-cards-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-card.full-span-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .timeline-road-track {
        padding-left: 25px;
    }
    .timeline-category-marker {
        left: -46px;
    }
    .timeline-category-marker span.fa-solid {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .timeline-category-marker span.category-label-text {
        font-size: 14px;
    }
    .timeline-cards-flow {
        grid-template-columns: 1fr; /* Formats everything down into a single card stack layout */
        gap: 15px;
    }
    .timeline-card.full-span-card {
        grid-column: span 1;
    }
}
/* --- Corporate Contact Section Styles --- */
.contact-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 20px;
    box-sizing: border-box;
}

.contact-page-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Jost', sans-serif; /* Clean sans-serif font matching corporate guidelines */
}

/* Page Intro Top Section Header Text Rules */
.contact-section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 50px auto;
}

.contact-section-title {
    color: #004A99; /* Studio 6 Corporate Blue */
    font-size: 38px;
    font-weight: 900; /* Bold structural weighting */
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.contact-section-desc {
    color: #4A4A4A; /* Softened Charcoal body text for clean readability */
    font-size: 18px;
    line-height: 1.8;
    max-width: 1280px;
    margin: 0 auto 15px auto;
}

/* Clean Info Grid System Layout */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 clean, balanced columns */
    gap: 30px;
    align-items: stretch;
}

.detail-info-block {
    background-color: #F2F4F7; /* Concrete Gray block backgrounds matching brand site layout */
    border: 1px solid #e1e5eb;
    border-radius: 0px; /* Sharp architectural corners for an unembellished, modern feel */
    padding: 35px 25px;
    display: flex;
    flex-direction: column; /* Stacks icons above content naturally */
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.detail-info-block:hover {
    transform: translateY(-3px);
    border-color: #E31837; /* Shifts to Studio 6 Signature Red on interaction points */
    box-shadow: 0 6px 18px rgba(0, 74, 153, 0.08);
}

.block-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 74, 153, 0.08); /* Corporate Blue translucent tint */
    color: #004A99; /* Brand Blue solid icon presentation */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.block-text h3 {
    margin: 0 0 12px 0;
    color: #004A99; /* Block subheadings match Corporate Blue branding */
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.block-text p {
    margin: 0;
    color: #2D2D2D; /* Structural Deep Charcoal for readability */
    font-size: 16px;
    line-height: 1.6;
}

.contact-phone-link {
    color: #E31837; /* Studio 6 Signature Red accents active phone elements */
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    display: inline-block;
    margin-top: 6px;
}

.contact-phone-link:hover {
    text-decoration: underline;
    color: #004A99; /* Hover fallback color swap back to Corporate Blue */
}

/* Special top border indicator highlighting check-in policies */
.policy-highlight-block {
    border-top: 4px solid #E31837; /* Distinct Signature Red boundary tracking line rule */
}

.policy-highlight-block .block-icon-wrapper {
    background-color: rgba(227, 24, 55, 0.08); /* Signature Red transparent accent fill */
    color: #E31837;
}

.policy-hours-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.policy-tag {
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 0px; /* Rigid sharp layout edges */
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.policy-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #2D2D2D;
    letter-spacing: 0.5px;
}

.policy-time {
    font-size: 15px;
    font-weight: 700;
    color: #2D2D2D; /* Deep structural text gray */
}

/* Responsive Adaptive Layout Parameters */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr); /* Moves to a 2-column layout on tablets */
    }
    /* Makes the policy block span full width if it's the odd item out */
    .policy-highlight-block {
        grid-column: span 2;
    }
    .contact-section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Single column stack for smartphones */
    }
    .policy-highlight-block {
        grid-column: span 1;
    }
    .contact-section-title {
        font-size: 26px;
    }
}

/* --- Corporate Split-Screen Location Feature Module --- */
.location-section-hero {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
}

.location-wrapper-hero {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
    font-family: 'Jost', sans-serif; /* Clean industrial sans-serif font family matching corporate specifications */
}

/* Left Content Column Card Styling */
.location-info-box {
    flex: 1;
    background-color: #F2F4F7; /* Swapped to Concrete Gray matching property site color schemes */
    border: 1px solid #e1e5eb;
    border-radius: 0px; /* Sharp architectural corners for minimalist layout designs */
    padding: 40px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main-title {
    color: #004A99; /* Studio 6 Corporate Blue primary heading style */
    font-size: 38px;
    font-weight: 900; /* Structural ultra-bold design presentation */
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.contact-main-title span {
    color: #E31837; /* Studio 6 Signature Red active dynamic layout accent text markup */
}

.location-info-box p {
    color: #4A4A4A; /* Softened charcoal gray tone for clean body paragraph legibility */
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

/* Coordinates Layout Panel subsegment */
.coordinates-area, .directions-area {
    margin-bottom: 25px;
}

.location-info-box h3 {
    margin: 0 0 12px 0;
    color: #004A99; /* Corporate Blue group header accents */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Targeting span elements instead of legacy span tags */
.location-info-box h3 span.fa-solid,
.location-info-box h3 span.fas {
    color: #E31837; /* Signature Red brand coloring applied onto system tracking route vector indicators */
}

.coordinates-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.coordinates-area li {
    color: #2D2D2D; /* Structural Deep Charcoal */
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    padding: 8px 16px;
    border-radius: 0px; /* Block layout architectural edges */
}

.coordinates-area strong {
    color: #004A99; /* Bold labeling attributes wrapped around corporate blues */
}

/* Interactive Input Router Form Styling */
.directions-area form {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
}

.directions-area input[type="text"] {
    flex-grow: 1;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 0px; /* Sharp corner parameters */
    font-size: 15px;
    outline: none;
    color: #2D2D2D;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.directions-area input[type="text"]:focus {
    border-color: #004A99; /* Focus indicator targets Studio 6 Corporate Blue */
    box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
}

.directions-area button {
    background-color: #004A99; /* Primary Corporate Blue color choice for call-to-action components */
    color: #ffffff;
    border: none;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0px; /* Block styling corners */
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.directions-area button:hover {
    background-color: #E31837; /* Dynamic action hover transition splits onto Signature Red state changes */
}

/* Right Map Block Frame Container Layer */
.location-map-box {
    flex: 1.1;
    min-height: 450px;
    border-radius: 0px; /* Rigid sharp layout edges */
    overflow: hidden;
    border: 1px solid #e1e5eb;
    box-shadow: 0 4px 20px rgba(0, 74, 153, 0.04);
}

/* Responsive Adaptive Layout Viewport adjustments */
@media (max-width: 992px) {
    .location-wrapper-hero {
        flex-direction: column; /* Collapses down neatly to single column stream configuration */
        gap: 30px;
    }
    
    .location-map-box {
        height: 400px;
        min-height: 400px;
    }
    
    .contact-main-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .location-info-box {
        padding: 30px 20px;
    }
    
    .coordinates-area ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .directions-area form {
        flex-direction: column;
    }
    
    .directions-area button {
        padding: 14px 0;
        text-align: center;
    }
}
/* --- Premium Editorial Sitemap Grid Styles --- */
.sitemap-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
    box-sizing: border-box;
}

.sitemap-page-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Jost', sans-serif; /* Industrial sans-serif font family matching corporate specifications */
}

/* Section Header Styles */
.sitemap-section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 50px auto;
}

.sitemap-section-title {
    color: #004A99; /* Studio 6 Corporate Blue primary brand identifier */
    font-size: 38px;
    font-weight: 900; /* Ultra-bold structural headline weighting */
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.sitemap-section-desc {
    color: #4A4A4A; /* Softened charcoal gray for crisp body copy readability */
    font-size: 16px;
    line-height: 1.8;
    max-width: 1280px;
    margin: 0 auto 15px auto;
}

/* Core Navigation Grid Structural Framework */
.sitemap-navigation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Wide Desktop views */
    gap: 25px;
    align-items: stretch;
}

/* Individual Category Panel Cards */
.sitemap-index-card {
    background-color: #F2F4F7; /* Swapped to Concrete Gray matching property site color schemes */
    border: 1px solid #e1e5eb;
    border-top: 4px solid #004A99; /* Brand Corporate Blue top accent boundary rule */
    border-radius: 0px; /* Sharp architectural corners for minimalist layout designs */
    padding: 25px 20px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}

.sitemap-index-card:hover {
    transform: translateY(-3px);
    border-top-color: #E31837; /* Transitions card indicator strip to Studio 6 Signature Red on interaction points */
    box-shadow: 0 8px 24px rgba(0, 74, 153, 0.06);
}

/* Card Header Section Layout */
.card-category-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e1e5eb;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

/* Selector targeting semantic span classes instead of legacy span tags */
.card-category-indicator span.fa-solid {
    font-size: 18px;
    color: #004A99;
    transition: color 0.2s ease;
}

.sitemap-index-card:hover .card-category-indicator span.fa-solid {
    color: #E31837; /* Transitions icons cleanly to Signature Red on parent element hover tracking */
}

.card-category-indicator h3 {
    margin: 0;
    color: #004A99;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Anchor Link Lists formatting */
.sitemap-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-link-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Small interactive layout indicator icon vectors */
.list-arrow {
    font-size: 11px;
    color: #777777;
    transition: transform 0.2s ease, color 0.2s ease;
}

.sitemap-link-list li:hover .list-arrow {
    transform: translateX(3px);
    color: #E31837; /* Shifts to Signature Red arrow on active link hover states */
}

.sitemap-link-list a {
    color: #2D2D2D; /* Structural Deep Charcoal for standard links */
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
    display: block;
    width: 100%;
}

.sitemap-link-list li:hover a {
    color: #004A99; /* Highlights list target elements back to Corporate Blue */
}

/* RESPONSIVE PARAMS: Re-arranges columns for tablet and smartphone viewports */
@media (max-width: 1024px) {
    .sitemap-navigation-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns layout balance */
        gap: 20px;
    }
    
    .sitemap-section-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .sitemap-navigation-grid {
        grid-template-columns: 1fr; /* Formats down into single column line track layout */
        gap: 15px;
    }
    
    .sitemap-section-title {
        font-size: 26px;
    }
    
    .sitemap-index-card {
        padding: 20px;
    }
}
/* --- Premium Corporate FAQ Page Layout Styles --- */
.faq-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    box-sizing: border-box;
}

.faq-page-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Jost', sans-serif; /* Clean industrial sans-serif matching core layout specs */
}

/* Page Intro Top Section Header Text Rules */
.faq-section-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.faq-section-title {
    color: #004A99; /* Studio 6 Corporate Blue primary brand identifier */
    font-size: 38px;
    font-weight: 900; /* Heavy graphic weight layout title style */
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.faq-section-title span {
    color: #E31837; /* Studio 6 Signature Red brand highlight accent */
}

.faq-section-desc {
    color: #4A4A4A; /* Charcoal body copy for clean text readability balance */
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* Master Columns Arrangement Grid Workspace */
.faq-layout-workspace {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDEBAR: Sticky Floating Anchors Navigator Column */
.faq-nav-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 30px; /* Locks module beautifully when scrolling past content nodes */
}

.sticky-nav-card {
    background-color: #F2F4F7; /* Swapped from cream to Concrete Gray matching hotel layout standards */
    border: 1px solid #e1e5eb;
    border-radius: 0px; /* Sharp architectural corners for corporate layout style consistency */
    padding: 24px;
    box-sizing: border-box;
}

.sticky-nav-card h3 {
    margin: 0 0 16px 0;
    color: #004A99;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e1e5eb;
    padding-bottom: 10px;
}

.faq-jump-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2D2D2D; /* Structural charcoal for menu layout links */
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 0px; /* Hard square layout edge */
    transition: all 0.2s ease;
}

/* Selector modernized to style semantic span icons instead of legacy span tags */
.faq-jump-link span.fa-solid {
    font-size: 16px;
    color: #004A99; /* Primary Blue navigation icons */
    width: 20px;
    text-align: center;
    transition: color 0.2s ease;
}

.faq-jump-link:hover {
    background-color: #ffffff;
    color: #E31837; /* Highlighting active menu targets with Studio 6 Signature Red accent */
    box-shadow: 0 2px 6px rgba(0, 74, 153, 0.05);
}

.faq-jump-link:hover span.fa-solid {
    color: #E31837; /* Icon shifts to accent red alongside hover string */
}

/* RIGHT SIDEBAR: Question Content Cards Area Layout */
.faq-content-track {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-group-block {
    scroll-margin-top: 30px; /* Offsets scroll tracking cleanly under sticky margins */
}

.group-block-title {
    color: #004A99;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid #E31837; /* Swapped to dynamic signature red vertical boundary rule */
    padding-left: 12px;
}

/* Individual Card Blocks System */
.faq-qa-card {
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 0px; /* Crisp straight edges to match inner layout cards */
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 74, 153, 0.02);
}

.faq-question-row, .faq-answer-row {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    box-sizing: border-box;
}

.faq-question-row {
    background-color: #F2F4F7; /* Concrete surface contrast for question rows */
    border-bottom: 1px solid #e1e5eb;
}

/* Circular Letter Q / A Index Labels Formatting */
.qa-indicator {
    width: 28px;
    height: 28px;
    background-color: #004A99; /* Question blocks match core corporate navy */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.qa-indicator.text-red {
    background-color: rgba(227, 24, 55, 0.08); /* Replaced with Studio 6 Signature Red translucent alpha tint */
    color: #E31837;
}

.faq-question-row h4 {
    margin: 0;
    color: #004A99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 3px;
}

.faq-answer-row p {
    margin: 0;
    color: #2D2D2D; /* Structural Deep Charcoal for maximum contrast body output */
    font-size: 16px;
    line-height: 1.7;
    padding-top: 2px;
}

/* Inside Hyperlinks Formatting rules */
.faq-answer-row a {
    color: #004A99; /* Active action text anchors explicitly lock to corporate blue */
    text-decoration: none;
    font-weight: 700;
}

.faq-answer-row a:hover {
    color: #E31837; /* Swaps to signature red on active cursor hover tracks */
    text-decoration: underline;
}

.faq-tel-link {
    color: #2D2D2D !important; /* Telephone strings anchor directly to structural dark charcoal */
    white-space: nowrap;
}

/* RESPONSIVE SUB-OVERRIDES: Adapts columns layout for tablet devices */
@media (max-width: 992px) {
    .faq-layout-workspace {
        flex-direction: column; /* Stacks navigation lists above the data cards track */
    }
    
    .faq-nav-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .sticky-nav-card {
        display: flex;
        flex-direction: row;
        overflow-x: auto; /* Enables sliding tab row configuration on mobile viewports */
        gap: 10px;
        white-space: nowrap;
        padding: 15px;
    }
    
    .sticky-nav-card h3 {
        display: none; /* Hides internal sub-headings on linear row streams */
    }
    
    .faq-section-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .faq-section-title {
        font-size: 26px;
    }
    
    .faq-question-row, .faq-answer-row {
        padding: 16px;
        gap: 12px;
    }
    
    .group-block-title {
        font-size: 18px;
    }
    
    .faq-question-row h4 {
        font-size: 15px;
    }
}
/* 1. The full-width background strip stretching edge-to-edge */
.booking-container {
  width: 100%;
  background-color: #F2F4F7; /* Seamlessly fills the whole horizontal area */
  padding: 20px 0; /* Creates breathing room above and below the white bar */
  position: relative;
  z-index: 99;
  box-sizing: border-box;
}

/* 1. Full-width background strip stretching edge-to-edge */
.booking-container {
  width: 100%;
  background-color: #F2F4F7;
  padding: 40px 0;
  position: relative;
  z-index: 99;
  box-sizing: border-box;
}

/* 2. Seamless Framed Design */
.reservation-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dcdcdc; /* Sharp structural look */
  border-left: 5px solid #001d66; /* Deep navy anchor accent */
  box-sizing: border-box;
  padding: 0; /* Let form fields pad themselves */
  overflow: hidden;
}

.reservation-box form {
  display: flex;
  align-items: stretch; /* Stretches the fields and button to uniform height */
  width: 100%;
  gap: 0; /* Eliminates messy gaps for a solid geometric look */
}

/* Split field blocks using sleek dividers */
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 25px;
  border-right: 1px solid #eef0f4;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #001d66; 
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group label svg {
  color: #e31837;
}

/* Stripped minimal inputs */
.form-group input,
.form-group select {
  width: 100%;
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  background: transparent;
  height: 32px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* Custom Dropdown Arrow position tweak */
.custom-select-wrapper::after {
  content: "▼";
  font-size: 9px;
  color: #001d66;
  position: absolute;
  right: 25px;
  bottom: 30px; 
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus {
  border-bottom: 1px solid #001d66;
  outline: none;
}

/* Button Container locks flush right */
.form-btn-group {
  flex: 1.2; 
  display: flex;
}

/* High-impact flush button matching the "BOOK NOW" buttons on the layout */
.check-btn {
  width: 100%;
  background: #e31837;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 30px;
}

.check-btn:hover {
  background: #001d66; /* Shifts to the logo navy blue on hover */
}

/* Responsive Structural Breakdowns */
@media (max-width: 1240px) {
  .reservation-box {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .reservation-box form {
    flex-direction: column;
  }
  .form-group {
    border-right: none;
    border-bottom: 1px solid #eef0f4;
    padding: 15px 20px;
  }
  .custom-select-wrapper::after {
    bottom: 25px;
  }
  .check-btn {
    height: 55px;
    padding: 20px;
  }
}