/* --- CSS Variables & Design System --- */
:root {
  /* Colors */
  --bg-primary: #121315;
  --bg-secondary: #1a1c1f;
  --bg-darker: #0c0d0f;
  --nav-bg: rgba(18, 19, 21, 0.9);

  --accent-gold: #c5a880;
  --accent-gold-hover: #d7be9b;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #9fa6b2;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(197, 168, 128, 0.3);

  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(26, 28, 31, 0.75);
  --glass-blur: blur(12px);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Layout */
  --header-height: 80px;
  --header-scroll-height: 70px;
  --max-width: 1280px;

  /* Transition */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
select,
textarea,
button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* --- Scrollbar styling --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: #2a2c30;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- Custom Responsive Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* Scroll header effect */
.header.scrolled {
  height: var(--header-scroll-height);
  background-color: rgba(26, 28, 31, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  width: 100%;
  max-width: 1600px;
  /* Wider container for full layouts */
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left-group {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Hamburger toggle menu */
.menu-toggle {
  display: none;
  /* Hide on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
}

.bar {
  display: block;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Staggered look from user image */
.bar-top {
  width: 28px;
  margin-left: 0;
}

.bar-bottom {
  width: 18px;
  margin-left: 10px;
  /* Aligns right end of bottom bar with top bar */
}

/* Hover micro-animation */
.menu-toggle:hover .bar-bottom {
  width: 28px;
  margin-left: 0;
}

.menu-toggle:hover .bar-top {
  width: 18px;
  margin-left: 10px;
}

/* Logo styling */
.logo {
  display: inline-block;
  vertical-align: middle;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-icon {
  width: 65px;
  height: 28px;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-top: -3px;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-image {
  height: 40px;
}

.footer-logo .logo-image {
  height: 60px;
}

@media (max-width: 768px) {
  .logo-image {
    height: 38px;
  }
  .header.scrolled .logo-image {
    height: 32px;
  }
}

/* Nav Menu (Left-aligned next to Logo) */
.nav-menu {
  display: flex;
  align-items: center;
  margin-left: 55px;
  /* Spacing from Logo */
  margin-right: auto;
  /* Pushes the right actions to the far right */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.icon-chevron {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

/* Dropdown styling */
/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 260px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

/* Hover dropdown open */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .icon-chevron {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 10px 24px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.03);
  padding-left: 28px;
}

/* Mega Dropdown Styling */
.mega-dropdown {
  position: static !important;
  /* Forces dropdown alignment relative to fixed header */
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  z-index: 999;
  padding: 40px 80px;
  /* Generous margins like in the reference image */
}

.header.scrolled .mega-menu {
  background-color: rgba(26, 28, 31, 0.98);
  backdrop-filter: var(--glass-blur);
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown:hover .icon-chevron {
  transform: rotate(180deg);
}

.mega-menu-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

/* Mega Cards styling */
.mega-card {
  flex: 0 1 320px;
  display: block;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.mega-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1.55;
  /* Matches layout cards exactly */
  border-radius: 16px;
  /* High-rounded corner curves like the uploaded image */
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mega-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mega-card:hover .mega-card-img-wrapper img {
  transform: scale(1.06);
}

.mega-card.active-property .mega-card-img-wrapper {
  border: 2px solid var(--gold-primary);
}

.mega-card.active-property .mega-card-title {
  color: var(--gold-primary);
}

.mega-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.mega-card-subtitle {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-card-subtitle span {
  opacity: 0.5;
}

/* Arrow carousel button on the right */
.mega-slider-arrow {
  display: flex;
  align-items: center;
  align-self: center;
  padding-left: 20px;
}

.btn-mega-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-mega-arrow svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.btn-mega-arrow:hover {
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.06);
  transform: scale(1.08);
}

.btn-mega-arrow:hover svg {
  transform: translateX(4px);
}

/* Nav Phone Number */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-phone:hover {
  opacity: 1;
}
.nav-phone svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Right-side actions styling */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Burgundy Badge */
.burgundy-badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  height: 40px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  background-color: transparent;
}

.burgundy-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-white);
  line-height: 1.1;
}

.burgundy-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.burgundy-mantra {
  font-family: var(--font-sans);
  font-size: 7.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  opacity: 0.9;
}

.burgundy-line {
  width: 16px;
  height: 1.5px;
  background: linear-gradient(90deg, #00bdc4, #f39c12);
  display: inline-block;
}

.burgundy-badge:hover {
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

/* Enquire Button */
.btn-enquire {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-white);
  background: transparent;
  transition: var(--transition-smooth);
}

.icon-whatsapp {
  width: 14px;
  height: 14px;
}

.btn-enquire:hover {
  border-color: var(--text-white);
  background-color: var(--text-white);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Phone Button */
.btn-phone {
  color: var(--text-white);
  display: none; /* Hidden on desktop */
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.icon-call {
  width: 22px;
  height: 22px;
}

.btn-phone:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-premium);
  z-index: 1100;
  transition: var(--transition-smooth);
  padding: 30px 24px;
  overflow-y: auto;
}

.mobile-drawer.active {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.drawer-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.drawer-close {
  font-size: 28px;
  color: var(--text-white);
  line-height: 1;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-white);
}

.burgundy-text {
  color: var(--accent-gold);
}

.drawer-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-white);
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 0 15px;
}

.drawer-submenu.active {
  display: flex;
}

.drawer-sublink {
  font-size: 13px;
  color: var(--text-muted);
}

.drawer-dropdown-wrapper.active .icon-chevron {
  transform: rotate(180deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1.8s ease-in-out, transform 8s ease-in-out;
  z-index: 1;
  opacity: 0;
  transform: scale(1.01);
  cursor: pointer;
}

.hero-bg.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.06);
  /* Premium slow Ken Burns effect when active */
}

.hero-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -80px;
  /* Offset to align visually above the panel */
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: 1.5px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
  animation: heroTitleFade 1.2s ease;
}

@keyframes heroTitleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Project Info Panel at the Bottom */
.hero-dots {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

.hero-info-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2b2c2f;
  /* Dark slate gray matching the image */
  border-top-left-radius: 28px;
  /* Rounded top edges like image */
  border-top-right-radius: 28px;
  padding: 24px 60px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.panel-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Project Brand styling */
.project-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  border-right: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-right: 40px;
}

.brand-small {
  font-family: var(--font-serif);
  font-size: 11px;
  text-transform: lowercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.brand-main {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  transition: opacity 0.4s ease;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  margin-top: 2px;
  transition: opacity 0.4s ease;
}

.hero-main-title {
  transition: opacity 0.4s ease;
}

/* Details text block */
.project-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.details-top {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.details-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}

.details-status {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #f5c45f;
  /* Gold status marker */
  letter-spacing: 1px;
}

/* CTA buttons panel right */
.panel-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text-white);
  background-color: transparent;
}

.btn-outline-white:hover {
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-solid-gold {
  background-color: #f5c45f;
  /* Solid gold in reference image */
  color: #1a1b1d;
  border: 1.5px solid #f5c45f;
}

.btn-solid-gold:hover {
  background-color: #f7d07c;
  border-color: #f7d07c;
  box-shadow: 0 4px 15px rgba(245, 196, 95, 0.25);
  transform: translateY(-1px);
}

.panel-icon {
  width: 14px;
  height: 14px;
}



/* Mouse Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-white);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  display: block;
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease-in-out;
}

.arrow-down {
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--text-white);
  border-right: 2px solid var(--text-white);
  transform: rotate(45deg);
  animation: scrollArrow 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes scrollArrow {
  0% {
    transform: rotate(45deg) translate(-2px, -2px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(45deg) translate(4px, 4px);
    opacity: 0;
  }
}

/* --- General Section Setup --- */
section {
  padding: 100px 0;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 20px;
}

.section-desc {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 auto 50px auto;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-white);
}

/* --- About / Melange Lifestyle Section --- */
.about {
  background-color: var(--bg-primary);
  /* Dark luxury background */
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.about-container {
  max-width: 1520px;
  /* Generous width matching screenshot */
  margin: 0 auto;
  padding: 0 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /* Perfect columns alignment */
  align-items: center;
  gap: 100px;
  /* Spacious column gutter */
}

.about-info {
  position: relative;
  z-index: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about.visible .about-info {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

/* Full-width watermark container */
.about-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-watermark svg {
  width: 100%;
  height: 100%;
}

.about-watermark svg path {
  stroke: rgba(255, 255, 255, 0.02) !important;
}

.section-tag-dark {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title-dark {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  font-weight: 600;
  /* Regular serif weight exactly matching image */
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.section-subtitle-spec {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section-price-spec {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.about-text-dark {
  font-family: var(--font-sans);
  font-size: 11.5px;
  /* Tiny, elegant description text size */
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.65;
  max-width: 480px;
  /* Restricts width exactly like screenshot */
}

.about-visuals {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about.visible .about-visuals {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.3s;
}

.lifestyle-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 40px;
  /* Very high rounded organic corners curves */
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-gold);
}

.lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lifestyle-img-wrapper:hover .lifestyle-img {
  transform: scale(1.025);
}

/* --- Download Brochure Action --- */
.about-actions {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}

.btn-about-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-about-action.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
}

.btn-about-action.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.25);
}

.icon-download {
  width: 14px;
  height: 14px;
}

/* --- Price Range Badge --- */
.price-range-badge {
  display: inline-block;
  margin-left: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  background-color: rgba(197, 168, 128, 0.08);
  border: 1px solid var(--border-gold);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* --- Configurations & Pricing Display --- */
.about-pricing-block {
  margin-top: 35px;
  max-width: 680px;
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
}

.about-pricing-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-pricing-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.about-pricing-row:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.about-pricing-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-pricing-cell.price {
  margin-left: auto;
  margin-right: 15px;
  text-align: right;
}

.about-pricing-cell.action {
  flex-shrink: 0;
}

.cell-primary {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.cell-secondary {
  font-family: var(--font-sans);
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.about-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background-color: var(--accent-gold);
  border-radius: 4px;
  transition: var(--transition-fast);
  text-align: center;
}

.about-pricing-btn:hover {
  background-color: var(--accent-gold-hover);
  color: var(--bg-primary);
  transform: scale(1.03);
}

/* Extra responsiveness adjustments for tablets and mobiles */
@media (max-width: 991px) {
  .about-pricing-table {
    grid-template-columns: 1fr;
  }
  .about-pricing-block {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-pricing-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 15px;
  }
  .about-pricing-cell.price {
    text-align: left;
  }
  .about-pricing-cell.action {
    align-items: stretch;
  }
}

/* --- Floor Plans Section --- */
.floor-plans {
  background-color: #232426;
  /* Dark charcoal background matching image */
  padding: 130px 0 80px 0;
  /* Reduced bottom padding to bring amenities closer */
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  /* Distinct visual gap between the white About section and Floor Plans section */
}

.floor-plans-container {
  max-width: 1520px;
  /* Expanded width matching the premium about-container */
  margin: 0 auto;
  padding: 0 60px;
  /* Increased padding */
}

.floor-plans-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.floor-plans-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  /* Regular weight matching screenshot */
  color: var(--text-white);
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.floor-plans-nav {
  display: flex;
  gap: 12px;
}

.btn-floor-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-floor-nav svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.btn-floor-nav:hover {
  background-color: var(--text-white);
  color: #232426;
  border-color: var(--text-white);
}

.floor-plans-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.floor-plans-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 20px;
}

.sidebar-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 12px;
  display: inline-block;
  border-bottom: 2px solid var(--text-white);
  margin-top: 10px;
}

.floor-plans-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.floor-plans-slider {
  display: flex;
  gap: 30px;
  transition: var(--transition-smooth);
}

.floor-plan-card {
  flex: 0 0 calc((50% - 15px));
  /* Show 2 cards side by side on desktop */
  width: calc((50% - 15px));
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(50px) scale(0.93);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  /* Enable clicks on mobile/non-hover devices */
}

.floor-plans.visible .floor-plan-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for floor plan cards */
.floor-plans.visible .floor-plan-card:nth-child(1) {
  transition-delay: 0.1s;
}

.floor-plans.visible .floor-plan-card:nth-child(2) {
  transition-delay: 0.25s;
}

.floor-plan-img-wrapper {
  background-color: #e3e4e6;
  /* Soft light gray background matching image */
  border-radius: 20px;
  /* High rounded corners matching image */
  overflow: hidden;
  aspect-ratio: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  /* For absolute hover badge */
}

.floor-plan-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.floor-plan-custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: rgba(18, 19, 21, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* Crucial so it doesn't block hover/clicks */
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floor-plan-custom-cursor.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.floor-plan-custom-cursor span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 1.5px;
  display: block;
}

@media (hover: hover) {

  .floor-plan-img-wrapper,
  .floor-plan-img-wrapper *,
  .amenity-card-img,
  .amenity-card-img * {
    cursor: none !important;
  }
}

.floor-plan-card:hover .floor-plan-img-wrapper img {
  transform: scale(1.25);
  /* Ultra-visible luxury zoom factor */
  filter: brightness(0.78);
  /* Dims image slightly to optimize text readability of custom cursor */
}

.floor-plan-card:hover .floor-plan-img-wrapper {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background-color: #eaebeb;
}

.floor-plan-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 5px;
}

.floor-plan-info h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin: 0;
}

.floor-plan-info p {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}


/* --- Video Showcase Section --- */
.video-showcase {
  background-color: var(--bg-secondary);
  /* Premium dark theme background */
  padding: 40px 0 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.video-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.video-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 15px;
  letter-spacing: -0.2px;
}

.video-tagline-wrapper {
  display: inline-block;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 8px;
}

.video-tagline-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.1);
}

.video-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.video-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  background-color: #000;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-showcase.visible .video-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Video Tabs */
.video-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.video-tab-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 32px;
  background-color: transparent;
  color: var(--text-muted);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-tab-btn:hover {
  color: var(--text-white);
  border-color: var(--accent-gold);
}

.video-tab-btn.active {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.2);
}

/* Video Panes */
.video-tab-contents {
  position: relative;
}

.video-pane {
  display: none;
}

.video-pane.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

/* --- Location Advantage Section --- */
.location-advantage-section {
  background-color: var(--bg-primary); /* Dark luxury theme */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-advantage-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-advantage-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.location-advantage-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  font-weight: 400;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.location-advantage-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Tab buttons for Location Advantage */
.location-property-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.location-tab-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 32px;
  background-color: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-tab-btn:hover {
  color: var(--text-white);
  border-color: var(--accent-gold);
}

.location-tab-btn.active {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.25);
}

/* Location Advantage Content Layout */
.location-tab-contents {
  position: relative;
}

.location-pane {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-pane.active {
  display: grid;
  animation: fadeIn 0.6s ease forwards;
}

/* Left side map / image styling */
.location-visual-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 10px; /* Slight padding to keep borders from clipping */
}

.location-visual-wrapper:hover img {
  transform: scale(1.03);
}

/* Lightbox/Zoom indicator button */
.location-visual-zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(26, 28, 31, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.location-visual-zoom:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.location-visual-zoom svg {
  display: block;
}

/* Right side grid of categories */
.location-categories-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-height: 580px;
  overflow-y: auto;
  padding-right: 15px;
}

/* Scrollbar styling for categories container */
.location-categories-container::-webkit-scrollbar {
  width: 4px;
}

.location-categories-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.location-categories-container::-webkit-scrollbar-thumb {
  background: var(--border-gold);
  border-radius: 2px;
}

.location-category-box {
  background: linear-gradient(135deg, rgba(26, 28, 31, 0.6) 0%, rgba(20, 21, 23, 0.8) 100%);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.location-category-box:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.location-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.location-category-header h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  margin: 0;
}

.location-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-light);
}

