/* 
  DEM OAK
  Vanilla CSS Style Sheet
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-ivory: #F8F6F2;
  --color-charcoal: #1A1A1A;
  --color-gold: #B89B72;
  --color-sand-beige: #D9CBB8;
  --color-pitch-black: #000000;
  --font-sans: "Open Sans", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Cormorant SC", Georgia, serif;
  --font-display: "Cormorant SC", sans-serif;
  --font-amaze: "Cormorant SC", cursive;
  --font-mono: 'IBM Plex Sans', monospace;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--color-charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

/* Resets and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
}

body {
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Utility Layouts */
.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 7rem 6rem;
  }
}

/* Typography Variables in CSS classes */
.font-sans { font-family: var(--font-sans); }
.font-serif { font-family: var(--font-serif); }
.font-display { font-family: var(--font-display); }
.font-amaze { font-family: var(--font-amaze); }
.font-mono { font-family: var(--font-mono); }

/* Custom Loading Screen */
#global_loader_screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--color-pitch-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 1.5rem;
  user-select: none;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

#global_loader_screen.loaded {
  transform: translateY(-100%);
}

#loader_top_credit {
  font-size: 13.5px;
  color: #A28456;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.45;
}

#loader_logo_holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#logo_container img#luxury_emblem {
  max-width: 280px;
  max-height: 280px;
  object-contain: contain;
  mix-blend-mode: screen;
  filter: contrast(2.0) brightness(0.75) saturate(1.15);
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  #logo_container img#luxury_emblem {
    max-width: 400px;
    max-height: 400px;
  }
}

#loader_progressbar_container {
  width: 100%;
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.loader-bar-outer {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar-inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #DFBA8A, var(--color-gold));
  width: 0%;
  transition: width 0.05s linear;
}

#loader_progress_meta {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  opacity: 0.8;
}

/* SVG filters for background keying */
.svg-filters-hidden {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Floating Navigation Bar */
#global_navbar_navigation {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 1.5rem;
  transition: all 0.5s;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 2rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 203, 184, 0.5);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s;
}

.nav-logo-text {
  font-family: var(--font-serif);
  letter-spacing: 0.22em;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-charcoal);
  transition: all 0.3s;
}

.nav-logo-text:hover {
  transform: scale(1.02);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(26, 26, 26, 0.7);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-cta-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta-wrap {
    display: block;
  }
}

.btn-nav-reserve {
  padding: 0.625rem 1.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-radius: 9999px;
  border: none;
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-nav-reserve:hover {
  background-color: var(--color-gold);
}

.btn-toggle-mobile-menu {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
}

@media (min-width: 1024px) {
  .btn-toggle-mobile-menu {
    display: none;
  }
}

/* Mobile Navigation Dropdown */
#mobile_dropdown_drawer {
  background-color: var(--color-charcoal);
  border-bottom: 1px solid rgba(217, 203, 184, 0.1);
  position: absolute;
  top: 100%;
  left: 1.5rem;
  right: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

#mobile_dropdown_drawer.open {
  display: flex;
}

#mobile_dropdown_drawer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s;
}

#mobile_dropdown_drawer a:hover {
  color: var(--color-gold);
}

#mobile_btn_book_visit {
  width: 100%;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border: none;
  padding: 0.875rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

#mobile_btn_book_visit:hover {
  background-color: white;
  color: var(--color-charcoal);
}

/* Split Hero & Overview Container */
#hero_overview_container {
  display: flex;
  flex-direction: column;
  background-color: var(--color-charcoal);
}

@media (min-width: 1024px) {
  #hero_overview_container {
    flex-direction: row;
  }
}

#overview_image_sidebar {
  display: none;
}

@media (min-width: 1024px) {
  #overview_image_sidebar {
    display: block;
    width: 32%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: var(--color-charcoal);
    border-right: 1px solid rgba(217, 203, 184, 0.1);
    flex-shrink: 0;
  }
}

#overview_image_sidebar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

#hero_overview_left_flow {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 1. Hero Section */
#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-charcoal);
  overflow: hidden;
}

#hero_backdrop_media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  user-select: none;
}

#hero_backdrop_media img, .hero_zoom_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  animation: kenburns-slow 22s ease-in-out infinite alternate;
}

.hero_gradient_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(to bottom, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(26, 26, 26, 0.85) 100%),
    linear-gradient(to right, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.1) 60%, rgba(26, 26, 26, 0.5) 100%);
}

@keyframes kenburns-slow {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.12);
  }
}

#hero_box {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  width: 100%;
  padding: 8rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
}

@media (min-width: 768px) {
  #hero_box {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

#hero_copy_central {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

#hero_copy_central h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: white;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  #hero_copy_central h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  #hero_copy_central h1 {
    font-size: 4.25rem;
  }
}

#hero_copy_central h1 span.italic {
  display: inline-block;
  font-style: italic;
  color: #DFBA8A;
}

#hero_copy_central p {
  color: rgba(223, 186, 138, 0.95);
  max-width: 32rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  #hero_copy_central p {
    font-size: 2rem;
  }
}

#hero_copy_central p span {
  font-size: 2.25rem;
  color: white;
  font-weight: 400;
  font-style: italic;
}

#hero_ctas_row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  #hero_ctas_row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.btn-hero-primary {
  background-color: var(--color-gold);
  color: white;
  border: none;
  padding: 1.125rem 2rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  background-color: white;
  color: var(--color-charcoal);
}

.btn-hero-secondary {
  border: 1px solid rgba(217, 203, 184, 0.7);
  color: var(--color-charcoal);
  background-color: var(--color-ivory);
  padding: 1.125rem 2rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-align: center;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
}

/* 2. Project Overview */
#overview-section {
  background-color: var(--color-ivory);
  padding: 5rem 1.5rem;
  border-bottom: 1px solid rgba(217, 203, 184, 0.3);
}

@media (min-width: 768px) {
  #overview-section {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1200px) {
  #overview-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.overview-wrapper {
  display: flex;
  flex-direction: column; /* Stacked layout on mobile and tablet */
  gap: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .overview-wrapper {
    flex-direction: row; /* Side-by-side on desktop */
    align-items: flex-start;
    gap: 4.5rem;
  }
}

.overview-image-box {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .overview-image-box {
    width: 38%;
    max-width: 420px;
  }
}

.overview-image-render {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain; /* Guarantee full visibility of structural image without changing aspect ratio */
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(217, 203, 184, 0.25);
  background-color: transparent;
  transition: transform 0.4s ease;
}

.overview-image-render:hover {
  transform: scale(1.015);
}

#overview_copy_panels {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

#overview_header_block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eyebrow-text {
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  display: block;
}

#overview_header_block h2 {
  font-family: var(--font-serif);
  font-size: 1.62rem;
  color: var(--color-charcoal);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: justify;
}

@media (min-width: 768px) {
  #overview_header_block h2 {
    font-size: 2.43rem;
  }
}

#overview_header_block p {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
}

/* Mobile-only tower showcard */
.mobile-tower-showcard {
  display: block;
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(217, 203, 184, 0.4);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background-color: rgba(26, 26, 26, 0.05);
}

@media (min-width: 1024px) {
  .mobile-tower-showcard {
    display: none;
  }
}

.mobile-tower-showcard img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 640px;
}

