/* 
   Akshara Grandeur - Premium Landing Page Stylesheet
   Designed with luxury aesthetics: HSL curated colors, glassmorphism, responsive grids, and interactive elements.
*/

@font-face {
  font-family: "Brittany Signature";
  src:
    url("../fonts/brittany-signature.woff2") format("woff2"),
    url("../fonts/brittany-signature.woff") format("woff"),
    url("../fonts/brittany-signature.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SitkaWeb";
  src: url("../fonts/sitka-banner.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SitkaWeb";
  src: url("../fonts/sitka-banner.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-gold: #c5a880;
  --primary-gold-hover: #b3946a;
  --dark-bg: #111315;
  --dark-card: #1c1f22;
  --light-bg: #fdfcf9;
  --light-gray: #f4f2ee;
  --text-dark: #1f2226;
  --text-muted: #666e75;
  --text-light: #ffffff;
  --white: #ffffff;
  --font-primary: "Poppins", sans-serif;
  --font-heading: "SitkaWeb", "Sitka", "Playfair Display", serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}



.container{
	@include proportional-container(1680px, 1920px);

	@media only screen and (max-width: 640px) {
		@include proportional-container(600px, 640px);
	}
}


.container {
	max-width: px-to-vw(1680);
	margin: 0px auto;
	margin: 0px auto;
	padding: 0 10px;

	@media only screen and (max-width: 992px) {
		padding: 0 10px;
	}

	@media(max-width:640px) {
		max-width: 88%;
	}
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.active {
  background: rgba(17, 19, 21, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  @media (max-width: 767.98px) {
    height: 80px;
  }
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  opacity: 0.85;
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover {
  opacity: 1;
  color: var(--primary-gold);
}

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

.nav-cta-btn {
  font-family: "SitkaWeb", serif;
  color: white;
  font-weight: 400;
  padding: 10px 20px;
  font-size: 24px;
  letter-spacing: 0.5px;
  border: 2px solid white;
}

.nav-cta-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: black;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: 80px;
  overflow: hidden;
  background: #111315 url("../images/hero-bg.webp") no-repeat center
    center/cover;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  isolation: isolate;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero {
    height: 100dvh;
  }
}

/*
@media (min-width: 992px) {
  .hero {
    height: 150vh;
    min-height: 1080px;
  }
}
*/

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(rgba(17, 19, 21, 0.65), rgba(17, 19, 21, 0.88)); */
  z-index: 1;
}

.hero .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.volume-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
  background: rgba(17, 19, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.volume-btn:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

/* Hero Text Layout */
.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  align-items: flex-start;
  animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
}

.hero-title-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 24px;
  row-gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
}

.text-left-top {
  grid-row: 1;
  grid-column: 1;
  font-family: "SitkaWeb", var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: 3.6px;
  white-space: nowrap;
}

.text-left-bottom {
  text-align: end;
  grid-row: 2;
  grid-column: 1;
  font-family: "SitkaWeb", var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: 3.6px;
  white-space: nowrap;
}

.text-middle-bottom {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: end;
  justify-content: center;
}

.script-home {
  font-family: "Brittany Signature";
  font-size: 9.5rem;
  color: var(--text-light);
  text-transform: lowercase;
  font-weight: 400;
  line-height: 0.2;
  position: relative;
  top: -24px;
  margin-right: -5px;
  z-index: 5;
  white-space: nowrap;
  display: inline-block;
}

.text-right-top {
  grid-row: 1;
  grid-column: 3;
  font-family: "SitkaWeb", var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: 3.6px;
  white-space: nowrap;
  margin-left: -180px;
}

.text-right-bottom {
  grid-row: 2;
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-title-divider {
  width: 2px;
  height: 54px;
  background-color: #fff;
}

.hero-title-sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
  text-transform: none;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
}

.hero-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-badge-container {
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-badge {
  max-width: 640px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hero-details-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.details-amenities {
  font-size: 1.35rem;
  color: #ffffff;
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.details-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.location-line {
  width: 80px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
}

.location-text {
  font-size: 1.8rem;
  color: #ffffff;
  font-family: var(--font-primary);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Scroll Down */
.scroll-down-text {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
}
/* Desktop/Mobile display helper classes */
@media (min-width: 992px) {
  .desktop-only {
    display: grid !important;
  }
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
}

@media(max-width:1366px) {
  .text-left-top, .text-right-top, .text-left-bottom, .text-right-bottom {
    font-size: 42px;
  }
}

/* Responsive Styles for New Hero Layout */
@media (max-width: 991px) {
  .hero {
    height: 100vh;
    min-height: 100dvh;
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 70, 180, 0.9), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .hero-text-wrapper {
    justify-content: flex-start;
    gap: 32px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-title-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .hero-mobile-top {
    font-family: "SitkaWeb", var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .hero-mobile-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: 16px;
    row-gap: 8px;
  }

  .hero-mobile-item {
    font-family: "SitkaWeb", var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .text-extends {
    grid-column: 1;
    grid-row: 1;
  }

  .text-beyond {
    grid-column: 3;
    grid-row: 1;
    margin-left: -80px;
  }

  .text-your {
    grid-column: 1;
    grid-row: 2;
  }

  .text-home {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: flex-end;
  }

  .script-home-mobile {
    font-family: "Brittany Signature";
    font-size: 3.7rem;
    color: var(--text-light);
    text-transform: lowercase;
    font-weight: 400;
    line-height: 0.2;
    position: relative;
    top: -8px;
    margin-left: -22px;
    margin-right: -10px;
    display: inline-block;
  }

  .hero-mobile-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }

  .hero-mobile-divider {
    width: 2px;
    height: 24px;
    background-color: white;
  }

  .hero-mobile-sub {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.28rem;
    line-height: 1.3;
    font-weight: 400;
  }

  .hero-mobile-btn {
    display: inline-block;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    background: transparent;
    text-transform: uppercase;
    margin-top: 15px;
  }

  .hero-mobile-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
  }

  .hero-title-grid {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .text-left-top {
    order: 1;
    font-size: 2rem;
    text-align: start;
    white-space: normal;
  }

  .text-right-top {
    order: 2;
    font-size: 2rem;
    text-align: start;
    white-space: normal;
    margin-left: 0;
  }

  .text-left-bottom {
    order: 3;
    font-size: 2rem;
    text-align: center;
    white-space: normal;
  }

  .text-middle-bottom {
    order: 4;
  }

  .text-right-bottom {
    order: 5;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .script-home {
    font-size: 3.7rem;
    margin-top: 5px;
    margin-bottom: 5px;
    top: 0;
    margin-right: 0;
  }

  .hero-title-divider {
    width: 80px;
    height: 2px;
  }

  .hero-title-sub {
    display: flex;
    flex-direction: row;
    font-size: 1.2rem;
    align-items: center;
    text-align: center;
  }

  .hero-bottom-content {
    margin-top: auto;
  }

  .hero-details-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
  }

  .details-amenities {
    font-size: 1.1rem;
  }

  .details-location {
    gap: 16px;
  }

  .location-line {
    width: 50px;
  }

  .location-text {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .scroll-down-text {
    display: none;
  }
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--primary-gold);
  color: var(--dark-bg);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Sections */
.section {
  padding: 80px 0;
  scroll-margin-top: 100px;
}
#podium-amenities {
  padding-bottom: 2px;
}
#floor22-amenities {
  padding-bottom: 2px;
}
@media (max-width: 767.98px) {
  .section {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 20px 0;
  }
}

.section-light {
  background-color: var(--light-bg);
}

.section-dark {
  background-color: #000;
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  color: inherit;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary-gold);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.overview-text .highlight-lead {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
}

.overview-image {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-image img {
  transition: var(--transition-smooth);
  width: 100%;
}

.overview-image:hover img {
  transform: scale(1.05);
}

/* Configurations Section */
.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.config-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.config-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.3);
}

.config-img {
  height: 240px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.config-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.config-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--dark-bg);
  color: var(--primary-gold);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.config-details {
  padding: 32px;
}

.config-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.config-list {
  list-style: none;
  margin-bottom: 28px;
}

.config-list li {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.config-list li span:first-child {
  color: var(--text-muted);
}

.config-list li span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.config-price {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.config-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background-color: var(--dark-bg);
  color: var(--text-light);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.config-btn:hover {
  background-color: var(--primary-gold);
  color: var(--dark-bg);
}

/* Amenities Section */
.amenities-interactive {
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  padding: 100px 0 0 0;
  background-color: #000000;
  color: var(--text-light);
}

.amenities-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.header-left {
  flex: 0 0 39%;
}

.section-tag-new {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.section-title-new {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.section-title-new .title-bold {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--white);
  display: block;
}
@media (max-width: 767.98px) {
  .section-title-new .title-bold {
    text-align: center;
  }
  .title-bold {
    margin-bottom: 10px;
  }
  .section-title-new .title-italic {
    text-align: center;
  }
}

.section-title-new .title-italic {
  font-family: var(--font-primary);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  display: block;
}

.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  /* max-width: 550px; */
}

.section-desc-new {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.21rem;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .section-desc-new {
    text-align: center;
  }
}

.contact-us-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  background: transparent;
  text-transform: uppercase;
}

.contact-us-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

/* Level Tabs */
.level-tabs {
  display: flex;
  gap: 40px;
  margin: 40px 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.level-tab-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  transition: var(--transition-smooth);
}

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

.level-tab-btn.active {
  color: var(--white);
}

.level-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   02 GROUND AMENITIES SECTION
   ========================================================================== */

/* Content Grid */
/* Content Grid */
.amenities-interactive-grid-ground,
.amenities-interactive-grid-floor22 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 130px;
  align-items: start;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .amenities-interactive-grid-ground,
  .amenities-interactive-grid-floor22 {
    grid-template-columns: 727px 1fr;
    height: 558px;
  }
  .amenity-video-container-ground,
  .amenity-video-container-floor22 {
    width: 727px !important;
    height: 558px !important;
    aspect-ratio: auto !important;
  }
  .amenity-list-container-ground,
  .amenity-list-container-floor22 {
    height: 558px;
  }
  .amenity-scroll-box-ground,
  .amenity-scroll-box-floor22 {
    height: calc(558px - 80px);
    max-height: none !important;
  }
}

/* Video Player */
.amenity-video-container-ground,
.amenity-video-container-floor22 {
  position: relative;
  aspect-ratio: 727 / 558;
  background-color: #000;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.amenity-video-container-ground video,
.amenity-video-container-floor22 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-text-ground,
.video-overlay-text-floor22 {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  letter-spacing: 4px;
  font-weight: 600;
  z-index: 3;
  pointer-events: none;
}

/* List Container */
.amenity-list-container-ground,
.amenity-list-container-floor22 {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.amenity-list-title-ground,
.amenity-list-title-floor22 {
  font-family: "SitkaWeb", var(--font-heading);
  font-size: 2.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.amenity-list-subtitle-ground,
.amenity-list-subtitle-floor22 {
  /* color: rgba(255, 255, 255, 0.5); */
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.amenity-scroll-box-ground,
.amenity-scroll-box-floor22 {
  height: 500px;
  overflow-y: auto;
  padding-right: 20px;
}

/* Custom Scrollbar for Amenities List */
.amenity-scroll-box-ground::-webkit-scrollbar,
.amenity-scroll-box-floor22::-webkit-scrollbar {
  width: 6px;
}

.amenity-scroll-box-ground::-webkit-scrollbar-track,
.amenity-scroll-box-floor22::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
}

.amenity-scroll-box-ground::-webkit-scrollbar-thumb,
.amenity-scroll-box-floor22::-webkit-scrollbar-thumb {
  background: #dfa947;
  /* border-radius: 3px; */
}

/* Restrict scrollbar height to 142px and center it */
.amenity-scroll-box-ground::-webkit-scrollbar-button:single-button:vertical:decrement,
.amenity-scroll-box-floor22::-webkit-scrollbar-button:single-button:vertical:decrement {
  height: 109px; /* Mobile: (500 - 282) / 2 = 109px */
  display: block;
  background: transparent;
}
.amenity-scroll-box-ground::-webkit-scrollbar-button:single-button:vertical:increment,
.amenity-scroll-box-floor22::-webkit-scrollbar-button:single-button:vertical:increment {
  height: 109px; /* Mobile: (500 - 282) / 2 = 109px */
  display: block;
  background: transparent;
}
@media (min-width: 992px) {
  .amenity-scroll-box-ground::-webkit-scrollbar-button:single-button:vertical:decrement,
  .amenity-scroll-box-floor22::-webkit-scrollbar-button:single-button:vertical:decrement {
    height: 168px; /* Desktop: (478 - 142) / 2 = 168px */
  }
  .amenity-scroll-box-ground::-webkit-scrollbar-button:single-button:vertical:increment,
  .amenity-scroll-box-floor22::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 168px; /* Desktop: (478 - 142) / 2 = 168px */
  }
}

.amenity-interactive-list-ground,
.amenity-interactive-list-floor22 {
  list-style: none;
  display: flex;
  flex-direction: column;
  direction: ltr;
}

.amenity-item-ground,
.amenity-item-floor22 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  font-weight: 400;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767.98px) {
  .amenity-item-ground,
  .amenity-item-floor22 {
    font-size: 1.2rem;
  }
}

.amenity-item-ground::before,
.amenity-item-floor22::before {
  content: "•";
  color: #dfa947;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
  line-height: 1;
  margin-top: -2px;
}

.amenity-item-ground:hover,
.amenity-item-floor22:hover {
  color: var(--white);
  padding-left: 8px;
}

.amenity-item-ground.active,
.amenity-item-floor22.active {
  color: var(--white);
  font-weight: 600;
  padding-left: 8px;
}

/* Faded Level Text Background */
.faded-level-text-ground,
.faded-level-text-floor22 {
  position: relative;
  /* margin-top: 50px; */
  margin-bottom: 20px;
  font-family: var(--font-primary);
  font-size: 11vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: visible;
}

/* ==========================================================================
   03 PODIUM AMENITIES SECTION
   ========================================================================== */

/* Content Grid */
.amenities-interactive-grid-podium,
.amenities-interactive-grid-rooftop {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 130px;
  align-items: start;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .amenities-interactive-grid-podium.grid-reversed,
  .amenities-interactive-grid-rooftop.grid-reversed {
    grid-template-columns: 1fr 727px;
  }
  .amenities-interactive-grid-podium,
  .amenities-interactive-grid-rooftop {
    height: 558px;
  }
  .amenity-video-container-podium,
  .amenity-video-container-rooftop {
    width: 727px !important;
    height: 558px !important;
    aspect-ratio: auto !important;
  }
  .amenity-list-container-podium,
  .amenity-list-container-rooftop {
    height: 558px;
  }
  .amenity-scroll-box-podium,
  .amenity-scroll-box-rooftop {
    height: calc(558px - 80px);
    max-height: none !important;
  }
}

/* Video Player */
.amenity-video-container-podium,
.amenity-video-container-rooftop {
  position: relative;
  aspect-ratio: 727 / 558;
  background-color: #000;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.amenity-video-container-podium video,
.amenity-video-container-rooftop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-text-podium,
.video-overlay-text-rooftop {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  letter-spacing: 4px;
  font-weight: 600;
  z-index: 3;
  pointer-events: none;
}

/* List Container */
.amenity-list-container-podium,
.amenity-list-container-rooftop {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.amenity-list-title-podium,
.amenity-list-title-rooftop {
  font-family: "SitkaWeb", var(--font-heading);
  font-size: 2.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.amenity-list-subtitle-podium,
.amenity-list-subtitle-rooftop {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.amenity-scroll-box-podium,
.amenity-scroll-box-rooftop {
  height: 500px;
  overflow-y: auto;
  padding-left: 20px;
  direction: rtl;
}

/* Custom Scrollbar for Amenities List */
.amenity-scroll-box-podium::-webkit-scrollbar,
.amenity-scroll-box-rooftop::-webkit-scrollbar {
  width: 6px;
}

.amenity-scroll-box-podium::-webkit-scrollbar-track,
.amenity-scroll-box-rooftop::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
}

.amenity-scroll-box-podium::-webkit-scrollbar-thumb,
.amenity-scroll-box-rooftop::-webkit-scrollbar-thumb {
  background: #dfa947;
}

/* Restrict scrollbar height to 142px and center it */
.amenity-scroll-box-podium::-webkit-scrollbar-button:single-button:vertical:decrement,
.amenity-scroll-box-rooftop::-webkit-scrollbar-button:single-button:vertical:decrement {
  height: 109px; /* Mobile: (500 - 282) / 2 = 109px */
  display: block;
  background: transparent;
}
.amenity-scroll-box-podium::-webkit-scrollbar-button:single-button:vertical:increment,
.amenity-scroll-box-rooftop::-webkit-scrollbar-button:single-button:vertical:increment {
  height: 109px; /* Mobile: (500 - 282) / 2 = 109px */
  display: block;
  background: transparent;
}
@media (min-width: 992px) {
  .amenity-scroll-box-podium::-webkit-scrollbar-button:single-button:vertical:decrement,
  .amenity-scroll-box-rooftop::-webkit-scrollbar-button:single-button:vertical:decrement {
    height: 168px; /* Desktop: (478 - 142) / 2 = 168px */
  }
  .amenity-scroll-box-podium::-webkit-scrollbar-button:single-button:vertical:increment,
  .amenity-scroll-box-rooftop::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 168px; /* Desktop: (478 - 142) / 2 = 168px */
  }
}

.amenity-interactive-list-podium,
.amenity-interactive-list-rooftop {
  list-style: none;
  display: flex;
  flex-direction: column;
  direction: ltr; /* Reset list text direction */
}

.amenity-item-podium,
.amenity-item-rooftop {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  font-weight: 400;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .amenity-item-podium,
  .amenity-item-rooftop {
    font-size: 1.2rem;
  }
}

.amenity-item-podium::before,
.amenity-item-rooftop::before {
  content: "•";
  color: #dfa947;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
  line-height: 1;
  margin-top: -2px;
}

.amenity-item-podium:hover,
.amenity-item-rooftop:hover {
  color: var(--white);
  padding-left: 8px;
}

.amenity-item-podium.active,
.amenity-item-rooftop.active {
  color: var(--white);
  font-weight: 600;
  padding-left: 8px;
}

/* Faded Level Text Background */
.faded-level-text-podium,
.faded-level-text-rooftop {
  position: relative;
  /* margin-top: 50px; */
  margin-bottom: 20px;
  font-family: var(--font-primary);
  font-size: 11vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1;
  text-align: end;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .amenities-header-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
  }

  .header-right {
    max-width: 100%;
    align-items: center;
  }

  .level-tabs {
    gap: 25px;
    margin: 30px 0 40px 0;
    overflow-x: auto;
    padding-bottom: 10px;
    white-space: nowrap;
  }

  .level-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .level-tabs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
  }

  .amenities-interactive-grid-ground,
  .amenities-interactive-grid-floor22 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenity-list-container-ground,
  .amenity-list-container-floor22 {
    padding-left: 0;
  }

  .faded-level-text-ground,
  .faded-level-text-floor22 {
    font-size: 60px;
    margin-top: 30px;
    bottom: auto;
    letter-spacing: 2px;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .amenities-interactive-grid-podium,
  .amenities-interactive-grid-rooftop {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenities-interactive-grid-podium.grid-reversed
    .amenity-video-container-podium,
  .amenities-interactive-grid-rooftop.grid-reversed
    .amenity-video-container-rooftop {
    order: -1;
  }

  .amenity-list-container-podium,
  .amenity-list-container-rooftop {
    padding-left: 0;
  }

  .faded-level-text-podium,
  .faded-level-text-rooftop {
    font-size: 60px;
    margin-top: 30px;
    bottom: auto;
    letter-spacing: 2px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .amenities-interactive {
    padding: 60px 0 20px 0;
  }

  .section-title-new {
    font-size: 2.2rem;
  }

  .amenity-list-title-ground,
  .amenity-list-title-floor22 {
    font-size: 1.5rem;
  }

  .faded-level-text-ground,
  .faded-level-text-floor22 {
    font-size: 60px;
    margin-top: 20px;
    bottom: auto;
    letter-spacing: 2px;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .amenity-list-title-podium,
  .amenity-list-title-rooftop {
    font-size: 1.5rem;
  }

  .faded-level-text-podium,
  .faded-level-text-rooftop {
    font-size: 60px;
    margin-top: 20px;
    bottom: auto;
    letter-spacing: 2px;
    white-space: normal;
    text-align: center;
  }
}

/* Location Section */
.location-section-new {
  background-color: #fcfcfc;
  padding-left: 100px;
  position: relative;
  padding-bottom: 0;
}

.location-container-new {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 30px;
  align-items: center;
}

.location-card-new {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 14px 20px 34px #00000040;
  border: 1px solid rgba(0, 0, 0, 0.02);
  z-index: 2;
  position: relative;
  margin-right: -80px; /* Overlap the map image */
}

.location-card-new h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.location-card-new h2 .title-bold {
  font-family: var(--font-primary);
  font-weight: 700;
  color: #111315;
}

.location-card-new h2 .title-light-italic {
  font-family: var(--font-primary);
  font-weight: 300;
  font-style: italic;
  color: #111315;
}

.location-card-new p {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a4a4a;
}

.location-map-new {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Blur/Fade effect at the edges */
.location-map-new::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  box-shadow: inset 0 0 80px 100px #fcfcfc;
  pointer-events: none;
}
@media (max-width: 768px) {
  .location-map-new::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    box-shadow: inset 0 0 89px 21px #fcfcfc;
    pointer-events: none;
  }
}

.location-map-new img {
  width: 115%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -10%;
}

@media (max-width: 991px) {
  .location-section-new {
    padding: 60px 0;
    padding-left: 0 !important;
  }
  .location-map-new img {
    transform: scale(1.5);
  }
  .location-container-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-card-new {
    padding: 30px;
    margin-right: 0; /* Reset overlap on smaller screens */
  }

  .location-card-new h2 {
    font-size: 2.2rem;
  }
}
.developer-section,
.footer-divider-section,
.lp-footer,
.faded-footer-text-section {
  background-color: #030303;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.developer-section {
  padding: 80px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  scroll-margin-top: 100px;
}

.footer-divider-section {
  padding: 10px 0;
}

.lp-footer {
  padding: 20px 0 40px 0;
}

.faded-footer-text-section {
  padding: 0 0 160px 0;
}

.developer-section .container,
.footer-divider-section .container,
.lp-footer .container,
.faded-footer-text-section .container {
  position: relative;
  max-width: 1550px;
  width: 92%;
  margin: 0 auto;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.footer-left-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 991px) {
  .footer-left-col {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Premium Developer Legacy Orbit Widget */
:root {
  --orbit-size: 820px;
  --center-size: 580px;
  --node-size: 180px;
  --font-stat: 2.2rem;
  --font-desc: 0.8rem;
  --luxury-gold: #d6a04c;
}

@media (max-width: 1399px) {
  :root {
    --orbit-size: 720px;
    --center-size: 500px;
    --node-size: 160px;
    --font-stat: 1.9rem;
    --font-desc: 0.72rem;
  }
}

@media (max-width: 1199px) {
  :root {
    --orbit-size: 640px;
    --center-size: 440px;
    --node-size: 140px;
    --font-stat: 1.6rem;
    --font-desc: 0.68rem;
  }
}

@media (max-width: 991px) {
  :root {
    --orbit-size: 560px;
    --center-size: 380px;
    --node-size: 90px;
    --font-stat: 1.3rem;
    --font-desc: 0.6rem;
  }
}

@media (max-width: 768px) {
  :root {
    --orbit-size: 520px;
    --center-size: 300px;
    --node-size: 84px;
    --font-stat: 1.25rem;
    --font-desc: 0.58rem;
  }
}

@media (max-width: 575px) {
  :root {
    --orbit-size: 300px;
    --center-size: 210px;
    --node-size: 88px;
    --font-stat: 1.1rem;
    --font-desc: 0.5rem;
  }
}

.orbit-container {
  width: var(--orbit-size);
  max-width: 100%;
  height: var(--orbit-size);
  aspect-ratio: 1 / 1;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.orbit-bg-svg {
  display: none;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--center-size);
  height: var(--center-size);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(214, 160, 76, 0.15) 0%,
      rgba(214, 160, 76, 0.04) 70%,
      transparent 100%
    ),
    rgba(11, 12, 14, 0.9);
  border: 1px solid rgba(214, 160, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 0 80px rgba(214, 160, 76, 0.08);
  padding: 20px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.orbit-center-content {
  width: 100%;
  max-width: 68%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .orbit-center-content {
    max-width: 35%;
  }
}

.dev-center-logo-img {
  width: 140px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.dev-tag {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  letter-spacing: 10px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}

.dev-title-bold {
  font-family: "SitkaWeb", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.dev-title-italic {
  font-family: "SitkaWeb", serif;
  font-size: 1.85rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.dev-description {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
  margin: 0 auto;
  font-weight: 400;
}

@media (max-width: 575px) {
  .developer-mobile-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    /* padding: 0 10px; */
  }
  .orbit-center {
    padding: 15px;
  }
  .dev-center-logo-img {
    width: 90px;
    margin-bottom: 0px;
  }
  .dev-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }
  .dev-title-bold,
  .dev-title-italic {
    font-size: 2rem;
  }
  .dev-title-italic {
    margin-bottom: 10px;
  }
  .dev-description {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 95%;
  }
}

.orbit-nodes-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  animation: rotateOrbit 45s linear infinite;
  transform-origin: center center;
}

.orbit-node {
  position: absolute;
  width: var(--node-size) !important;
  height: var(--node-size) !important;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: counterRotate 45s linear infinite;
  z-index: 999;
}

.orbit-node:hover {
  border-color: var(--luxury-gold);
  background: rgba(214, 160, 76, 0.05);
}

.orbit-node-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  /* animation: floatInnerNode 3.5s ease-in-out infinite alternate; */
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-stat);
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1.1;
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .stat-number {
    margin-bottom: 5px;
  }
}

.stat-desc {
  font-family: var(--font-primary);
  font-size: 8px;
  font-weight: 500;
  color: var(--luxury-gold);
  opacity: 0.9;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Position nodes on the orbit center circumference (approx 40% radius) */
.node-top-left {
  left: 30%;
  top: 15.4%;
}
.node-top-left .orbit-node-inner {
  animation-delay: 0s;
  animation-duration: 3.2s;
}

.node-top-right {
  left: 70%;
  top: 15.4%;
}
.node-top-right .orbit-node-inner {
  animation-delay: 0.4s;
  animation-duration: 3.8s;
}

.node-middle-right {
  left: 90%;
  top: 50%;
}
.node-middle-right .orbit-node-inner {
  animation-delay: 0.8s;
  animation-duration: 3.5s;
}

.node-bottom-right {
  left: 70%;
  top: 84.6%;
}
.node-bottom-right .orbit-node-inner {
  animation-delay: 1.2s;
  animation-duration: 4.1s;
}

.node-bottom-left {
  left: 30%;
  top: 84.6%;
}
.node-bottom-left .orbit-node-inner {
  animation-delay: 0.2s;
  animation-duration: 3.4s;
}

.node-middle-left {
  left: 10%;
  top: 50%;
}
.node-middle-left .orbit-node-inner {
  animation-delay: 0.6s;
  animation-duration: 4.4s;
}

@keyframes rotateOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes counterRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes floatInnerNode {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}

.footer-right-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  margin-right: calc(50% - 25vw);
}
@media (max-width: 768px) {
  .footer-right-col {
    justify-content: center;
    margin-right: 0;
  }
}

.building-glow-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  filter: drop-shadow(0 0 30px rgba(214, 160, 76, 0.12));
  transition: filter 0.5s ease;
}

.building-glow-wrapper:hover {
  filter: drop-shadow(0 0 45px rgba(214, 160, 76, 0.22));
}

.footer-building-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 850px;
  object-fit: contain;
  object-position: right bottom;
  filter: brightness(0.95);
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}
@media (max-width: 768px) {
  .footer-divider-line {
    margin: -7px 0;
  }
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-left {
  flex: 1;
  min-width: 300px;
}

.copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.copyright-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.copyright-text a:hover {
  color: var(--primary-gold);
}

.footer-bottom-right {
  display: flex;
  justify-content: flex-end;
}

.rera-info-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  max-width: 550px;
}

.rera-qr-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 2px;
  background-color: transparent;
  flex-shrink: 0;
}

.rera-text {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.rera-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.rera-link:hover {
  color: var(--primary-gold);
}

.faded-footer-text {
  position: absolute;
  /* bottom: 15px; */
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-primary);
  font-size: 7.5vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 19, 21, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-md);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-smooth);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  opacity: 1;
  color: var(--primary-gold);
}

/* Keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Menu Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-features {
    width: 100%;
    max-width: 500px;
  }

  .hero-form-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .overview-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  header {
    background: var(--dark-bg);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-cta-btn {
    margin-top: 16px;
    font-family: "SitkaWeb", serif;
    font-size: 16px;
    font-weight: 400;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .orbit-container {
    max-width: 100%;
  }
  .building-glow-wrapper {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
  .footer-building-img {
    height: unset;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .rera-info-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 16px;
  }
  .rera-text {
    text-align: center;
    font-size: 0.78rem;
  }
  .lp-footer {
    padding-bottom: 20px;
  }
  .faded-footer-text-section {
    padding-bottom: 40vw;
  }
  .faded-footer-text {
    font-size: 16vw;
    letter-spacing: 2px;
    top: 0;
    bottom: auto;
    white-space: normal;
    width: 100%;
    text-align: center;
    line-height: 1.1;
  }
}

/* Overview Section New Design */
.overview-grid-new {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.overview-left-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.overview-title-main {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.overview-title-main .title-serif {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 700;
  color: #111315;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.overview-title-main .title-sans-italic {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: #111315;
  letter-spacing: 0.5px;
}

.overview-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.overview-feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 228px;
}

.overview-feature-card.full-width-card {
  grid-column: span 3;
}

.overview-feature-card .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.overview-feature-card .feature-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.overview-feature-card .feature-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: #111315;
  line-height: 1.4;
}

.overview-right-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.overview-paragraph {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: #4a4a4a;
  line-height: 1.7;
  font-weight: 400;
}

.overview-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.overview-luxury-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles for Overview Section */
@media (max-width: 991px) {
  .overview-grid-new {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .overview-left-col,
  .overview-right-col {
    display: contents;
  }

  .overview-title-main {
    order: 1;
  }

  .overview-image-wrapper {
    order: 2;
    width: 350px;
    max-width: 100%;
    height: 318px;
    margin: 0 auto;
  }

  .overview-image-wrapper video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .overview-paragraph {
    order: 3;
  }

  .overview-features-grid {
    order: 4;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .overview-title-main .title-serif,
  .overview-title-main .title-sans-italic {
    font-size: 2.5rem;
  }

  .overview-feature-card {
    width: 100%;
  }

  .overview-feature-card.full-width-card {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .overview-features-grid {
    gap: 20px;
  }

  .overview-feature-card.full-width-card {
    grid-column: span 1;
  }

  .overview-title-main .title-serif,
  .overview-title-main .title-sans-italic {
    font-size: 2.2rem;
  }

  .overview-paragraph {
    font-size: 1.05rem;
  }
}

/* Carpets Section Styles */
.carpets-section {
  background-color: #ffffff;
  height: 950px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carpets-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carpets-center-content {
  max-width: 800px;
  text-align: center;
  z-index: 5;
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.96);
  padding: 35px 50px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .carpets-center-content {
    text-align: start;
  }
}

.carpets-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.carpets-title .title-bold {
  font-family: var(--font-primary);
  font-weight: 700;
  color: #111315;
}

.carpets-title .title-light-italic {
  font-family: var(--font-primary);
  font-weight: 300;
  font-style: italic;
  color: #111315;
}

.carpets-desc {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.carpets-btn {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 14px 40px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.carpets-btn:hover {
  background-color: var(--primary-gold);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.35);
}

.carpets-cards-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.carpet-card {
  position: absolute;
  width: clamp(260px, 35vh, 414px);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carpet-card .card-image {
  width: clamp(260px, 35vh, 414px);
  height: clamp(260px, 35vh, 414px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.carpet-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.carpet-card:hover .card-image img {
  transform: scale(1.05);
}

.carpet-card .card-label {
  margin-top: 12px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: #111315;
  text-align: center;
}

/* Final layout positions (GSAP will animate cards from below the fold into these positions) */
.card-left-1 {
  left: calc(50% - 730px);
  top: 120px;
}

.card-right-1 {
  right: calc(50% - 730px);
  top: 200px;
}

.card-left-2 {
  left: calc(50% - 730px);
  top: 650px;
}

.card-right-2 {
  right: calc(50% - 730px);
  top: 650px;
}

.card-center-bottom {
  left: 50%;
  transform: translateX(-50%);
  top: 1320px;
  z-index: 2;
  width: clamp(260px, 35vh, 414px);
}

/* Dots hidden on desktop */
.carpets-slider-dots {
  display: none;
}

/* Responsive Styles for Carpets Section (Mobile & Tablet Slider) */
@media (max-width: 1489px) {
  .carpets-section {
    height: auto;
    overflow: visible;
    padding: 80px 0;
  }

  .carpets-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .carpets-center-content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 700px;
    padding: 0;
    box-shadow: none;
    background: none;
    border: none;
  }

  .carpets-title {
    font-size: 1.9rem;
  }

  .carpets-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .carpets-cards-container {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    pointer-events: auto;
    padding: 20px 0 20px 0;
    scrollbar-width: none; /* Firefox */
  }

  .carpets-cards-container::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
  }

  .carpet-card {
    flex: 0 0 280px;
    width: 280px !important;
    scroll-snap-align: center;
    position: static;
    transform: none !important;
  }

  .carpet-card .card-image {
    width: 100% !important;
    height: 280px !important;
    border-radius: 20px;
  }

  .card-center-bottom {
    width: 280px !important;
    max-width: none;
  }

  /* Slider Dots Navigation */
  .carpets-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
  }

  .carpets-dot {
    width: 13px;
    height: 13px;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='4.5' stroke='url(%23paint0_linear_397_3924)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_397_3924' x1='9.66632' y1='-14.4845' x2='-4.39647' y2='-14.1814' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.06' stop-color='%23CD8F36'/%3E%3Cstop offset='0.24' stop-color='%23FABB61'/%3E%3Cstop offset='0.35' stop-color='%23F5B75D'/%3E%3Cstop offset='0.47' stop-color='%23E7AC54'/%3E%3Cstop offset='0.6' stop-color='%23D09944'/%3E%3Cstop offset='0.74' stop-color='%23B0802E'/%3E%3Cstop offset='0.82' stop-color='%23AB7D2D'/%3E%3Cstop offset='0.89' stop-color='%239F742D'/%3E%3Cstop offset='0.97' stop-color='%238B652C'/%3E%3Cstop offset='1' stop-color='%23805E2C'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
  }

  .carpets-dot.active {
    width: 13px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='5' fill='url(%23paint0_linear_397_3923)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_397_3923' x1='9.66632' y1='-14.4845' x2='-4.39647' y2='-14.1814' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.06' stop-color='%23CD8F36'/%3E%3Cstop offset='0.24' stop-color='%23FABB61'/%3E%3Cstop offset='0.35' stop-color='%23F5B75D'/%3E%3Cstop offset='0.47' stop-color='%23E7AC54'/%3E%3Cstop offset='0.6' stop-color='%23D09944'/%3E%3Cstop offset='0.74' stop-color='%23B0802E'/%3E%3Cstop offset='0.82' stop-color='%23AB7D2D'/%3E%3Cstop offset='0.89' stop-color='%239F742D'/%3E%3Cstop offset='0.97' stop-color='%238B652C'/%3E%3Cstop offset='1' stop-color='%23805E2C'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    border-radius: 0;
  }
}

@media (max-width: 575px) {
  .carpets-section {
    padding: 60px 0;
  }
}

/* Specifications Section */
.specifications-section {
  background-color: #000;
  padding: 100px 0;
  color: #ffffff;
}

.specifications-header {
  text-align: center;
  margin-bottom: 60px;
}

.spec-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
  letter-spacing: normal;
}

.spec-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: normal;
}

.spec-desc {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: #a0a5ab;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #191919; /* Grid line color */
  gap: 1px; /* Line width */
  border: 1px solid #000; /* Outer border */
  border-radius: 12px;
  overflow: hidden;
}

.specifications-item {
  background-color: #191919; /* Cell background */
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition-smooth);
  border: 1px solid #000000;
}

.specifications-item:hover {
  background-color: #111317;
}

.spec-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spec-icon {
  font-size: 1.4rem;
  color: var(--primary-gold);
}

.spec-item-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.spec-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-item-list li {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  position: relative;
  padding-left: 20px;
}

.spec-item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}

/* Responsive Grid for mobile */
@media (max-width: 991px) {
  .specifications-section {
    padding: 80px 0;
  }

  .specifications-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .specifications-item {
    padding: 30px 24px;
  }
}

@media (max-width: 575px) {
  .specifications-section {
    padding: 60px 0;
  }

  .spec-desc {
    font-size: 0.95rem;
  }
}

/* Floor Plans Section */
.floor-plans-section {
  background-color: #ffffff;
  padding: 100px 0;
  color: #111315;
}

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

.floor-plans-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: #111315;
  letter-spacing: 1px;
}

.floor-plans-title span {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: #111315;
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.floor-plan-visual {
  background-color: #2b2e3a;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 850px;
  max-width: 100%;
  height: 591.59px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.floor-plan-visual img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease-in-out;
  filter: blur(8px);
}

.floor-plan-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Accordion */
.plans-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.active-bg-slider {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
  background-image: url("../../assets/images/New-lp/card-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.accordion-item {
  border: 1px solid #e1e4e8;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  background-color: transparent;
  position: relative;
  z-index: 1;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: #111315;
  text-align: left;
  transition: var(--transition-smooth);
}

.accordion-icon {
  font-size: 1.05rem;
  padding: 20px;
  background: black;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
  i {
    color: #fff;
  }
}

.accordion-item.active {
  border-color: transparent;
  /* background-image removed as it is now handled by .active-bg-slider */
}

.accordion-item.active .accordion-header {
  color: #111315;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-body {
  max-height: 200px;
}

.plan-details-table {
  padding: 0 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(17, 19, 21, 0.08);
  padding-top: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.detail-label {
  color: #000;
  font-weight: 400;
  font-size: 1.22rem;
}

.accordion-item.active .detail-label {
  color: #000;
}

.detail-value {
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
}

.btn-know-more {
  background-color: #111315;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border: 1px solid #fff;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-know-more:hover {
  background-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* EMI Calculator */
.emi-calculator-card {
  background-color: #f8f9fa;
  border-radius: 24px;
  padding: 40px;
  border: none;
}

.calculator-header {
  display: none;
}

.calc-group {
  margin-bottom: 32px;
}

.calc-label-row-amount {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amount-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  color: #111315;
  display: flex;
  align-items: center;
  gap: 6px;
}

.loan-amount-input-box {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  transition: box-shadow 0.2s ease;
}

.loan-amount-input-box:focus-within {
  box-shadow: 0 0 0 2px #c5a880;
}

.amount-prefix {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 400;
  color: #111315;
  margin-right: 12px;
}

.loan-amount-input-box input {
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 400;
  color: #111315;
  width: 100%;
  padding: 0;
  outline: none;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}

.calc-label-row label {
  font-size: 1.05rem;
  font-weight: 400;
  color: #111315;
  display: flex;
  align-items: center;
  gap: 6px;
}

.label-and-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  font-size: 0.85rem;
  color: #adb5bd;
  cursor: pointer;
}

.calc-value-display {
  font-size: 1.05rem;
  font-weight: 400;
  color: #111315;
}

.calc-range {
  width: 100%;
  height: 2px;
  background: #000000;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  margin: 15px 0;
}

/* Chrome, Safari, Opera and Edge */
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: url("../../assets/images/New-lp/bar.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Firefox */
.calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: url("../../assets/images/New-lp/bar.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
}

.calc-range::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.range-labels {
  display: none;
}

.tenure-unit-toggle {
  display: flex;
  background-color: #e9ecef;
  border-radius: 6px;
  padding: 3px;
  gap: 2px;
}

.unit-btn {
  background: transparent;
  border: none;
  padding: 5px 12px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.unit-btn.active {
  background: #000000;
  color: #ffffff;
}

.calculator-result {
  display: none;
  background: linear-gradient(135deg, #1e2128 0%, #0d0f12 100%);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.result-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #adb5bd;
}

.result-value {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .floor-plans-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .floor-plans-section {
    padding: 80px 0;
  }

  .floor-plans-title {
    font-size: 2.2rem;
  }

  .floor-plan-visual {
    width: 100%;
    height: auto;
    min-height: 380px;
    padding: 30px;
  }

  .floor-plan-visual img {
    max-height: 320px;
  }
}

@media (max-width: 575px) {
  .floor-plans-section {
    padding: 60px 0;
  }

  .floor-plans-title {
    font-size: 1.8rem;
  }

  .floor-plan-visual {
    width: 100%;
    height: auto;
    min-height: 280px;
    padding: 20px;
    border-radius: 16px;
  }

  .floor-plan-visual img {
    max-height: 240px;
  }

  .accordion-header {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .plan-details-table {
    padding: 0 20px 20px 20px;
  }

  .emi-calculator-card {
    padding: 20px;
    border-radius: 16px;
  }

  .result-value {
    font-size: 1.6rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.faq-section .section-title-new .title-bold,
.faq-section .section-title-new .title-italic {
  color: #111315;
}

.faq-accordion-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #c5a880;
  box-shadow: 0 6px 18px rgba(197, 168, 128, 0.08);
}

.faq-item.active {
  border-color: #c5a880;
  box-shadow: 0 6px 18px rgba(197, 168, 128, 0.08);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  color: #111315;
  line-height: 1.5;
}

.faq-icon {
  font-size: 0.85rem;
  color: #888888;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #c5a880;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 28px 24px 28px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #495057;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
    padding-top: 0;
  }

  .faq-header {
    padding: 18px 20px;
  }

  .faq-content {
    padding: 0 20px 20px 20px;
  }
}