.location-item-name {
  color: var(--text-light);
}

.location-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0 10px 4px 10px;
}

.location-item-time {
  color: var(--accent-gold);
  font-weight: 600;
  white-space: nowrap;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 11, 13, 0.95);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  background-color: var(--bg-secondary);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text-white);
  font-size: 50px;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

/* Responsive Styles for Location Advantage */
@media (max-width: 992px) {
  .location-pane {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-visual-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .location-property-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .location-tab-btn {
    width: 100%;
    text-align: center;
  }
  .location-category-box {
    padding: 16px 18px;
  }
}

/* --- About Mantra Properties Section --- */
.about-mantra-section {
  position: relative;
  background-image: url('assets/pune_city_skyline_mobile.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .about-mantra-section {
    background-image: url('assets/pune_city_skyline.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.about-mantra-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-mantra-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-mantra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.65) 0%, rgba(18, 19, 21, 0.8) 100%);
  z-index: 1;
}

.about-mantra-container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.about-mantra-card {
  background: rgba(20, 21, 23, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 50px 60px;
  max-width: 980px;
  width: 100%;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-mantra-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.about-mantra-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.about-mantra-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  color: #e2e8f0;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .about-mantra-section {
    padding: 80px 0;
  }
  .about-mantra-card {
    padding: 30px;
  }
}

/* --- Location Map Section --- */
.location-map-section {
  background-color: #1a1b1e;
  position: relative;
  overflow: hidden;
}
/* Map Selector Tabs */
.map-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.map-tab-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 24px;
  background-color: transparent;
  color: var(--text-muted);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-tab-btn:hover {
  color: var(--text-white);
  border-color: var(--accent-gold);
}

.map-tab-btn.active {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

/* Map Panes */
.map-tab-contents {
  position: relative;
}

.map-pane {
  display: none;
}

.map-pane.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.location-map-header {
  text-align: center;
  padding: 55px 40px 30px;
  position: relative;
  z-index: 2;
}

.location-map-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  color: #e8e4df;
  margin: 0 0 22px 0;
  letter-spacing: 0.3px;
}

.btn-location-gold {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #1a1b1e;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  cursor: default;
}

.btn-get-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-gold);
  color: #1a1b1e !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 167, 57, 0.2);
}

.btn-get-location:hover {
  background-color: #e0a830;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 167, 57, 0.35);
}

.location-map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
}