/* Stats grid */
#overview_stats_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  #overview_stats_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: #faf9f6;
  background-image: radial-gradient(rgba(184, 155, 114, 0.12) 1px, transparent 1px);
  background-size: 8px 8px;
  border: 1px solid rgba(217, 203, 184, 0.35);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  box-shadow: 0 12px 40px rgba(184, 155, 114, 0.08);
  transform: translateY(-2px);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stat-card-label {
  color: rgba(26, 26, 26, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.stat-card-icon {
  color: rgba(184, 155, 114, 0.7);
  transition: color 0.3s;
}

.stat-card:hover .stat-card-icon {
  color: var(--color-gold);
}

.stat-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-cursive {
  font-family: var(--font-amaze);
  font-size: 2rem;
  color: var(--color-charcoal);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number-cursive {
    font-size: 2.5rem;
  }
}

.stat-card p {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.6);
}

#overview_btn_block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  #overview_btn_block {
    flex-direction: row;
    align-items: center;
  }
}

.btn-overview-brochure {
  background-color: var(--color-gold);
  color: white;
  border: 1px solid var(--color-gold);
  padding: 0.875rem 2rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-overview-brochure:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-overview-plans {
  border: none;
  background: none;
  color: rgba(26, 26, 26, 0.8);
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-overview-plans:hover {
  color: var(--color-gold);
}

/* 3. Why This Project Section */
#why-section {
  position: relative;
  background-color: white;
  padding: 7rem 1.5rem;
  border-top: 1px solid rgba(217, 203, 184, 0.3);
  border-bottom: 1px solid rgba(217, 203, 184, 0.3);
  overflow: hidden;
}

@media (min-width: 768px) {
  #why-section {
    padding: 7rem 4rem;
  }
}

@media (min-width: 1024px) {
  #why-section {
    padding: 7rem 7rem;
  }
}

.corner-accent-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  border-top: 1px solid rgba(184, 155, 114, 0.2);
  border-l: 1px solid rgba(184, 155, 114, 0.2);
  pointer-events: none;
}

.corner-accent-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  border-bottom: 1px solid rgba(184, 155, 114, 0.2);
  border-r: 1px solid rgba(184, 155, 114, 0.2);
  pointer-events: none;
}

#message_container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

#header_label_with_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.dev-corporate-badge {
  color: var(--color-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .dev-corporate-badge {
    font-size: 12px;
  }
}

#developer_corporate_emblem {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: all 0.5s;
}

#developer_corporate_emblem:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  #developer_corporate_emblem {
    width: 5rem;
    height: 5rem;
  }
}

#message_display_title {
  font-size: 1.875rem;
  font-family: var(--font-serif);
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 1.2;
}

@media (min-width: 768px) {
  #message_display_title {
    font-size: 3rem;
  }
}

.letter-accent-divider {
  width: 5rem;
  height: 1.5px;
  background-color: var(--color-gold);
  margin-top: 1rem;
}

#message_body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: var(--font-serif);
  color: #111111;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  text-align: justify;
}

@media (min-width: 768px) {
  #message_body {
    font-size: 1.15rem;
  }
}

@media (min-width: 1024px) {
  #message_body {
    font-size: 1.25rem;
  }
}

#message_body p {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(184, 155, 114, 0.2);
}

@media (min-width: 768px) {
  #message_body p {
    padding-left: 2rem;
  }
}

#message_body p strong {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
}

#message_body p.not-italic-text {
  font-style: normal;
  font-weight: 500;
  color: var(--color-gold);
}

#message_signoff {
  padding-top: 2rem;
  border-top: 1px solid rgba(217, 203, 184, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  #message_signoff {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.signature-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-charcoal);
  font-weight: 600;
}

.signature-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 0.25rem;
}

.signature-stats-box {
  display: flex;
  gap: 1.5rem;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 26, 0.5);
  border-left: 1px solid rgba(217, 203, 184, 0.2);
  padding-left: 1.5rem;
}

.signature-stat-value {
  color: var(--color-gold);
  font-size: 12px;
  font-family: var(--font-serif);
  display: block;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0.125rem;
}

/* 4. Amenities Section */
#amenities-section {
  background-color: var(--color-ivory);
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--color-charcoal);
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.title-underline-center {
  width: 4rem;
  height: 1px;
  background-color: rgba(184, 155, 114, 0.5);
  margin: 1.50rem auto 0 auto;
}

.section-intro-para {
  color: rgba(26, 26, 26, 0.6);
  max-width: 40rem;
  margin: 1rem auto 0 auto;
  font-size: 14px;
}

@media (min-width: 768px) {
  .section-intro-para {
    font-size: 16px;
  }
}

.category-tabs-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .category-tabs-bar {
    gap: 1rem;
  }
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 9999px;
  border: 1px solid rgba(217, 203, 184, 0.4);
  background-color: white;
  color: rgba(26, 26, 26, 0.65);
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background-color: rgba(217, 203, 184, 0.1);
  color: var(--color-charcoal);
}

.tab-btn.active {
  background-color: var(--color-charcoal);
  color: white;
  border-color: var(--color-charcoal);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1280px) {
  .amenities-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

.amenity-card {
  background-color: white;
  border: 1px solid rgba(217, 203, 184, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
}

.amenity-card:hover {
  border-color: rgba(184, 155, 114, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.amenity-img-wrapper {
  overflow: hidden;
  aspect-ratio: 1.4;
  position: relative;
  background-color: #eee;
}

.amenity-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.amenity-card:hover .amenity-img-wrapper img {
  transform: scale(1.05);
}

.amenity-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5) 0%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.amenity-card:hover .amenity-img-overlay {
  opacity: 0.4;
}

.amenity-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(26, 26, 26, 0.9);
  color: white;
  padding: 0.125rem 0.5rem;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.125rem;
}

.amenity-card-caption {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 0.5rem;
}

.amenity-card-caption h4 {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--color-charcoal);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .amenity-card-caption h4 {
    font-size: 15px;
  }
}

.amenity-card:hover .amenity-card-caption h4 {
  color: var(--color-gold);
}

.amenity-card-cta-strip {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(217, 203, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-gold);
}

.amenity-card-cta-strip span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.amenity-cta-arrow {
  font-size: 11px;
  transition: transform 0.3s;
}

.amenity-card:hover .amenity-cta-arrow {
  transform: translateX(3px);
}

/* Modals Framework */
.generic-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
}

.generic-modal-backdrop.open {
  display: flex;
}

.generic-modal-card {
  background-color: white;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 0;
}

.btn-close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-charcoal);
  border: 1px solid rgba(217, 203, 184, 0.2);
  padding: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.btn-close-modal:hover {
  background-color: var(--color-gold);
  color: white;
}

/* Amenity Detail Specific Multi-grid Layout */
.amenity-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .amenity-split-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.amenity-photo-panel {
  position: relative;
  min-height: 20rem;
}

@media (min-width: 768px) {
  .amenity-photo-panel {
    grid-column: span 5;
    min-height: 100%;
  }
}

.amenity-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
}

.amenity-floating-watermark {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
}