.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(92%) hue-rotate(180deg) brightness(0.75) contrast(1.3) saturate(0.3);
  /* Dark map theme via CSS filter inversion */
}

/* Pulsing location pin overlay at center */
.location-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #ff4d6d 40%, rgba(255, 77, 109, 0.5) 70%, transparent 100%);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px rgba(255, 77, 109, 0.6);
  pointer-events: none;
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 77, 109, 0.4);
  animation: pinPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

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

/* --- Contact Overlap Section --- */
.contact-overlap-section {
  background-color: #1a1b1e;
  margin-top: -80px;
  /* Overlap into map section above */
  position: relative;
  z-index: 5;
  padding: 0 40px 60px 40px;
}

.contact-overlap-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background-color: #222326;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  /* Removed overflow: hidden to allow connectivity legend to float outside container bounds */
}

.contact-overlap-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-bottom-left-radius: 8px;
}

.contact-overlap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom-left-radius: 8px;
}

.contact-overlap-image:hover img {
  transform: scale(1.06);
}

.contact-overlap-form {
  padding: 50px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Contain absolute connectivity legend */
  border-bottom-right-radius: 8px;
}

.contact-overlap-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: #e8e4df;
  line-height: 1.4;
  margin: 0 0 30px 0;
  letter-spacing: 0.2px;
}