.amenity-watermark-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.amenity-watermark-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.amenity-watermark-desc {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.amenity-details-panel {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .amenity-details-panel {
    grid-column: span 7;
    padding: 2.5rem;
  }
}

.amenity-details-category {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.amenity-details-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

@media (min-width: 768px) {
  .amenity-details-title {
    font-size: 2rem;
  }
}

.amenity-accent-line {
  width: 3rem;
  height: 1px;
  background-color: rgba(184, 155, 114, 0.5);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.amenity-long-description {
  color: rgba(26, 26, 26, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.amenity-features-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.amenity-features-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  font-weight: 700;
}

.amenity-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .amenity-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenity-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 12.5px;
  color: rgba(26, 26, 26, 0.7);
}

.amenity-bullet-point {
  color: var(--color-gold);
  user-select: none;
  font-weight: bold;
}

.amenity-host-cta-box {
  background-color: var(--color-ivory);
  padding: 1.25rem;
  border: 1px solid rgba(217, 203, 184, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .amenity-host-cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.amenity-host-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 26, 0.4);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.amenity-host-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.btn-request-tour {
  background-color: var(--color-charcoal);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-request-tour:hover {
  background-color: var(--color-gold);
}

/* 5. Residence Section */
#residences-section {
  background-color: white;
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

.residence-card {
  background-color: var(--color-ivory);
  border: 1px solid rgba(217, 203, 184, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
}

.residence-card:hover {
  border-color: rgba(184, 155, 114, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.residence-img-wrapper {
  overflow: hidden;
  aspect-ratio: 1.35;
  position: relative;
  background-color: #eee;
}

.residence-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.residence-card:hover .residence-img-wrapper img {
  transform: scale(1.03);
}

.residence-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(26, 26, 26, 0.95);
  color: var(--color-gold);
  padding: 0.125rem 0.625rem;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.125rem;
}

.residence-card-caption {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 1rem;
}

.residence-card-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-charcoal);
  font-weight: 700;
  line-height: 1.2;
}

.residence-card:hover .residence-card-caption h4 {
  color: var(--color-gold);
}

.residence-card-caption p.desc {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.5);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.residence-specs-capsule {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(217, 203, 184, 0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.residence-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.residence-spec-row span.label {
  color: rgba(26, 26, 26, 0.4);
}

.residence-spec-row span.value {
  font-weight: 600;
  color: var(--color-charcoal);
}

.residence-card-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(217, 203, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-gold);
}

.residence-card-footer span.price {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}

.residence-inspect-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Residence Detail Modal Split Layout */
.res-modal-inner {
  max-width: 64rem;
}

.res-modal-photo-panel {
  position: relative;
  min-height: 24rem;
  background-color: var(--color-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .res-modal-photo-panel {
    grid-column: span 5;
    min-height: 100%;
  }
}

.res-modal-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.res-modal-watermark-floating {
  position: relative;
  z-index: 10;
}

.res-modal-watermark-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #DFBA8A;
  background-color: rgba(26, 26, 26, 0.8);
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(217, 203, 184, 0.2);
  display: inline-block;
}

.res-modal-caption-details {
  position: relative;
  z-index: 10;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.res-modal-caption-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.res-modal-caption-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
}

.res-modal-caption-para {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 24rem;
}

.res-modal-details-panel {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .res-modal-details-panel {
    grid-column: span 7;
    padding: 2.5rem;
  }
}

.res-modal-specs-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background-color: var(--color-ivory);
  padding: 1rem;
  border: 1px solid rgba(217, 203, 184, 0.15);
  border-radius: 0.75rem;
}

@media (min-width: 480px) {
  .res-modal-specs-group {
    grid-template-columns: repeat(4, 1fr);
  }
}

.res-modal-spec-tile {
  text-align: center;
  padding: 0.625rem;
  background-color: white;
  border: 1px solid rgba(217, 203, 184, 0.15);
  border-radius: 0.5rem;
}

.res-tile-label {
  font-size: 9px;
  color: rgba(26, 26, 26, 0.4);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.res-tile-number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-charcoal);
}

@media (min-width: 768px) {
  .res-tile-number-row {
    font-size: 15px;
  }
}

.res-tile-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Interactive Blueprint construction stage */
#blueprint_interactive_box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blueprint-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blueprint-header-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  font-weight: 700;
}

.blueprint_badge_status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--color-gold);
  text-transform: uppercase;
  background-color: rgba(184, 155, 114, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

#blueprint_canvas_outer {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* GRID LAYOUT BACKGROUND LINES */
.blueprint-constructor-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: 24px 24px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  z-index: 0;
}

.blueprint-layout-cad-vector {
  position: absolute;
  inset: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-dashed-structure-circle {
  width: 80%;
  height: 66%;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
}

#blueprint_canvas_hotspots {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* Coordinates button hotspot */
.blueprint-spot-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.spot-ping-ring {
  position: relative;
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
}

.spot-ping-circle {
  animation: spot-ping-animation 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  opacity: 0.7;
}

.blueprint-spot-btn.active .spot-ping-circle {
  background-color: #DFBA8A;
}

.blueprint-spot-btn:not(.active) .spot-ping-circle {
  background-color: rgba(255, 255, 255, 0.4);
}

.spot-index-indicator {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-family: var(--font-mono);
  line-height: 1;
  transition: all 0.3s;
}

.blueprint-spot-btn.active .spot-index-indicator {
  background-color: #DFBA8A;
  color: var(--color-charcoal);
  border-color: #DFBA8A;
  font-weight: 700;
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.blueprint-spot-btn:not(.active) .spot-index-indicator {
  background-color: rgba(26, 26, 26, 0.9);
  color: white;
}

.blueprint-spot-btn:not(.active):hover .spot-index-indicator {
  border-color: #DFBA8A;
}

@keyframes spot-ping-animation {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Tooltip dynamic details strip */
#blueprint_tooltip_overlay {
  margin: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blueprint-tooltip-label {
  font-size: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.blueprint-tooltip-value {
  color: white;
  font-size: 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  margin-top: 0.125rem;
}

.blueprint-tooltip-status-annotation {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Submission Callback boxes */
#modal_callback_lead_wrap {
  background-color: var(--color-ivory);
  padding: 1.5rem;
  border: 1px solid rgba(217, 203, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callback-header-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  font-weight: 700;
  display: block;
}

.callback-header-title {
  font-size: 14px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-charcoal);
}

.callback-header-text {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.5;
}

.modal-input-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .modal-input-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modal-callback-field {
  width: 100%;
  background-color: white;
  border: 1px solid rgba(217, 203, 184, 0.3);
  padding: 0.75rem;
  font-size: 12px;
  color: var(--color-charcoal);
  outline: none;
  border-radius: 0.5rem;
  transition: border-color 0.3s;
}

.modal-callback-field:focus {
  border-color: var(--color-gold);
}

.modal-callback-field::placeholder {
  color: rgba(26, 26, 26, 0.3);
}

.modal-actions-box-row {
  display: flex;
  gap: 0.75rem;
}

.btn-confirm-callback {
  flex: 1;
  background-color: var(--color-charcoal);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-confirm-callback:hover {
  background-color: var(--color-gold);
}

.btn-launch-main-modal {
  border: 1px solid rgba(217, 203, 184, 0.9);
  color: var(--color-charcoal);
  padding: 0.875rem 1rem;
  font-size: 10px;
  font-weight: 600;
  background: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-launch-main-modal:hover {
  background-color: white;
}

/* Success status boxes */
.modal_success_frame {
  padding: 1.25rem;
  background-color: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #065f46;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 0.5rem;
}

.modal_success_frame h5 {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
}

.modal_success_frame p {
  font-size: 10px;
  color: #047857;
  max-width: 24rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* 6. Location Section grid */
#location-section {
  background-color: white;
  border-bottom: 1px solid rgba(217, 203, 184, 0.25);
}

#location_headline_wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#location_layout_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  #location_layout_grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
}

#location_list_panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  #location_list_panel {
    grid-column: span 5;
  }
}

#location_tabs_container {
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
  padding-bottom: 1rem;
}

#location_category_tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
  width: 100%;
}

.tab-btn-loc {
  width: 100%;
  padding: 0.5rem;
  font-size: 9px;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(217, 203, 184, 0.3);
  background-color: var(--color-ivory);
  color: rgba(26, 26, 26, 0.6);
  border-radius: 9999px;
  text-align: center;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
}

@media (min-width: 480px) {
  .tab-btn-loc {
    font-size: 10px;
  }
}

.tab-btn-loc:hover {
  background-color: rgba(217, 203, 184, 0.1);
  color: var(--color-charcoal);
}

.tab-btn-loc.active {
  background-color: var(--color-charcoal);
  color: white;
  border-color: var(--color-charcoal);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#landmarks_custom_scroll {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-height: 28rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.landmark-list-item {
  padding: 0.75rem;
  background-color: var(--color-ivory);
  border: 1px solid rgba(217, 203, 184, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: all 0.3s;
}

.landmark-list-item:hover {
  background-color: white;
  box-shadow: 0 4px 12px rgba(184, 155, 114, 0.08);
  border-color: rgba(184, 155, 114, 0.3);
}

.landmark-item-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 70%;
}

.landmark-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-category-circular {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 203, 184, 0.25);
  flex-shrink: 0;
}

.landmark-title-row h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-charcoal);
  transition: color 0.3s;
}

@media (min-width: 480px) {
  .landmark-title-row h4 {
    font-size: 12px;
  }
}

.landmark-list-item:hover .landmark-title-row h4 {
  color: var(--color-gold);
}

.landmark-desc-meta {
  font-size: 10px;
  color: rgba(26, 26, 26, 0.5);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landmark-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
  padding-top: 0.125rem;
}

.landmark-time-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: white;
  padding: 0.125rem 0.5rem;
  border: 1px solid rgba(217, 203, 184, 0.2);
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.landmark-time-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  color: var(--color-charcoal);
}

.landmark-distance-label {
  font-size: 9px;
  color: rgba(26, 26, 26, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#location_map_panel {
  background-color: var(--color-ivory);
  border: 1px solid rgba(217, 203, 184, 0.35);
  padding: 0.5rem;
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
}

@media (min-width: 1024px) {
  #location_map_panel {
    grid-column: span 7;
  }
}

.map-header-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background-color: white;
  border-radius: 0.75rem 0.75rem 0 0;
  border-bottom: 1px solid rgba(217, 203, 184, 0.1);
}

.map-header-address-tag {
  font-size: 12px;
  color: var(--color-charcoal);
  font-weight: 500;
}

.map-header-address-tag strong {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

.map-header-address-tag span {
  color: rgba(26, 26, 26, 0.85);
  font-weight: 300;
}

#interactive_map_stage {
  position: relative;
  flex: 1;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

#interactive_map_stage iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.map_tint_shade_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.05);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: multiply;
}

.floating-zoom-triggers {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px solid rgba(217, 203, 184, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}

.zoom-btn {
  padding: 0.5rem;
  color: var(--color-charcoal);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.zoom-btn:hover {
  background-color: var(--color-ivory);
  color: var(--color-gold);
}

.zoom-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.zoom-btn-divider {
  height: 1px;
  background-color: rgba(217, 203, 184, 0.25);
}

.map-action-strip {
  margin-top: 0.5rem;
  background-color: var(--color-charcoal);
  color: white;
  padding: 1.25rem;
  border: 1px solid rgba(184, 155, 114, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-btns-row-wrap {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-map-action {
  flex: 1;
  padding: 0.625rem 2rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.150em;
  border-radius: 0.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .btn-map-action {
    flex: none;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.btn-map-action.primary {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border: none;
}

.btn-map-action.primary:hover {
  background-color: rgba(184, 155, 114, 0.8);
  transform: scale(1.01);
}

.btn-map-action.secondary {
  background-color: white;
  color: var(--color-charcoal);
  border: none;
}

.btn-map-action.secondary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* 7. Contact Handlers enquiry box */
#contact-enquiry-section {
  background-color: var(--color-ivory);
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

#enquiry_grand_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  #enquiry_grand_box {
    grid-template-columns: repeat(12, 1fr);
  }
}

#enquiry_left_panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  #enquiry_left_panel {
    grid-column: span 5;
  }
}

#enquiry_left_panel h2 span.italic {
  font-style: italic;
  color: var(--color-gold);
}

#enquiry_left_panel p {
  color: rgba(26, 26, 26, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

#enquiry_channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.enquiry-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  color: rgba(26, 26, 26, 0.8);
  text-decoration: none;
}

.enquiry-contact-link:hover {
  color: var(--color-gold);
}

.contact-icon-frame {
  padding: 0.5rem;
  background-color: white;
  color: var(--color-gold);
  border: 1px solid rgba(217, 203, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label-sub {
  font-size: 9px;
  color: rgba(26, 26, 26, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: block;
}

.contact-value-title {
  font-size: 14px;
  font-weight: 500;
}

.contact-value-title.font-mono {
  font-family: var(--font-mono);
}

#enquiry_chats_cta_block {
  padding-top: 0.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-whatsapp-cta-direct {
  width: auto;
  align-self: center;
  margin: 0 auto;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-whatsapp-cta-direct:hover {
  background-color: black;
}

#enquiry_right_panel {
  background-color: white;
  padding: 1.5rem;
  border: 1px solid rgba(217, 203, 184, 0.3);
  position: relative;
  border-radius: 0;
}

@media (min-width: 768px) {
  #enquiry_right_panel {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  #enquiry_right_panel {
    grid-column: span 7;
  }
}

.blur-background-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(184, 155, 114, 0.05);
  border-radius: 9999px;
  filter: blur(24px);
  pointer-events: none;
}

#on_page_lead_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#on_page_lead_form h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  font-weight: 600;
  border-bottom: 1px solid rgba(217, 203, 184, 0.15);
  padding-bottom: 0.75rem;
}

#on_page_fields_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  #on_page_fields_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.onpage-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.onpage-field-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
}

.onpage-input-field {
  width: 100%;
  background-color: var(--color-ivory);
  border: 1px solid rgba(217, 203, 184, 0.3);
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: var(--color-charcoal);
  outline: none;
}

.onpage-input-field:focus {
  border-color: var(--color-gold);
}

#on_page_buttons_parent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

@media (min-width: 480px) {
  #on_page_buttons_parent {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn-onpage-action {
  padding: 1rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.btn-onpage-action.primary {
  background-color: var(--color-charcoal);
  color: white;
  border: none;
}

.btn-onpage-action.primary:hover {
  background-color: var(--color-gold);
}

.btn-onpage-action.secondary {
  border: 1px solid rgba(26, 26, 26, 0.3);
  color: var(--color-charcoal);
  background: none;
}

.btn-onpage-action.secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* 8. Elegant Footer */
#applet_footer {
  background-color: #000000;
  color: white;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer_space {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#footer_split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  #footer_split {
    grid-template-columns: repeat(12, 1fr);
  }
}

#footer_col_logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  #footer_col_logo {
    grid-column: span 3;
  }
}

#footer_col_logo p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  line-height: 1.75;
  text-align: justify;
  max-width: 14rem;
  letter-spacing: 0.05em;
}

#footer_col_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  font-size: 12px;
}

@media (min-width: 1024px) {
  #footer_col_links {
    grid-column: span 5;
  }
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-group h5 {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 9px;
}

.footer-link-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link-group ul a, .footer-link-group ul button {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
}

.footer-link-group ul a:hover, .footer-link-group ul button:hover {
  color: white;
}

#address_coordinates {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-address-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-address-meta-row a {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-address-meta-row a:hover {
  color: white;
}

#footer_col_map_embed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  #footer_col_map_embed {
    grid-column: span 4;
  }
}

#footer_col_map_embed h5 {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 9px;
}

#google_map_embed_box {
  position: relative;
  width: 100%;
  height: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #1a1a1a;
  overflow: hidden;
}

.map-embed-color-filter {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(28, 25, 23, 0.1);
  mix-blend-mode: color;
}

#leaflet_iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) grayscale(100%) brightness(90%) contrast(100%);
}

#addr_site {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

#addr_site span {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.4;
}

#footer_disclaimer_row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 640px) {
  #footer_disclaimer_row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-legal-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#legal_links {
  display: flex;
  gap: 1rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  align-items: center;
}

#legal_links button {
  background: none;
  border: none;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.3s;
}