.overlap-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overlap-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.overlap-form input,
.overlap-form select,
.overlap-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #e0ddd8;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  letter-spacing: 0.3px;
}

.overlap-form select option {
  background: #1a1c1f;
  color: #e0ddd8;
}

.overlap-form input::placeholder,
.overlap-form select::placeholder,
.overlap-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.overlap-form input:focus,
.overlap-form select:focus,
.overlap-form textarea:focus {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.06);
}

.overlap-form textarea {
  resize: vertical;
  min-height: 70px;
}

.btn-overlap-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-gold);
  color: #1a1b1e;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 4px;
}

.btn-overlap-submit:hover {
  background-color: #e0a830;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 167, 57, 0.3);
}

.btn-overlap-submit svg {
  transition: transform 0.3s ease;
}

.btn-overlap-submit:hover svg {
  transform: translateX(4px);
}

.contact-overlap-address {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.address-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact-overlap-address p {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.2px;
}


/* --- Footer --- */
  .footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px 0;
  }

  .footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo .logo-text {
    font-size: 14px;
  }

  .brand-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    align-self: center;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.2s;
  }
  .footer-whatsapp-btn:hover {
    background: #1ebe5d;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-white);
    transition: var(--transition-fast);
  }

  .social-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(197, 168, 128, 0.05);
  }

  .footer-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    color: var(--accent-gold);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .footer-phone-btn:hover {
    background-color: var(--accent-gold);
    color: #1a1b1e;
    border-color: var(--accent-gold);
    transform: scale(1.05);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
  }

  .footer-rera h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links ul a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: inline-block;
  }

  .footer-links ul a:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
  }

  .footer-rera {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .rera-content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .rera-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    min-width: 140px;
  }

  .footer-rera-qr {
    width: 110px;
    height: 110px;
    border-radius: 6px;
    border: 3px solid var(--text-white);
    background-color: var(--text-white);
    padding: 3px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .footer-rera-qr:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  }

  .rera-number-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .rera-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .rera-no {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom-links,
  .footer-bottom .rera-disclaimer {
    align-self: center;
  }

  .footer-bottom .footer-whatsapp-btn {
    align-self: center;
  }

  .footer-bottom .rera-disclaimer {
    padding-bottom: 90px;
  }

  .footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
  }

  .footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 12px;
  }

  .footer-bottom-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    text-decoration: none;
  }

  .footer-bottom-links a:hover {
    color: var(--accent-gold);
  }

  .footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.15);
  }

  .rera-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .rera-disclaimer a {
    color: var(--accent-gold);
    text-decoration: underline;
  }

  /* --- Floor Plan Lightbox Modal --- */
  .floor-plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(12, 13, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .floor-plan-modal.active {
    opacity: 1;
    pointer-events: auto;
  }

  .modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 44px;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10000;
    opacity: 0.7;
  }

  .modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
  }

  .modal-content-wrapper {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .floor-plan-modal.active .modal-content-wrapper {
    transform: scale(1);
  }

  .modal-content-wrapper img {
    max-width: 90vw;
    /* Utilizes maximum viewport width */
    max-height: 80vh;
    /* Utilizes maximum viewport height */
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background-color: transparent;
    /* Transparent background for clean display */
    padding: 0;
    /* Remove borders/padding, show full image */
  }

  .modal-caption {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  /* --- Responsive Layout Rules --- */
  @media (max-width: 1200px) {
    .nav-list {
      gap: 20px;
    }

    .hero-info-panel {
      padding: 20px 40px;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-container {
      padding: 0 40px;
    }

    .about-visuals {
      order: 1; /* Always show image on top for mobile */
    }

    .about-info {
      order: 2; /* Always show text, pricing, and brochure below image */
    }

    .about-actions {
      margin-top: 25px;
      margin-bottom: 15px;
      justify-content: center;
    }

    .btn-about-action {
      width: 100%;
      justify-content: center;
    }

    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 991px) {
    .menu-toggle {
      display: flex;
    }

    .nav-menu {
      display: none;
    }

    .nav-container {
      padding: 0 20px;
    }

    .nav-actions .burgundy-badge {
      display: none;
    }

    .about-container {
      padding: 0 24px;
    }

    .video-container {
      padding: 0 24px;
    }

    .location-map-header {
      padding: 40px 24px 20px;
    }

    .location-map-title {
      font-size: 1.3rem;
      margin-bottom: 16px;
    }

    .btn-location-gold {
      font-size: 10px;
      padding: 10px 20px;
    }

    .hero {
      height: 100vh;
      min-height: 560px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .hero-center-content {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-top: -60px;
      height: auto;
      display: block;
      padding: 0 20px;
    }

    .hero-info-panel {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      border-radius: 0;
      padding: 12px 16px;
    }

    .hero-dots {
      bottom: 155px; /* Adjust to stay just above the shorter panel */
      left: 50%;
      transform: translateX(-50%);
    }

    .panel-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .panel-left {
      flex-direction: column;
      gap: 0;
      width: 100%;
    }

    .project-brand {
      border-right: none;
      padding-right: 0;
      border-bottom: none;
      padding-bottom: 0;
      align-items: center;
      width: auto;
    }

    .project-details {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 4px;
      margin: 6px 0;
    }

    .panel-right {
      display: flex;
      flex-direction: row; /* side-by-side buttons */
      gap: 10px;
      width: 100%;
    }

    .btn-panel {
      flex: 1; /* expand buttons equally */
      font-size: 9.5px;
      padding: 10px 6px;
      letter-spacing: 0.5px;
      justify-content: center;
      border-radius: 4px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      width: auto;
    }

    .btn-panel svg {
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-left: 6px;
      stroke-width: 2px;
      vertical-align: middle;
      flex-shrink: 0;
    }



    .projects-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .about {
      padding: 70px 0;
    }

    .about-text-dark {
      max-width: 100%;
    }

    .about-watermark {
      display: none;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .footer-links {
      padding-top: 25px;
    }

    .footer-rera {
      grid-column: span 2;
      align-items: center;
    }

    .rera-content-wrapper {
      justify-content: center;
    }

    .floor-plans-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .floor-plans-sidebar {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-right: 0;
      padding-bottom: 20px;
    }

    .floor-plan-card {
      flex: 0 0 100%;
      width: 100%;
    }

    .location-map-wrapper {
      height: 400px;
    }

    .contact-overlap-section {
      margin-top: 0;
      padding: 0 20px 40px 20px;
    }

    .contact-overlap-container {
      grid-template-columns: 1fr;
      padding: 0;
    }

    .contact-overlap-image {
      min-height: 280px;
      height: 280px;
      border-radius: 0;
    }

    .contact-overlap-image img {
      border-radius: 0;
    }

    .contact-overlap-form {
      padding: 40px 30px;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      border-top-right-radius: 0;
    }

  }

  @media (max-width: 768px) {
    .nav-phone {
      display: none;
    }

    .nav-actions .btn-enquire span {
      display: none;
    }

    .nav-actions .btn-enquire,
    .nav-actions .btn-phone {
      width: 40px;
      height: 40px;
      padding: 0;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background-color: transparent;
      color: var(--text-white);
    }

    .nav-actions .btn-enquire svg,
    .nav-actions .btn-phone svg {
      width: 20px;
      height: 20px;
    }

    .about {
      padding: 50px 0;
    }

    .about-container,
    .projects-container,
    .amenities-container,
    .video-container {
      padding: 0 20px;
    }

    .about-grid {
      gap: 30px;
    }

    .lifestyle-img-wrapper {
      border-radius: 20px;
    }

    .stats-row {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .projects-grid {
      grid-template-columns: 1fr;
    }

    .enquiry-card {
      padding: 30px 20px;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .floor-plans {
      padding: 60px 0 40px 0;
      margin-top: 30px;
    }

    .floor-plans-container {
      padding: 0 20px;
    }

    .floor-plans-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 30px;
    }

    .floor-plans-header h2 {
      font-size: 1.6rem;
    }

    .floor-plans-nav {
      margin-top: 0;
    }

    .floor-plan-card {
      flex: 0 0 100%;
      width: 100%;
    }

    .amenity-card-text {
      padding: 30px 22px;
    }

    .amenities-layout {
      gap: 14px;
    }

    .video-showcase {
      padding: 40px 0 60px 0;
    }

    .video-tagline-wrapper {
      margin-bottom: 24px;
    }

    .video-wrapper {
      border-radius: 16px;
    }

    .location-map-wrapper {
      height: 300px;
    }

    .location-map-header {
      padding: 36px 20px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .location-map-title {
      font-size: 1.2rem;
      margin-bottom: 0;
    }

    .overlap-form-row {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .contact-overlap-form {
      padding: 28px 20px;
    }

    .contact-overlap-title {
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 32px;
    }

    .footer-brand {
      align-items: center;
    }

    .social-links {
      justify-content: center;
    }

    .footer-rera {
      align-items: center;
    }

    .rera-content-wrapper {
      justify-content: center;
    }

    .rera-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-bottom {
      padding-top: 20px;
      font-size: 11px;
    }

    .float-actions {
      bottom: 18px;
      right: 18px;
    }
    .call-float {
      height: 50px;
      padding: 0 14px 0 5px;
    }
    .call-icon-wrapper {
      width: 38px;
      height: 38px;
    }

    .whatsapp-float {
      height: 50px;
      padding: 0 12px 0 5px;
    }
    .whatsapp-icon-wrapper {
      width: 38px;
      height: 38px;
    }
    .whatsapp-label {
      font-size: 0.75rem;
    }
  }

  @media (max-width: 480px) {
    .nav-left-group {
      gap: 12px;
    }

    .logo-text {
      font-size: 10px;
      letter-spacing: 2px;
    }

    .logo-icon {
      width: 50px;
      height: 22px;
    }

    /* Hero */
    .hero-main-title {
      font-size: 2.2rem;
    }

    .hero-center-content {
      margin-top: -50px;
      height: auto;
      padding: 0 16px;
    }

    .hero-info-panel {
      padding: 12px 16px;
    }

    .hero-dots {
      bottom: 145px; /* Adjust to stay just above the shorter panel */
    }

    .panel-right {
      display: flex;
      flex-direction: row; /* side-by-side buttons */
      gap: 8px;
    }

    .btn-panel {
      width: auto;
      flex: 1; /* expand buttons equally */
      font-size: 8.5px;
      padding: 10px 4px;
      justify-content: center;
      display: flex;
      align-items: center;
    }

    .btn-panel svg {
      display: inline-block;
      width: 14px;
      height: 14px;
      margin-left: 4px;
    }

    /* About */
    .about {
      padding: 40px 0;
    }

    .about-container,
    .video-container,
    .floor-plans-container {
      padding: 0 16px;
    }

    .section-title-dark {
      font-size: 1.6rem;
    }

    /* Floor Plans */
    .floor-plans {
      padding: 50px 0 36px 0;
      margin-top: 20px;
    }

    .floor-plans-header h2 {
      font-size: 1.4rem;
    }

    .floor-plan-img-wrapper {
      border-radius: 14px;
      padding: 16px;
    }



    /* Video */
    .video-title {
      font-size: 1.5rem;
    }

    .video-wrapper {
      border-radius: 12px;
    }

    /* Location Map */
    .location-map-wrapper {
      height: 260px;
    }

    .location-map-title {
      font-size: 1.1rem;
    }

    /* Contact Form */
    .contact-overlap-title {
      font-size: 1.25rem;
    }

    .contact-overlap-form {
      padding: 24px 16px;
    }

    /* Footer */
    .footer-container {
      padding: 0 16px;
    }

    .footer-bottom {
      font-size: 10px;
      line-height: 1.7;
    }

    /* Enquiry modal */
    .enquiry-modal-form-panel {
      padding: 24px 18px;
    }

    .enquiry-accent-highlights {
      display: none;
    }
  }

  /* --- Floating Action Buttons Container --- */
  .float-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* --- Floating Call Button --- */
  .call-float {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1c1f;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 58px;
    height: 58px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .call-float:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
    transform: translateY(-2px);
  }
  .call-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c8a96e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .call-icon-wrapper svg {
    color: #fff;
  }
  .call-label {
    display: none;
  }

  /* --- Floating WhatsApp Button --- */
  .whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .whatsapp-float:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
  }

  .whatsapp-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #128C54;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }

  /* Pulse ring animation */
  .whatsapp-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.45);
    animation: whatsappPulse 2.2s ease-out infinite;
  }

  @keyframes whatsappPulse {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
  }

  .whatsapp-icon-wrapper svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
  }

  .whatsapp-label {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .float-actions {
      bottom: 20px;
      right: 16px;
    }
    .call-float {
      width: 50px;
      height: 50px;
      padding: 0;
    }
    .call-icon-wrapper {
      width: 38px;
      height: 38px;
    }
    .call-label {
      display: none;
    }
    .whatsapp-float {
      width: 50px;
      height: 50px;
      padding: 0;
    }
    .whatsapp-icon-wrapper {
      width: 38px;
      height: 38px;
    }
    .whatsapp-label {
      display: none;
    }
  }

  /* ============================================
   ENQUIRY POPUP MODAL
   ============================================ */
  .enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .enquiry-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .enquiry-modal-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 20px;
    background: #111315;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .enquiry-modal-overlay.active .enquiry-modal-box {
    transform: scale(1) translateY(0);
  }

  .enquiry-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .enquiry-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
  }

  .enquiry-modal-accent {
    background: linear-gradient(145deg, #1a1208 0%, #2a1f0a 50%, #1c160a 100%);
    display: flex;
    align-items: flex-end;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
  }

  .enquiry-modal-accent::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 158, 76, 0.18) 0%, transparent 70%);
  }

  .enquiry-modal-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c49e4c, transparent);
  }

  .enquiry-accent-content {
    position: relative;
    z-index: 1;
  }

  .enquiry-accent-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #c49e4c;
    background: rgba(196, 158, 76, 0.12);
    border: 1px solid rgba(196, 158, 76, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .enquiry-accent-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #f0e6cc;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .enquiry-accent-desc {
    font-size: 12px;
    color: rgba(240, 230, 204, 0.55);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .enquiry-accent-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .enquiry-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(240, 230, 204, 0.75);
  }

  .highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c49e4c;
    flex-shrink: 0;
  }

  .enquiry-modal-form-panel {
    padding: 44px 40px;
    overflow-y: auto;
  }

  .enquiry-form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #f0e6cc;
    margin-bottom: 6px;
  }

  .enquiry-form-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
  }

  .enquiry-popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .epf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .epf-field {
    display: flex;
    flex-direction: column;
  }

  .epf-field input,
  .epf-field select,
  .epf-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #f0e6cc;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  .epf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c49e4c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: rgba(255, 255, 255, 0.05);
    padding-right: 36px;
  }

  .epf-field select option {
    background: #1a1c1f;
    color: #f0e6cc;
  }

  .epf-field textarea {
    resize: none;
    line-height: 1.5;
  }

  .epf-field input::placeholder,
  .epf-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .epf-field input:focus,
  .epf-field select:focus,
  .epf-field textarea:focus {
    border-color: rgba(196, 158, 76, 0.6);
    background: rgba(196, 158, 76, 0.05);
  }

  .btn-epf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    margin-top: 4px;
    background: linear-gradient(135deg, #c49e4c 0%, #a07c30 100%);
    color: #1a1208;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(196, 158, 76, 0.3);
  }

  .btn-epf-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 158, 76, 0.45);
  }

  .btn-epf-submit:active {
    transform: translateY(0);
  }

  .epf-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 260px;
    gap: 16px;
  }

  .epf-success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .epf-success-icon svg {
    width: 34px;
    height: 34px;
  }

  .epf-success h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #f0e6cc;
  }

  .epf-success p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 280px;
  }

  @media (max-width: 700px) {
    .enquiry-modal-box {
      grid-template-columns: 1fr;
      max-height: 95vh;
      border-radius: 16px;
      overflow-y: auto;
    }

    .enquiry-modal-accent {
      padding: 30px 24px 24px;
    }

    .enquiry-accent-title {
      font-size: 1.5rem;
    }

    .enquiry-modal-form-panel {
      padding: 28px 24px;
    }

    .epf-row {
      grid-template-columns: 1fr;
    }
  }

  /* --- Mantra Magnus About Section Grid Swap --- */
  @media (min-width: 1201px) {
    .magnus-about .about-grid {
      grid-template-columns: 0.9fr 1.1fr;
    }
  }

  /* ============================================
   PROJECT HIGHLIGHTS SECTION
   ============================================ */
  .highlights-section {
    background-color: var(--bg-secondary);
    /* Dark background */
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .highlights-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .highlights-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .highlights-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .highlights-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .highlights-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
  }

  .highlights-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Tabs styling */
  .highlights-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
  }

  .highlight-tab-btn {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 24px;
    position: relative;
    transition: color 0.3s ease;
  }

  .highlight-tab-btn:hover {
    color: var(--text-white);
  }

  .highlight-tab-btn.active {
    color: var(--accent-gold);
  }

  .highlight-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
  }

  .highlight-tab-btn.active::after {
    width: 100%;
  }

  /* Panes styling */
  .highlight-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }

  .highlight-pane.active {
    display: block;
  }

  .highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .highlight-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
    border-color: var(--accent-gold);
  }

  .highlight-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .highlight-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .highlight-card-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
  }

  .highlight-card-text {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  @media (max-width: 991px) {
    .highlight-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .highlights-section {
      padding: 70px 24px;
    }
  }

  @media (max-width: 600px) {
    .highlight-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============================================
   ELEVATIONS & MASTER PLANS SECTION
   ============================================ */
  .plans-section {
    background-color: var(--bg-primary);
    /* Dark background */
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .plans-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .plans-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .plans-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .plans-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .plans-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
  }

  .plans-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Level 1 Tabs */
  .plans-level1-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .level1-tab-btn {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .level1-tab-btn:hover {
    color: var(--text-white);
    border-color: var(--accent-gold);
  }

  .level1-tab-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
  }

  /* Level 2 Tabs */
  .plans-level2-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
  }

  .level2-tab-btn {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .level2-tab-btn:hover {
    background-color: rgba(197, 168, 128, 0.08);
  }

  .level2-tab-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
  }

  /* Content Pane logic display */
  .plans-pane {
    display: none;
  }

  .plans-pane.active {
    display: block;
  }

  .sub-plans-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
  }

  .sub-plans-pane.active {
    display: block;
  }

  .plan-display-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    max-width: 960px;
    margin: 0 auto;
  }

  .plan-img-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
  }

  .plan-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
  }

  .plan-details-panel {
    padding: 10px;
  }

  .plan-detail-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
  }

  .plan-detail-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Legend panel for Master Plan (matches screenshot format) */
  .plan-legend-panel {
    background-color: #1a1c1f;
    border-radius: 10px;
    padding: 30px;
    color: #e0ddd8;
  }

  .legend-header {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a07c30;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .legend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
  }

  .legend-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .legend-col span {
    font-family: var(--font-sans);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2px;
    line-height: 1.4;
  }

  @media (max-width: 991px) {
    .legend-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .plans-section {
      padding: 70px 24px;
    }
  }

  @media (max-width: 600px) {
    .legend-grid {
      grid-template-columns: 1fr;
    }

    .plans-level1-tabs {
      flex-direction: column;
      align-items: stretch;
    }

    .plans-level2-tabs {
      flex-direction: column;
      align-items: stretch;
    }
  }

  /* --- Plan Slider Inside Card --- */
  .plan-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    background-color: #e0ddd8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  }

  .plan-slides {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .plan-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .plan-slide.active {
    opacity: 1;
    visibility: visible;
  }

  /* Slide arrows */
  .plan-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 28, 31, 0.6);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .plan-slide-arrow:hover {
    background-color: rgba(26, 28, 31, 0.9);
    transform: translateY(-50%) scale(1.05);
  }

  .plan-slide-arrow.prev {
    left: 20px;
  }

  .plan-slide-arrow.next {
    right: 20px;
    transform: translateY(-50%) rotate(180deg);
  }

  .plan-slide-arrow.next:hover {
    transform: translateY(-50%) rotate(180deg) scale(1.05);
  }

  .plan-slide-arrow svg {
    width: 20px;
    height: 20px;
  }

  /* Indicators */
  .plan-slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .plan-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .plan-slide-dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
  }

  /* ============================================
   PROJECT AMENITIES SECTION
   ============================================ */
  .project-amenities-section {
    background-color: var(--bg-primary);
    /* Blend with dark background */
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .project-amenities-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .amenities-box-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    /* Premium dark background */
    border: 1px solid var(--border-gold);
    /* Gold border */
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-premium);
    text-align: center;
  }

  .amenities-box-title {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    /* White text title */
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
  }

  .amenities-property-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
  }

  .amenities-tab-btn {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .amenities-tab-btn:hover {
    background-color: rgba(197, 168, 128, 0.08);
    color: var(--accent-gold-hover);
  }

  .amenities-tab-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
  }

  .amenities-tab-contents {
    position: relative;
  }

  .amenities-pane {
    display: none;
  }

  .amenities-pane.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
  }

  .amenities-slider-outer {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
  }

  .amenities-slider-outer::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
  }

  .amenities-slider-inner {
    display: flex;
    gap: 30px;
    padding: 15px 10px;
    justify-content: center;
    transition: transform 0.5s ease;
  }

  .amenity-slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    flex: 0 0 130px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .amenity-slide-item:hover {
    transform: translateY(-8px);
  }

  .amenity-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    border: 1.5px dashed var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    padding: 22px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .amenity-slide-item:hover .amenity-icon-box {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-style: solid;
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
  }

  .amenity-icon-box svg {
    width: 100%;
    height: 100%;
  }

  .amenity-item-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 120px;
    transition: color 0.3s ease;
  }

  .amenity-slide-item:hover .amenity-item-label {
    color: var(--accent-gold-hover);
  }

  .amenities-arrows-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
  }

  .amenity-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .amenity-arrow-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
  }

  .amenity-arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
  }

  /* --- Elevation Grid Layout --- */
  .elevation-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
  }
  
  .elevation-grid-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .elevation-grid-item .plan-img-wrapper {
    margin-bottom: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  
  .elevation-grid-item .plan-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .elevation-grid-item:hover .plan-img-wrapper img {
    transform: scale(1.05);
  }
  
  .elevation-item-caption h4 {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
  }
  
  .elevation-item-caption p {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* Responsive queries */
  @media (max-width: 1199px) {
    .project-amenities-section {
      padding: 80px 24px;
    }

    .amenities-box-container {
      padding: 50px 30px;
    }

    .amenities-slider-inner {
      justify-content: flex-start;
      /* Enable scrolling when items overflow */
    }
  }

  @media (max-width: 768px) {
    .project-amenities-section {
      padding: 60px 16px;
    }

    .amenities-box-container {
      border-radius: 16px;
      padding: 40px 20px;
    }

    .amenities-box-title {
      font-size: 26px;
      margin-bottom: 24px;
    }

    .amenities-property-tabs {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      margin-bottom: 30px;
    }

    .amenities-tab-btn {
      padding: 10px 20px;
    }

    .amenities-slider-inner {
      gap: 20px;
    }

    .amenity-slide-item {
      flex: 0 0 110px;
    }

    .amenity-icon-box {
      width: 75px;
      height: 75px;
      border-radius: 14px;
      padding: 18px;
    }

    .amenity-item-label {
      font-size: 11.5px;
    }

    .elevation-grid-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

/* --- Pre-Launch & Exclusive Configurations Section --- */
.prelaunch-section {
  padding: 100px 0;
  background-color: var(--bg-darker);
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.prelaunch-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.prelaunch-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.prelaunch-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 45px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Tab buttons for Pre-launch */
.prelaunch-property-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.prelaunch-tab-btn {
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.prelaunch-tab-btn:hover {
  color: var(--text-white);
  border-color: var(--accent-gold);
}

.prelaunch-tab-btn.active {
  color: var(--bg-primary);
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

/* Tab panes toggling */
.prelaunch-tab-contents {
  position: relative;
}

.prelaunch-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.prelaunch-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Intro Banner Card */
.prelaunch-intro-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.prelaunch-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.prelaunch-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: rgba(197, 168, 128, 0.05);
}

.prelaunch-intro-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.dear-team-intro {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 16px auto;
}

.cta-short {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--accent-gold);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid layout for Melange Details */
.prelaunch-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.prelaunch-prices-panel,
.prelaunch-specs-panel {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 35px;
  box-shadow: var(--shadow-premium);
}

.panel-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

/* Pricing Grid & Cards */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.price-info-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 20px;
  transition: var(--transition-smooth);
}

.price-info-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
}

.config-type {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-white);
}

.price-val {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-val small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}

.card-details-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 8px;
}

.detail-label {
  color: var(--text-muted);
}

.detail-val {
  color: var(--text-light);
  font-weight: 600;
}

.card-footer-row {
  display: flex;
  justify-content: flex-start;
}

.sourcing-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.price-all-inclusive-bar {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-primary);
  border: 1px dashed var(--accent-gold);
  border-radius: 6px;
  padding: 16px;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.bar-value {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold-hover);
}