#legal_links button:hover {
  color: white;
}

/* Base popup enquiry LeadModal form modal styling details */
#lead_submission_card {
  max-width: 32rem;
  width: 100%;
  background-color: white;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  max-height: 92vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(217, 203, 184, 0.3);
  overflow: hidden;
}

#lead_modal_header {
  background-color: var(--color-ivory);
  border-bottom: 1px solid rgba(217, 203, 184, 0.25);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lead_modal_scroll_body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #lead_modal_scroll_body {
    padding: 2rem;
  }
}

#lead_titles {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}

#lead_titles h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  font-weight: 600;
}

@media (min-width: 768px) {
  #lead_titles h3 {
    font-size: 1.5rem;
  }
}

#lead_titles p {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.5);
  line-height: 1.5;
  max-width: 24rem;
  margin: 0 auto;
}

#lead_registration_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lead-form-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.45);
}

.lead-form-input {
  width: 100%;
  background-color: var(--color-ivory);
  border: 1px solid rgba(217, 203, 184, 0.3);
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: var(--color-charcoal);
  outline: none;
}

.lead-form-input:focus {
  border-color: var(--color-gold);
}

#rera_warning_box {
  background-color: var(--color-ivory);
  padding: 0.75rem;
  border: 1px solid rgba(217, 203, 184, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(26, 26, 26, 0.45);
}

#rera_warning_box p {
  font-size: 9px;
  line-height: 1.5;
}

#form_buttons_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  padding-top: 0.5rem;
}

@media (min-width: 480px) {
  #form_buttons_box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn-lead-form-submit {
  padding: 0.875rem 1rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-lead-form-submit.charcoal {
  background-color: var(--color-charcoal);
  color: white;
}

.btn-lead-form-submit.charcoal:hover {
  background-color: var(--color-gold);
}

.btn-lead-form-submit.gold {
  background-color: var(--color-gold);
  color: white;
}

.btn-lead-form-submit.gold:hover {
  background-color: var(--color-charcoal);
}

#whats_app_alternative {
  text-align: center;
  padding-top: 0.25rem;
}

#whats_app_alternative span {
  font-size: 10px;
  color: rgba(26, 26, 26, 0.4);
  display: block;
  margin-bottom: 0.5rem;
}

.btn-whatsapp-alternative-trigger {
  width: 100%;
  border: 1px solid #25D366;
  color: #25D366;
  background: none;
  padding: 0.75rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-whatsapp-alternative-trigger:hover {
  background-color: #25D366;
  color: white;
}

#lead_submission_success {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.success-icon-circle-frame {
  width: 4rem;
  height: 4rem;
  background-color: rgba(184, 155, 114, 0.1);
  color: var(--color-gold);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.success-titles-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-charcoal);
}

.success-titles-wrap p {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.5;
  max-width: 24rem;
  margin: 0.5rem auto 0 auto;
}

#success_lead_summary {
  background-color: var(--color-ivory);
  padding: 1rem;
  max-width: 24rem;
  margin: 0 auto;
  border: 1px solid rgba(217, 203, 184, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.65);
}

.success-summary-row strong {
  color: var(--color-charcoal);
}

.success-actions-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  padding-top: 1rem;
}

@media (min-width: 480px) {
  .success-actions-row {
    flex-direction: row;
  }
}

.btn-success-action {
  padding: 0.875rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
}

.btn-success-action.whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-success-action.whatsapp:hover {
  background-color: #1ebd54;
}

.btn-success-action.close {
  background-color: var(--color-charcoal);
  color: white;
}

.btn-success-action.close:hover {
  background-color: var(--color-gold);
}

#lead_modal_bottom {
  background-color: var(--color-ivory);
  border-top: 1px solid rgba(217, 203, 184, 0.2);
  padding: 1rem;
  text-align: center;
  font-size: 8.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.4);
}

/* 9. Visual Portfolio / Gallery Section */
#gallery-section {
  background-color: white;
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

.gallery-categories-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .gallery-categories-menu {
    gap: 1rem;
  }
}

.btn-gallery-cat {
  padding: 0.625rem 1.25rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background-color: var(--color-ivory);
  color: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(217, 203, 184, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gallery-cat:hover {
  border-color: rgba(184, 155, 114, 0.3);
  color: var(--color-charcoal);
}

.btn-gallery-cat.active {
  background-color: var(--color-charcoal);
  color: white;
  border-color: var(--color-charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(217, 203, 184, 0.1);
  background-color: var(--color-ivory);
  aspect-ratio: 4/3;
  transition: all 0.5s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.3) 60%, transparent 100%);
  opacity: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-overlay-inner {
  transform: translateY(1rem);
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay-inner {
  transform: translateY(0);
}

.gallery-overlay-badge {
  font-size: 8.5px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  display: block;
}

.gallery-overlay-title {
  color: white;
  font-size: 15px;
  font-family: var(--font-serif);
}

@media (min-width: 768px) {
  .gallery-overlay-title {
    font-size: 18px;
  }
}

.gallery-overlay-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-lightbox-trigger-meta {
  padding-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-gold);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Lightbox overlay popup viewport */
.lightbox-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-modal-backdrop.open {
  display: flex;
}

.btn-lightbox-nav {
  position: absolute;
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-lightbox-nav:hover {
  color: var(--color-gold);
}

.btn-lightbox-nav.prev {
  left: 1rem;
}

@media (min-width: 768px) {
  .btn-lightbox-nav.prev {
    left: 2.5rem;
  }
}

.btn-lightbox-nav.next {
  right: 1rem;
}

@media (min-width: 768px) {
  .btn-lightbox-nav.next {
    right: 2.5rem;
  }
}

.btn-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-lightbox-close:hover {
  color: var(--color-gold);
}

#lightbox_inner_container {
  max-width: 64rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.lightbox-stage-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 70vh;
  border: 1px solid rgba(217, 203, 184, 0.25);
  background-color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-stage-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-compass-watermark {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: rgba(184, 155, 114, 0.6);
  font-size: 8.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.125rem 0.5rem;
}

#lightbox_captions {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
}

.lightbox-caption-eyebrow {
  font-size: 10px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  display: block;
}

.lightbox-caption-title {
  color: white;
  font-size: 1.25rem;
  font-family: var(--font-serif);
}

@media (min-width: 768px) {
  .lightbox-caption-title {
    font-size: 1.5rem;
  }
}

.lightbox-caption-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.6;
}

/* 10. Developer Milestones / Timeline */
#developer-developer-timeline-section {
  background-color: var(--color-ivory);
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

.timeline-outer-box {
  max-width: 50rem;
  margin: 4rem auto 0 auto;
  position: relative;
  padding-left: 2rem;
}

@media (min-width: 640px) {
  .timeline-outer-box {
    padding-left: 4rem;
  }
}

.timeline-vertical-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: rgba(184, 155, 114, 0.25);
}

@media (min-width: 640px) {
  .timeline-vertical-spine {
    left: 2rem;
  }
}

.timeline-milestone-node {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-milestone-node:last-child {
  margin-bottom: 0;
}

.timeline-node-pin {
  position: absolute;
  top: 0.25rem;
  left: -2rem;
  width: 9px;
  height: 9px;
  background-color: var(--color-gold);
  border-radius: 9999px;
  transform: translateX(-4.5px);
  z-index: 2;
  box-shadow: 0 0 0 4px white;
}

@media (min-width: 640px) {
  .timeline-node-pin {
    left: 0;
  }
}

.timeline-node-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-year-tag {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-gold);
  line-height: 1;
  font-weight: 700;
}

.timeline-title-meta {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

.timeline-desc-para {
  font-size: 13.5px;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.6;
}

/* 11. Testimonials Section */
#testimonials-section {
  background-color: white;
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-item-card {
  background-color: var(--color-ivory);
  border: 1px solid rgba(217, 203, 184, 0.15);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonial-rating-row {
  display: flex;
  gap: 0.125rem;
  color: #fbbf24;
}

.testimonial-text-content {
  font-size: 14.5px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(217, 203, 184, 0.15);
  padding-top: 1rem;
}

.testimonial-author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(217, 203, 184, 0.3);
}

.testimonial-author-biographies {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.testimonial-author-role {
  font-size: 10px;
  color: rgba(26, 26, 26, 0.5);
}

.testimonial-author-unit {
  font-size: 10px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-weight: 600;
}

/* 12. Lifestyle Moments Section */
#lifestyle-moments-section {
  background-color: white;
  border-bottom: 1px solid rgba(217, 203, 184, 0.2);
}

.lifestyle-main-showcase {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lifestyle-main-showcase {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}

.lifestyle-copy-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .lifestyle-copy-box {
    grid-column: span 5;
  }
}

.lifestyle-selectors-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-lifestyle-selector {
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.btn-lifestyle-selector:hover {
  background-color: var(--color-ivory);
}

.btn-lifestyle-selector.active {
  background-color: var(--color-ivory);
  border-color: rgba(217, 203, 184, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.lifestyle-selector-value {
  font-size: 14px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.4);
  transition: color 0.3s;
}

.btn-lifestyle-selector.active .lifestyle-selector-value {
  color: var(--color-gold);
}

.lifestyle-selector-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
  transition: color 0.3s;
}

.btn-lifestyle-selector.active .lifestyle-selector-title {
  color: var(--color-charcoal);
}

.lifestyle-display-desc {
  font-size: 13.5px;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.6;
}

.lifestyle-photo-stage {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(217, 203, 184, 0.2);
  aspect-ratio: 16/10;
  background-color: #eee;
}

@media (min-width: 1024px) {
  .lifestyle-photo-stage {
    grid-column: span 7;
  }
}

.lifestyle-photo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.lifestyle-stage-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(26, 26, 26, 0.95);
  color: var(--color-gold);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.625rem;
}

/* ==========================================================================
   PC, TABLET, AND MOBILE HIGH-FIDELITY COMPATIBILITY LAYER
   ========================================================================== */

/* --- 1. HERO & GENERAL RESPONSIVE TEXT FORMATTING (All Screens) --- */
@media (max-width: 1023px) {
  #hero_overview_container h1 {
    font-size: 3rem !important;
    line-height: 1.15 !important;
  }
  #hero_overview_container p {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  #hero_overview_container h1 {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
    text-align: center;
  }
  #hero_overview_container p {
    font-size: 1.125rem !important;
    text-align: center;
  }
  .section-padding {
    padding: 3.5rem 1rem !important;
  }
  .section-title {
    font-size: 1.85rem !important;
    text-align: center !important;
  }
  .title-underline-center {
    margin: 0.75rem auto !important;
  }
}