.bar-value small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Specs Panel details */
.specs-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 25px;
}

.spec-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 15px;
}

.emoji-icon {
  font-size: 20px;
}

.spec-info h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.spec-info p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.building-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.building-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.bullet-gold {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Magnus & Marvilla styling */
.magnus-marvilla-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

.magnus-section-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-premium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.box-badge {
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
  background-color: rgba(197, 168, 128, 0.05);
}

.box-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.apartment-card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.apartment-spec-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 18px;
  transition: var(--transition-smooth);
}

.apartment-spec-card:hover {
  border-color: var(--accent-gold);
}

.apartment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.apartment-header h4 {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-white);
}

.apartment-price {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--accent-gold);
}

.apartment-price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}

.apartment-body .spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
}

.apartment-body .spec-row span {
  color: var(--text-muted);
}

.apartment-body .spec-row strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Garden Flats grid */
.garden-intro-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.garden-flats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.garden-flat-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 18px;
  transition: var(--transition-smooth);
}

.garden-flat-card:hover {
  border-color: var(--accent-gold);
}

.garden-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.flat-number {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.flat-price {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
}

.garden-card-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.garden-spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.garden-spec-item .label {
  color: var(--text-muted);
}

.garden-spec-item .val {
  color: var(--text-light);
  font-weight: 600;
}

.garden-card-footer {
  display: flex;
}

.garden-card-footer .type-badge {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  background-color: rgba(197, 168, 128, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Marvilla box special */
.marvilla-special-box {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(197, 168, 128, 0.04) 100%);
  border: 1px solid var(--border-gold);
}

.marvilla-badge {
  color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
}

.text-gold {
  color: var(--accent-gold) !important;
}

.marvilla-desc {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.marvilla-specs-card {
  background-color: rgba(18, 19, 21, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
}

.marvilla-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.marvilla-type {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
}

.marvilla-price {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold-hover);
}

.marvilla-price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
}

.marvilla-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.m-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.m-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.m-val {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.font-gold {
  color: var(--accent-gold);
}

/* Responsiveness for Prelaunch section */
@media (max-width: 1024px) {
  .prelaunch-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .magnus-marvilla-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .marvilla-special-box {
    grid-column: span 1;
  }
  
  .marvilla-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .prelaunch-section {
    padding: 60px 0;
  }
  
  .prelaunch-title {
    font-size: 28px;
  }
  
  .prelaunch-intro-card {
    padding: 30px 20px;
  }
  
  .prelaunch-intro-card h3 {
    font-size: 24px;
  }
  
  .dear-team-intro {
    font-size: 14px;
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .price-all-inclusive-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .prelaunch-property-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .prelaunch-tab-btn {
    text-align: center;
    padding: 12px;
  }
}

/* Custom extra responsiveness fixes for mobile screens */
@media (max-width: 600px) {
  .highlights-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-bottom: none;
  }
  
  .highlight-tab-btn {
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 12px;
  }
  
  .highlight-tab-btn::after {
    display: none;
  }
  
  .highlight-tab-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
  }

  .map-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .map-tab-btn {
    text-align: center;
    width: 100%;
  }

  .video-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .video-tab-btn {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .marvilla-specs-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Responsive Hero & Background Images for Performance --- */
.hero-bg-melange {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.35)), url('assets/mantra_melange_mobile.webp');
  background-position: 25% center;
}
@media (min-width: 768px) {
  .hero-bg-melange {
    background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.35)), url('assets/mantra_melange.webp');
    background-position: center 15%;
  }
}