/* --- 2. TOWER ASPECT RATIOS & IMAGE SIDEBAR (PC, Tablet, Mobile) --- */

/* Desktop / PC: Main Image Sidebar vertical full-viewport sticky */
@media (min-width: 1024px) {
  #overview_image_sidebar {
    display: block !important;
    height: 100vh !important;
    position: sticky !important;
    top: 0 !important;
  }
  #overview_image_sidebar img {
    aspect-ratio: auto !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Tablet (768px to 1023px): Convert mobile card into a majestic landscape banner to save negative space */
@media (min-width: 768px) and (max-width: 1023px) {
  #overview_image_sidebar {
    display: none !important;
  }
  .mobile-tower-showcard {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 2.5rem !important;
    border-radius: 0.75rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  }
  .mobile-tower-showcard img {
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    height: auto !important;
    max-height: 28rem !important;
    object-fit: cover !important;
    object-position: 50% 30% !important;
  }
}

/* Mobile (under 768px): Tailored portrait-square crop for dense vertical flow */
@media (max-width: 767px) {
  #overview_image_sidebar {
    display: none !important;
  }
  .mobile-tower-showcard {
    display: block !important;
    width: 100% !important;
    max-width: 25rem !important;
    margin: 0 auto 1.75rem auto !important;
    border-radius: 0.75rem !important;
    overflow: hidden !important;
  }
  .mobile-tower-showcard img {
    width: 100% !important;
    aspect-ratio: 4/5 !important;
    max-height: 22rem !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* --- 3. AMENITIES GRID & ASPECT RATIO (PC, Tablet, Mobile) --- */

/* PC: High-end display with 16/10 visual balance */
@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
  .amenity-img-wrapper {
    aspect-ratio: 16/10 !important;
  }
}

/* Tablet: 3 columns with 4/3 aspect ratios for clean, scannable density */
@media (min-width: 768px) and (max-width: 1023px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  .amenity-img-wrapper {
    aspect-ratio: 4/3 !important;
  }
}

/* Mobile: Compact single column layout to avoid tiny text wrapping, and widescreen 16/9 aspect ratio */
@media (max-width: 767px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .amenity-img-wrapper {
    aspect-ratio: 16/10 !important;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .amenity-img-wrapper {
    aspect-ratio: 16/9 !important;
  }
}

/* --- 4. SUITE BLUEPRINT SECTION HYBRID BREAKPOINTS (PC vs Tablet-Mobile Stack) --- */

/* Desktop / PC: True side-by-side split grid alignment totaling exactly 12 columns */
@media (min-width: 1024px) {
  #res_text_panel {
    grid-column: span 7 !important;
    padding: 3rem !important;
  }
  #blueprint_interactive_box {
    grid-column: span 5 !important;
    padding: 2.5rem !important;
  }
}

/* Tablet & Mobile: Stack components vertically so blueprint is comfortable for fingers and readable */
@media (max-width: 1023px) {
  #res_text_panel {
    grid-column: span 12 !important;
    padding: 2rem !important;
    border-bottom: 1px solid rgba(217, 203, 184, 0.2) !important;
  }
  #blueprint_interactive_box {
    grid-column: span 12 !important;
    padding: 1.5rem !important;
    border-left: none !important;
  }
  
  /* Make sure the main interactive floorplan maintains legible space */
  #blueprint_canvas_outer {
    aspect-ratio: 16/10 !important;
    max-height: 28rem !important;
  }
}

@media (max-width: 640px) {
  #res_text_panel {
    padding: 1.25rem !important;
  }
  #blueprint_interactive_box {
    padding: 1rem !important;
  }
  #blueprint_canvas_outer {
    aspect-ratio: 4/3 !important;
  }
}

/* --- 5. VISUAL PORTFOLIO / GALLERY (PC, Tablet, Mobile) --- */

/* PC: High-fidelity grid with 4/3 aspect ratio */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
  .gallery-item {
    aspect-ratio: 4/3 !important;
  }
}

/* Tablet: Widescreen 16/10 modular flow */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .gallery-item {
    aspect-ratio: 16/10 !important;
  }
}

/* Mobile: Single-column cinematic 16/9 aspect elements for impressive renderings without tiny horizontal borders */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .gallery-item {
    aspect-ratio: 16/9 !important;
    border-radius: 0.5rem !important;
  }
}

/* --- 6. LOCATION CONNECTIVITY MAPS USABILITY (PC, Tablet, Mobile) --- */

/* PC Map Stage setting */
@media (min-width: 1024px) {
  #location_map_panel {
    min-height: 26rem !important;
  }
  #interactive_map_stage {
    min-height: 20rem !important;
  }
}

/* Tablet Landscape Map Stage setting */
@media (min-width: 768px) and (max-width: 1023px) {
  #location_map_panel {
    min-height: 24rem !important;
  }
  #interactive_map_stage {
    min-height: 18rem !important;
  }
}

/* Mobile Screen Trapped Zone Prevention: Reduce map height, leaving clear finger margins to bypass the map iframe */
@media (max-width: 767px) {
  #location_map_panel {
    min-height: 18rem !important;
    padding: 0.25rem !important;
    margin-top: 1rem !important;
  }
  #interactive_map_stage {
    min-height: 14rem !important;
  }
}

/* --- FOCUS ALIGNMENT FOR AMENITIES AND RESIDENCES HEADING COMPONENT SECTIONS --- */
main#main_applet_view:nth-of-type(1) > section#amenities-section:nth-of-type(2) > div:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > section#amenities-section:nth-of-type(2) > div:nth-of-type(1) > h2:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > section#residences-section:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > section#residences-section:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(1) > h2:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* --- FOCUS ALIGNMENT FOR PROJECT OVERVIEW SECTION AND STATS --- */
main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_header_block:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_header_block:nth-of-type(1) > h2:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_header_block:nth-of-type(1) > p:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(2) > div:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(3) > div:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(4) > div:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(2) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(2) > div:nth-of-type(2) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(3) > div:nth-of-type(2) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(4) > div:nth-of-type(2) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
  font-size: 1.8rem !important;
}

@media (min-width: 768px) {
  main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_stats_grid:nth-of-type(3) > div:nth-of-type(4) > div:nth-of-type(2) > span:nth-of-type(1) {
    font-size: 2.25rem !important;
  }
}

/* --- CENTER ALIGN FOR SELECTED COMPONENTS --- */
main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(2) > section#overview-section:nth-of-type(2) > div#overview_copy_panels:nth-of-type(1) > div#overview_btn_block:nth-of-type(4) > button#btn_overview_brochure:nth-of-type(1) {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > div#header_label_with_logo:nth-of-type(1) > span:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > h3#message_display_title:nth-of-type(1),
main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > h2#message_display_title:nth-of-type(1) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

#header_label_with_logo {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 1rem !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > div#header_label_with_logo:nth-of-type(1) > img#developer_corporate_emblem:nth-of-type(1) {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > div:nth-of-type(2) {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* Darker label visibility styles for selected form labels */
main#main_applet_view:nth-of-type(1) > section#contact-enquiry-section:nth-of-type(5) > div:nth-of-type(1) > div#enquiry_grand_box:nth-of-type(1) > div#enquiry_right_panel:nth-of-type(2) > form#on_page_lead_form:nth-of-type(1) > div#on_page_fields_grid:nth-of-type(1) > div:nth-of-type(2) > label:nth-of-type(1) {
  color: rgba(26, 26, 26, 0.70) !important;
}

main#main_applet_view:nth-of-type(1) > section#contact-enquiry-section:nth-of-type(5) > div:nth-of-type(1) > div#enquiry_grand_box:nth-of-type(1) > div#enquiry_right_panel:nth-of-type(2) > form#on_page_lead_form:nth-of-type(1) > div#on_page_fields_grid:nth-of-type(1) > div:nth-of-type(1) > label:nth-of-type(1) {
  color: rgba(26, 26, 26, 0.70) !important;
}

main#main_applet_view:nth-of-type(1) > section#contact-enquiry-section:nth-of-type(5) > div:nth-of-type(1) > div#enquiry_grand_box:nth-of-type(1) > div#enquiry_right_panel:nth-of-type(2) > form#on_page_lead_form:nth-of-type(1) > div:nth-of-type(2) > label:nth-of-type(1) {
  color: rgba(26, 26, 26, 0.70) !important;
}

main#main_applet_view:nth-of-type(1) > section#contact-enquiry-section:nth-of-type(5) > div:nth-of-type(1) > div#enquiry_grand_box:nth-of-type(1) > div#enquiry_right_panel:nth-of-type(2) > form#on_page_lead_form:nth-of-type(1) > div:nth-of-type(3) > label:nth-of-type(1) {
  color: rgba(26, 26, 26, 0.70) !important;
}

/* --- NEIGHBOURHOOD & CONNECTIVITY SECTION STYLES --- */
#neighbourhood-section {
  position: relative;
  background-color: #ffffff;
}

.neighbourhood-map-container {
  position: relative;
  border: 1px solid rgba(217, 203, 184, 0.35);
  border-radius: 0.75rem;
  background-color: #F8F6F2;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.015);
  overflow: hidden;
}

@keyframes mapPulse {
  0% { transform: scale(0.96); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 0.2; }
  100% { transform: scale(0.96); opacity: 0.7; }
}

.pulse-circle {
  transform-origin: 230px 250px;
  animation: mapPulse 3s infinite ease-in-out;
}

.map-marker {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.map-marker:hover {
  transform: scale(1.15);
}

.landmark-card {
  background-color: rgba(248, 246, 242, 0.3);
  border: 1px solid rgba(217, 203, 184, 0.25);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.landmark-card:hover {
  box-shadow: 0 10px 30px rgba(184, 155, 114, 0.06);
  border-color: rgba(184, 155, 114, 0.45);
  transform: translateY(-2px);
}

.landmark-icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(184, 155, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B89B72;
}

.landmark-list-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landmark-row-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(217, 203, 184, 0.1);
  padding-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.landmark-row-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.landmark-row-item:hover {
  border-color: rgba(184, 155, 114, 0.25);
}

.landmark-time-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: #B89B72;
  background-color: rgba(184, 155, 114, 0.05);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  border-top: 1px solid rgba(217, 203, 184, 0);
}

.accordion-panel.show {
  max-height: 500px;
  border-top: 1px solid rgba(217, 203, 184, 0.1);
}

/* Match the background of each image with its respective webpage position */
footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_col_logo:nth-of-type(1) > div:nth-of-type(1) > span:nth-of-type(1) > img:nth-of-type(1) {
  background-color: #1A1A1A !important;
  filter: invert(1) brightness(1.2) !important;
  mix-blend-mode: screen !important;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_col_logo:nth-of-type(1) > div:nth-of-type(1) > img:nth-of-type(1) {
  background-color: #1A1A1A !important;
  filter: url(#remove-white-filter) !important;
  mix-blend-mode: lighten !important;
}

nav#global_navbar_navigation:nth-of-type(1) > div:nth-of-type(1) > a:nth-of-type(1) > img:nth-of-type(1) {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0px !important;
  border-style: none !important;
  box-shadow: none !important;
  outline: none !important;
  mix-blend-mode: normal !important;
  height: 48px !important;
  width: auto !important;
  image-rendering: -webkit-optimize-contrast !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform, filter !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

nav#global_navbar_navigation:nth-of-type(1) > div:nth-of-type(1) {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(217, 203, 184, 0.5) !important;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) {
  position: relative !important;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_col_logo:nth-of-type(1) > div:nth-of-type(1) > div#footer_desc_div:nth-of-type(1) {
  max-width: none !important;
  white-space: pre-line !important;
  text-align: left !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(1) > section#hero-section:nth-of-type(1) > div#hero_backdrop_media:nth-of-type(1) > div:nth-of-type(1) {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background-image: 
    linear-gradient(to bottom, rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.2) 40%, rgba(26, 26, 26, 0.95) 95%, rgba(26, 26, 26, 1) 100%),
    linear-gradient(to right, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0) 50%, rgba(26, 26, 26, 0.5) 100%),
    radial-gradient(circle at center, rgba(26, 26, 26, 0) 30%, rgba(26, 26, 26, 0.75) 100%) !important;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_disclaimer_row:nth-of-type(2) {
  display: none !important;
}

footer#applet_footer:nth-of-type(1) {
  background-color: #000000 !important;
}