.hero-bg-aerial {
  background-image: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.45)), url('assets/Aerial_Cam_mobile.webp');
  background-position: center center;
}
@media (min-width: 768px) {
  .hero-bg-aerial {
    background-image: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.45)), url('assets/Aerial_Cam.webp');
    background-position: center 15%;
  }
}

/* ============================================
   THANK YOU POPUP MODAL STYLING
   ============================================ */
.thankyou-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10005; /* higher than enquiry-modal-overlay */
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.thankyou-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.thankyou-modal-box {
  position: relative;
  max-width: 520px;
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(145deg, #161719 0%, #1e2023 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  padding: 50px 40px;
  text-align: center;
}

.thankyou-modal-overlay.active .thankyou-modal-box {
  transform: scale(1) translateY(0);
}

.thankyou-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.thankyou-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: rotate(90deg);
}

/* Checkmark Animation */
.thankyou-icon-wrapper {
  margin: 0 auto 24px auto;
  width: 80px;
  height: 80px;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2.5;
  stroke: var(--accent-gold);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--accent-gold);
  animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s forwards;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke: rgba(197, 168, 128, 0.2);
  fill: none;
  animation: strokeCircle .6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheckmark .4s cubic-bezier(0.25, 1, 0.5, 1) .6s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheckmark {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fillCheckmark {
  100% {
    box-shadow: inset 0px 0px 0px 40px rgba(197, 168, 128, 0.1);
  }
}

@keyframes scaleCheckmark {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

/* Content Text */
.thankyou-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold-hover);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.thankyou-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 20px;
}

.thankyou-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto 24px auto;
}

.thankyou-message {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.btn-thankyou-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 14px 30px;
  background: linear-gradient(135deg, #c49e4c 0%, #a07c30 100%);
  color: #1a1208;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(196, 158, 76, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-thankyou-close:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 158, 76, 0.4);
}

.btn-thankyou-close:active {
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 576px) {
  .thankyou-modal-box {
    padding: 40px 24px;
    border-radius: 20px;
  }
  .thankyou-title {
    font-size: 1.8rem;
  }
  .thankyou-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .thankyou-message {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ============================================
   HERO SLIDER PROPERTY TABS
   ============================================ */
.brand-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.hero-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

.hero-tab-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
}

/* Mobile responsive layout for brand tabs */
@media (max-width: 991px) {
  .brand-tabs-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
  }
  
  .hero-tab-btn {
    font-size: 9px;
    padding: 6px 12px;
    flex: 0 1 auto;
    border-radius: 15px;
  }

  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .hero-tab-btn {
    font-size: 8px;
    padding: 5px 10px;
  }
  .brand-main {
    font-size: 20px;
  }
}