main#main_applet_view:nth-of-type(1) > section#contact-enquiry-section:nth-of-type(5) > div:nth-of-type(1) > div#enquiry_grand_box:nth-of-type(1) > div#enquiry_right_panel:nth-of-type(2) > form#on_page_lead_form:nth-of-type(1) > div:nth-of-type(4) {
  display: block !important;
}


/* Premium Inventory section custom styling starts here */
.inventory-grid-wrap {
  width: 100%;
  margin: 0 auto;
}

.inventory-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  justify-content: center !important;
  width: 100% !important;
}

.inventory-card {
  background-color: #FFFFFF !important;
  border: 1px solid rgba(217, 203, 184, 0.35) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  width: calc(100% - 1.5rem) !important;  /* Mobile: 1 per row (much larger) */
  max-width: 25rem !important;
  min-width: 16rem !important;
}

@media (min-width: 640px) {
  .inventory-card {
    width: calc(50% - 1rem) !important; /* Small devices/tablets: 2 per row */
  }
}

@media (min-width: 1024px) {
  .inventory-card {
    width: calc(33.333% - 1.5rem) !important; /* Large screens: 3 per row (much larger) */
  }
}

.inventory-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(184, 155, 114, 0.55) !important;
  box-shadow: 0 12px 30px rgba(184, 155, 114, 0.14), 0 4px 10px rgba(0, 0, 0, 0.02) !important;
}

/* Subtle image zoom on hover */
.inventory-card:hover .inventory-card-image-wrap img {
  transform: scale(1.05) !important;
}

.inventory-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background-color: rgba(26, 26, 26, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
}

.inventory-card:hover .inventory-card-overlay {
  opacity: 1 !important;
}

.inventory-zoom-badge {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(217, 203, 184, 0.4) !important;
  border-radius: 9999px !important;
  padding: 0.4rem 0.8rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(8px) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.inventory-card:hover .inventory-zoom-badge {
  transform: translateY(0) !important;
}

.inventory-zoom-badge span {
  font-family: var(--font-mono) !important;
  font-size: 8.5px !important;
  color: #1E1B19 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focused UI Alignment and Sizing Overrides */
main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(1) > section#hero-section:nth-of-type(1) > div#hero_box:nth-of-type(2) > div#hero_copy_central:nth-of-type(1) {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  justify-content: flex-end !important;
  gap: 1.25rem !important;
  margin-top: auto !important;
  padding-bottom: 0.5rem !important;
  margin-bottom: 2vh !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(1) > section#hero-section:nth-of-type(1) > div#hero_box:nth-of-type(2) > div#hero_copy_central:nth-of-type(1) > h1:nth-of-type(1) {
  font-size: 76px !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(1) > section#hero-section:nth-of-type(1) > div#hero_box:nth-of-type(2) > div#hero_copy_central:nth-of-type(1) #hero_ctas_row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

nav#global_navbar_navigation:nth-of-type(1) > div:nth-of-type(1) > a:nth-of-type(1) > img:nth-of-type(1) {
  mix-blend-mode: normal !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0px !important;
  border-style: none !important;
  box-shadow: none !important;
  outline: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform, filter !important;
}

/* Floating "Enquire Now" Button Styles */
#floating_enquire_button {
  position: fixed;
  right: 0;
  bottom: 25%;
  z-index: 45; /* High enough to hover over content and stay below main overlays/drawers which are 100+ */
  background-color: var(--color-gold, #B89B72);
  color: #FFFFFF !important;
  border: 1px solid var(--color-gold, #B89B72);
  border-right: none;
  padding: 1.5rem 0.625rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-radius: 9999px 0 0 9999px !important;
  box-shadow: -4px 4px 15px rgba(184, 155, 114, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform, opacity;
}

#floating_enquire_button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

#floating_enquire_button:hover {
  background-color: var(--color-charcoal, #1A1A1A);
  border-color: var(--color-charcoal, #1A1A1A);
  color: #F8F6F2 !important;
  box-shadow: -4px 4px 20px rgba(26, 26, 26, 0.5);
}

@media (max-width: 768px) {
  #floating_enquire_button {
    right: 0;
    bottom: 22%;
    padding: 1.25rem 0.5rem;
    font-size: 10px;
    letter-spacing: 0.18em;
    box-shadow: -3px 3px 12px rgba(184, 155, 114, 0.35);
  }
}

/* Specific left alignment and font changes for overview components */
main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(1) > section#overview-section:nth-of-type(2) > div:nth-of-type(1) > div#overview_copy_panels:nth-of-type(2) > div#overview_header_block:nth-of-type(1) > h2:nth-of-type(1) {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  font-family: "Cormorant SC", Georgia, serif !important;
}

main#main_applet_view:nth-of-type(1) > div#hero_overview_container:nth-of-type(1) > div#hero_overview_left_flow:nth-of-type(1) > section#overview-section:nth-of-type(2) > div:nth-of-type(1) > div#overview_copy_panels:nth-of-type(2) > div#overview_header_block:nth-of-type(1) > p:nth-of-type(1) {
  text-align: justify !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  font-family: "Cormorant SC", Georgia, serif !important;
  font-size: 19.2px !important;
  line-height: 24.8px !important;
  font-style: normal !important;
}

/* Also ensure the general overview header block stays left aligned with custom sizes if needed */
#overview_header_block h2 {
  text-align: left !important;
  font-family: "Cormorant SC", Georgia, serif !important;
}
#overview_header_block p {
  text-align: justify !important;
  font-family: "Cormorant SC", Georgia, serif !important;
  font-size: 19.2px !important;
  line-height: 24.8px !important;
  font-style: normal !important;
}
#overview_header_block span.eyebrow-text {
  text-align: left !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > div#message_body:nth-of-type(3) > p:nth-of-type(3) {
  font-style: italic !important;
  color: #B89B72 !important;
  font-weight: bold !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > div#message_body:nth-of-type(3) > p:nth-of-type(6) {
  font-style: italic !important;
  color: #b89b72 !important;
  font-weight: bold !important;
  font-size: 21px !important;
}

main#main_applet_view:nth-of-type(1) > section#why-section:nth-of-type(1) > div#message_container:nth-of-type(3) > div#message_body:nth-of-type(3) span.golden-accent {
  color: #B89B72 !important;
  font-weight: 600;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_col_logo:nth-of-type(2) > div:nth-of-type(1) > div#footer_desc_div:nth-of-type(1) {
  color: #b9b9b9 !important;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_col_logo:nth-of-type(1) > div:nth-of-type(1) > div#footer_desc_div:nth-of-type(1) {
  color: #b9b9b9 !important;
}

footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_maharera_top_right:nth-of-type(1) {
  color: #ebebeb !important;
  font-size: 11px !important;
}

#footer_desc_div {
  color: #b9b9b9 !important;
}

#footer_maharera_top_right {
  color: #ebebeb !important;
  font-size: 11px !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  margin-top: 2rem !important;
  width: 100% !important;
  top: auto !important;
  right: auto !important;
}

@media (min-width: 1024px) {
  #footer_maharera_top_right {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    align-items: flex-end !important;
    margin-top: 0 !important;
    width: auto !important;
  }
  footer#applet_footer:nth-of-type(1) > div#footer_space:nth-of-type(1) > div#footer_split:nth-of-type(1) > div#footer_col_logo:nth-of-type(1) > div:nth-of-type(1) > div#footer_desc_div:nth-of-type(1) {
    width: 700px !important;
  }
}

div#inventory_lightbox_modal:nth-of-type(3) > div#inventory_lightbox_inner_container:nth-of-type(1) > div:nth-of-type(1) > div#inventory_img_container:nth-of-type(1) > img#inventory_stage_img:nth-of-type(1) {
  background-color: #bebebe;
}


