    :root {
      --gold: #CDB060;
      --gold-light: #E2C97A;
      --gold-dim: rgba(205, 176, 96, 0.15);
      --dark: #0a1a0d;
      --dark-2: #0f2214;
      --dark-3: #162b1a;
      --white: #FFFFFF;
      --off-white: #F7F5EF;
      --cream: #F0EDE4;
      --text-muted: #5c5c5c;
      --text-light: #999;
      --header-h: 72px;
      --radius: 0px;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

      --fs-h1: clamp(1.4rem, 6vw, 3.5rem);
      --fs-h2: clamp(1.4rem, 4.5vw, 2.6rem);
      --fs-h3: clamp(1.2rem, 3.5vw, 1.9rem);
      --fs-h4: clamp(1.15rem, 2.5vw, 1.45rem);
      --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
      --fs-small: 0.82rem;

      --lh-tight: 1.15;
      --lh-base: 1.65;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Quicksand', sans-serif;
      background: var(--white);
      color: var(--white);
      font-size: var(--fs-body);
      line-height: var(--lh-base);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      max-width: 1920px;
      margin: 0 auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button {
      font-family: 'Quicksand', sans-serif;
      cursor: pointer;
      border: none;
      background: none;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      height: var(--header-h);
      background: rgba(10, 26, 13, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(205, 176, 96, 0.15);
      transition: background var(--transition);
      max-width: 1920px;
      margin: 0 auto;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 0 48px;
    }

    .nav-main {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-left: auto;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 24px;
    }

    .nav-link {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      padding: 8px 12px;
      transition: color 0.3s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 14px;
      right: 14px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .nav-link:hover {
      color: var(--gold);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    /*  DROPDOWN  */
    .nav-dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--dark);
      min-width: 160px;
      padding: 10px 0;
      border: 1px solid rgba(205, 176, 96, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 600;
    }

    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-icon {
      margin-left: 5px;
      transition: transform 0.3s ease;
      vertical-align: middle;
    }

    .nav-dropdown:hover .dropdown-icon {
      transform: rotate(180deg);
    }

    .dropdown-item {
      display: block;
      padding: 10px 20px;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
    }

    .dropdown-item:hover {
      background: rgba(205, 176, 96, 0.1);
      color: var(--gold);
      padding-left: 25px;
    }

    .header-logo {
      flex-shrink: 0;
    }

    .nav-cta-wrapper {
      position: relative;
      height: 38px;
      width: 130px;
      overflow: hidden;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s;
    }

    .nav-cta-wrapper.transformed {
      width: 130px;
      background: var(--gold);
    }

    .nav-cta-btn {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    }

    .nav-cta-btn.initial {
      color: var(--gold);
      opacity: 1;
      transform: translateY(0);
    }

    .nav-cta-wrapper.transformed .nav-cta-btn.initial {
      opacity: 0;
      transform: translateY(-100%);
    }

    .nav-cta-btn.active {
      color: var(--dark);
      opacity: 0;
      transform: translateY(100%);
      pointer-events: none;
    }

    .nav-cta-wrapper.transformed .nav-cta-btn.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .header-logo img {
      height: 44px;
      width: auto;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--gold);
      transition: 0.3s;
    }

    .sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 800;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s;
    }

    .sidebar-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 90%;
      max-width: 340px;
      background: var(--dark);
      z-index: 900;
      padding: 32px 0;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(205, 176, 96, 0.2);
      transform: translateX(-100%);
      visibility: hidden;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    }

    .sidebar.open {
      transform: translateX(0);
      visibility: visible;
    }

    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px 28px;
      border-bottom: 1px solid rgba(205, 176, 96, 0.12);
      margin-bottom: 20px;
    }

    .sidebar-logo img {
      height: 38px;
    }

    .sidebar-close {
      width: 34px;
      height: 34px;
      border: 1px solid var(--gold-dim);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1rem;
    }

    .sidebar .nav-link {
      display: block;
      padding: 14px 28px;
      font-size: 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .sidebar.open .nav-link {
      opacity: 1;
      transform: translateX(0);
    }

    .hero {
      min-height: calc(80vh + 60px);
      background: var(--dark);
      position: relative;
      display: flex;
      flex-direction: column;
      padding-top: var(--header-h);
      overflow: hidden;
    }

    .hero-bg-container {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;

    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 42%;
      filter: saturate(0.9) contrast(1.03);
      transform: scale(1.02);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 26, 13, 0.70);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 30px 34px 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 1620px;
      margin: 0 auto;
      width: 100%;
    }

    
     .hero-grid{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero h1 {
      font-size: var(--fs-h1);
      font-weight: 500;
      line-height: var(--lh-tight);
      color: var(--white);
      margin-bottom: 15px;
    }

    .hero-sub {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid rgba(205, 176, 96, 0.45);
      background: rgba(205, 176, 96, 0.08);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 2.5px;

      color: var(--gold);
      margin-bottom: 18px;
      backdrop-filter: blur(4px);
      width: fit-content;
    }

    .hero-desc {
      font-size: clamp(0.9rem, 1.5vw, 1.15rem);
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
      margin-bottom: 24px;
      font-weight: 400;
      letter-spacing: 0.3px;
    }

    .meta {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-bottom: 24px;
      border: 1px solid rgba(205, 176, 96, 0.75);
    }

    .meta-item {
      padding: 18px 20px;
      border-right: 1px solid rgba(205, 176, 96, 0.75);
      border-bottom: 1px solid rgba(205, 176, 96, 0.75);
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .meta-item:nth-child(2n) {
      border-right: none;
    }

    .meta-item:nth-last-child(-n+2) {
      border-bottom: none;
    }

    .meta-value {
      font-size: 0.88rem;
      color: var(--white);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .cta-row {
      display: flex;
      gap: 6px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 10px;
      background: var(--gold);
      background: var(--gold-light);
      color: var(--dark);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-gold:hover {
      background: var(--gold);
      transform: translateY(-1px);
    }

    .form-card {
      background: rgba(10, 26, 13, 0.7);
      /*backdrop-filter: blur(20px);*/
      border: 1px solid rgba(205, 176, 96, 0.25);
      padding: 15px 15px;
      /*box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(205, 176, 96, 0.1);*/
      position: relative;
      overflow: hidden;
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .form-card-title {
      font-size: var(--fs-h3);
      line-height: var(--lh-tight);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 18px;
      text-align: center;
    }


    .field {
      margin-bottom: 12px;
      position: relative;
    }

    .field input,
    .field select {
      width: 100%;
      padding: 13px 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #ffffff;
      font-family: 'Quicksand', sans-serif;
      font-size: 0.82rem;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      letter-spacing: 0.3px;
    }

    .field input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--gold);
      background: rgba(205, 176, 96, 0.04);
    }

    .field select option {
      background: var(--dark);
      color: var(--white);
    }

    .captcha-row {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 12px;
    }

    .captcha-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gold);
      background: rgba(205, 176, 96, 0.08);
      border: 1px solid rgba(205, 176, 96, 0.25);
      padding: 10px 14px;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }

    .captcha-input {
      flex: 1 1 0%;
      width: 100%;
      min-width: 0;
      padding: 10px 14px;
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(205, 176, 96, 0.2);
      color: var(--white);
      font-family: 'Quicksand', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 2px;
      outline: none;
      transition: border-color 0.3s;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .captcha-input:focus {
      border-color: var(--gold);
    }

    .captcha-reload {
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(205, 176, 96, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
      transition: background 0.3s;
    }

    .captcha-reload:hover {
      background: rgba(205, 176, 96, 0.12);
    }

    .btn-submit {
      width: 100%;
      padding: 15px;
      background: var(--gold);
      color: var(--dark);
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-submit:hover:not(:disabled) {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .rera-disclaimer {
      font-size: clamp(0.74rem, 0.68rem + 0.16vw, 0.88rem);
      color: rgba(255, 255, 255, 0.90);
      text-align: center;
      margin-top: 12px;
      line-height: 1.7;
    }

    .form-privacy-link {
      text-align: center;
      margin-top: 8px;
    }

    .form-privacy-link a {
      font-size: clamp(0.72rem, 0.66rem + 0.16vw, 0.86rem);
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: 0.6;
      transition: opacity 0.3s;
    }

    .form-privacy-link a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .field-error {
      font-size: 0.65rem;
      color: #f87171;
      margin-top: 3px;
      display: block;
    }

    .input-err {
      border-color: #f87171 !important;
    }

    /*  SECTION COMMON  */
    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 4px;
      color: #5e4400;
      margin-bottom: 8px;
    }

    .sec-heading {
      font-family: 'Quicksand', sans-serif;
      font-size: var(--fs-h2);
      font-weight: 500;
      line-height: var(--lh-tight);
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Quicksand', sans-serif;
    }

    .section-desc {
      font-size: var(--fs-body);
      color: var(--text-muted);
      line-height: var(--lh-base);
      margin-bottom: 32px;
    }

    .section-desc-light {
      color: rgba(255, 255, 255, 0.6);
    }


    .sec-heading.light {
      color: var(--white);
    }

    .sec-heading.dark {
      color: var(--dark);
    }

    section {
      position: relative;
      width: 100%;
      clear: both;
    }

    .highlights-section {
      background: #f3f0e8;
      padding: 60px 64px;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 24px;
    }

    .highlight-card {
      padding: 12px 12px;
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      gap: 9 px;
      transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
      position: relative;
      overflow: hidden;
      align-items: center;
    }

    .highlight-card:hover {
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
      border-color: rgba(205, 176, 96, 0.3);
    }

    .hi-icon {
      width: 64px;
      height: 64px;
      background: var(--off-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: all 0.4s ease;
      box-shadow: inset 0 0 0 1px rgba(205, 176, 96, 0.1);
      margin-bottom: 8px;
    }

    .highlight-card:hover .hi-icon {
      background: rgba(205, 176, 96, 0.2);
    }

    .highlight-card h3 {
      font-size: var(--fs-h4);
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--dark);
      text-align: center;
      line-height: var(--lh-tight);
    }

    .highlight-card p {
      font-size: var(--fs-small);
      line-height: var(--lh-base);
      color: var(--text-muted);
      font-weight: 400;
      text-align: center;
    }


    .gallery-section {
      background: #fbfaf6;
      padding: clamp(60px, 8vh, 60px) 64px;
      position: relative;
      overflow: visible;
      height: auto;
      min-height: auto;
      max-height: none;
    }

    .gallery-section .sec-tag {
      margin-bottom: 10px;
    }

    .gallery-section .sec-heading {
      margin-bottom: 0;
    }

    .gallery-carousel-wrap {
      position: relative;
      margin-top: 12px;
      overflow: hidden;
      width: 100%;
    }

    .gallery-track {
      display: flex;
      gap: 8px;
      padding-bottom: 6px;
    }

    .gallery-item {
      flex: 0 0 calc(25% - 12px);
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (max-width: 1024px) {
      .gallery-item {
        flex: 0 0 calc(33.33% - 10px);
      }
    }

    @media (max-width: 768px) {
      .gallery-item {
        flex: 0 0 calc(50% - 8px);
      }
    }

    @media (max-width: 480px) {
      .gallery-item {
        flex: 0 0 calc(100% - 0px);
      }
    }

    .gallery-img-wrap {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

    .gallery-img-wrap:hover img {
      transform: scale(1.05);
    }

    .gallery-info {
      padding: 0px 0px 0;
      min-height: 20px;
    }

    .gallery-img-name {
      font-size: var(--fs-small);
      font-weight: 500;
      color: #333;
      line-height: 1.4;
      text-transform: none;
      display: block;
      text-align: center;
    }

    .gallery-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 0 0 auto;
    }

    .gallery-arrows {
      display: flex;
      gap: 6px;
    }

    .gallery-arrow {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(0, 24, 4, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      transition: border-color 0.3s, color 0.3s;
    }

    .gallery-arrow:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.93);
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      transition: opacity 0.2s ease;
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s;
    }

    .lightbox-close:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .lightbox-content {
      max-width: min(92vw, 1320px);
      max-height: 86vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-arrow,
    .fp-modal-arrow {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 50%;
      color: var(--white);
      background: rgba(10, 26, 13, 0.48);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-50%);
      transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
      backdrop-filter: blur(10px);
    }

    .lightbox-arrow:hover,
    .fp-modal-arrow:hover {
      color: var(--gold);
      border-color: rgba(205, 176, 96, 0.85);
      background: rgba(10, 26, 13, 0.72);
      transform: translateY(-50%) scale(1.04);
    }

    .lb-prev,
    .fp-prev {
      left: clamp(18px, 4vw, 48px);
    }

    .lb-next,
    .fp-next {
      right: clamp(18px, 4vw, 48px);
    }

    .floorplan-section {
      background: linear-gradient(180deg, var(--dark-2), #0c1e11);
      padding: 80px 64px;
      overflow: hidden;
      text-align: center;
    }

    .floorplan-filter {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
      flex-wrap: nowrap;
    }

    .filter-btn {
      padding: 8px 14px;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--gold);
      color: var(--dark);
    }

    @media (min-width: 768px) {
      .floorplan-filter {
        gap: 20px;
      }

      .filter-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
      }
    }

    .floorplan-carousel-wrap {
      position: relative;
      margin-top: 24px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .floorplan-slide {
      display: none;
    }

    .floorplan-slide.active {
      display: block;
    }

    .floorplan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 0px;
    }

    .floorplan-card {
      border: 1px solid rgba(205, 176, 96, 0.15);
      cursor: pointer;
      transition: border-color 0.3s, transform 0.3s;
      background: rgba(255, 255, 255, 0.02);
    }

    .floorplan-card.hidden {
      display: none;
    }

    .floorplan-card:hover {
      border-color: rgba(205, 176, 96, 0.5);
    }

    .floorplan-img-wrap {
      aspect-ratio: 514/406;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.03);
    }

    .floorplan-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }



    .floorplan-card h3 {
      padding: 16px 18px;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5;
    }

    .fp-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.93);
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .fp-modal.open {
      display: flex;
    }

    .fp-modal img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
    }

    .fp-modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* --- FLOOR PLAN LEAD MAGNET SECTION --- */
    .floor-plan-section {
      background: var(--white);
      padding: 80px 64px;
      text-align: center;
    }

    .floor-plan-container {
      position: relative;
      max-width: 900px;
      margin: 40px auto 0;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: #faf9f6;
    }

    .blurred-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding: 40px;
      filter: blur(12px);
      opacity: 0.6;
      pointer-events: none;
      user-select: none;
    }

    .dummy-plan {
      background: #fff;
      padding: 24px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .plan-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .plan-details {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: #666;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .dummy-img {
      width: 100%;
      height: 200px;
      background: repeating-linear-gradient(45deg,
          #f0f0f0,
          #f0f0f0 10px,
          #e8e8e8 10px,
          #e8e8e8 20px);
      border-radius: 4px;
    }

    .unlock-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.4);
      z-index: 2;
    }

    .unlock-box {
      background: #fff;
      padding: 40px 50px;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      text-align: center;
      max-width: 450px;
      width: 90%;
      border: 1px solid var(--gold-dim);
      transform: translateY(0);
      transition: transform 0.3s;
    }

    .unlock-box:hover {
      transform: translateY(-5px);
    }

    .unlock-box h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .unlock-box p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .floor-plan-section {
        padding: 60px 24px;
      }

      .blurred-content {
        grid-template-columns: 1fr;
        padding: 20px;
      }

      .unlock-box {
        padding: 30px 20px;
      }
    }

    .amenities-section {
      background: #f6f4ee;
      padding: 60px 64px;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .amenity-card {
      background: var(--white);
      border: 1px solid rgba(0, 24, 4, 0.08);
      position: relative;
      overflow: hidden;
      /* height: 220px; */
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 10px 30px rgba(10, 26, 13, 0.04);
    }

    .amenity-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .amenity-card:hover img {
      transform: scale(1.05);
    }

    .amenity-card h3 {
      position: absolute;
      left: 5px;
      bottom: 5px;
      background: var(--white);
      color: var(--dark);
      padding: 4px 5px 4px 5px;
      margin: 0;
      font-size: 0.8rem;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      z-index: 2;
      letter-spacing: 0.5px;
    }

    .connectivity-section {
      background: #fffdf8;
      padding: 50px 64px;
    }

    .conn-desc {
      font-size: var(--fs-body);
      line-height: 1.5;
      color: var(--text-muted);
      max-width: 640px;
      margin-bottom: 10px;
    }

    .conn-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
    }

    .conn-item {
      padding: 18px;
      background: var(--dark);
      border: 1px solid var(--gold-dim);
      display: flex;
      align-items: center;
      gap: 13px;
      position: relative;
      transition: background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    }

    .conn-item:hover {
      border-color: var(--gold);
      box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
    }

    .conn-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.2px;
      line-height: 1.35;
      flex: 1;
    }

    .conn-dist {
      font-size: 0.84rem;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: 1px;
      margin-left: auto;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(205, 176, 96, 0.12);
      border: 1px solid rgba(205, 176, 96, 0.2);
      white-space: nowrap;
    }

    .testimonials-section {
      background: var(--cream);
      padding: 60px 64px;
    }

    .about-section {
      background: #f7f5ef;
      padding: 60px 64px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
    }

    .about-media {
      overflow: hidden;
      background: var(--cream);
      box-shadow: 0 28px 70px rgba(10, 26, 13, 0.12);
      max-height: 520px;
    }

    .about-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-copy p {
      color: var(--text-muted);
      font-size: var(--fs-body);
      line-height: var(--lh-base);
      margin-top: 8px;
    }

    .about-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 24px;
    }

    .about-points div {
      padding: 8px 10px;
      background: var(--white);
      border: 1px solid rgba(205, 176, 96, 0.2);
      box-shadow: 0 16px 34px rgba(10, 26, 13, 0.055);
    }

    .about-points strong {
      display: block;
      color: var(--dark);
      font-size: var(--fs-h3);
      font-weight: 500;
      line-height: var(--lh-tight);
      margin-bottom: 8px;
    }

    .about-points span {
      display: block;
      color: var(--text-muted);
      font-size: var(--fs-small);
      line-height: var(--lh-base);
    }

    .faq-section {
      background: #0b1c10;
      padding: 60px 64px;
    }

    .faq-section .sec-tag {
      color: var(--gold);
    }

    .faq-section .sec-heading {
      color: var(--white);
      margin-bottom: 38px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 24px auto 0;
    }

    @media (max-width: 900px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(205, 176, 96, 0.15);
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: rgba(205, 176, 96, 0.35);
      background: rgba(255, 255, 255, 0.05);
    }

    .faq-question {
      width: 100%;
      padding: 12px 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      font-family: 'Quicksand', sans-serif;
    }

    .faq-icon {
      color: var(--gold);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
      background: rgba(0, 0, 0, 0.2);
    }

    .faq-item.active .faq-answer {
      max-height: 400px;
      padding: 24px 30px;
    }

    .faq-answer p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid rgba(205, 176, 96, 0.2);
      box-shadow: 0 8px 32px rgba(10, 26, 13, 0.07);
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
      position: relative;
    }

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 24px;
      right: 28px;
      font-size: 5rem;
      line-height: 1;
      color: rgba(205, 176, 96, 0.18);
      pointer-events: none;
    }

    .testimonial-card:hover {
      border-color: rgba(205, 176, 96, 0.45);
      transform: translateY(-6px);
      box-shadow: 0 20px 52px rgba(10, 26, 13, 0.12);
    }

    .stars {
      display: flex;
      gap: 3px;
    }

    .star {
      color: var(--gold);
      font-size: 0.9rem;
    }

    .testimonial-text {
      font-size: var(--fs-body);
      line-height: var(--lh-base);
      color: rgba(0, 0, 0, 0.78);
      font-weight: 400;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 4px;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(205, 176, 96, 0.12);
      border: 1px solid rgba(205, 176, 96, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      font-weight: 600;
      flex-shrink: 0;
    }

    .author-name {
      color: var(--dark);
      font-size: 1rem;
      font-weight: 600;
    }

    .author-role {
      color: var(--text-muted);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .about-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .about-points strong {
      display: block;
      font-size: 1rem;
      color: #7a5f15;
      margin-bottom: 4px;
      font-weight: 700;
    }

    .about-points span {
      font-size: 0.9rem;
      color: #4a4a4a;
      line-height: 1.5;
    }

    .vt-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
    }

    .vt-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: var(--dark);
      border: 1px solid rgba(0, 24, 4, 0.08);
      transition: transform 0.4s, box-shadow 0.4s;
    }

    .vt-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    }

    .vt-card iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .footer {
      background: var(--dark);
      border-top: 1px solid rgba(205, 176, 96, 0.12);
    }


    .footer-bottom {
      padding: 32px 64px;
      border-top: 1px solid rgba(205, 176, 96, 0.08);
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(205, 176, 96, 0.08);
      padding-bottom: 18px;
    }

    .footer-nav a {
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      padding: 6px 18px;
      transition: color 0.3s;
    }

    .footer-nav a:first-child {
      padding-left: 0;
    }

    .footer-nav a:hover {
      color: var(--gold);
    }

    .footer-contact-row {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-contact-item svg {
      color: var(--gold);
    }

    .footer-contact-item a {
      color: inherit;
      transition: color 0.3s;
    }

    .footer-contact-item a:hover {
      color: var(--gold);
    }

    .footer-meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-copy {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .wa-float {
      position: fixed;
      bottom: 114px;
      left: 22px;
      z-index: 400;
      width: 52px;
      height: 52px;
      background: #25D366;
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s;
    }

    .wa-float:hover {
      transform: scale(1.1);
    }

    .enquire-float {
      position: fixed;
      bottom: 55px;
      left: 22px;
      z-index: 400;
      width: 45px;
      height: 45px;
      background: var(--gold-light);
      color: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(205, 176, 96, 0.4);
      transition: transform 0.3s, background 0.3s;
    }

    .enquire-float:hover {
      background: var(--gold-light);
      transform: scale(1.1);
    }

    @media (max-width: 1100px) {
      .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .conn-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 901px) {
      .header-inner {
        padding: 0 16px;
      }

      .nav-cta-wrapper {
        display: none;
      }

      .nav-main {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .header-logo {
        flex: 1;
      }

      .hero-inner {
        padding: 40px 24px 48px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .hero-text {
        text-align: center;
      }

      .hero-sub {
        margin-left: auto;
        margin-right: auto;
      }

      .cta-row {
        justify-content: center;
      }

      .sec-heading,
      .section-desc,
      .conn-desc,
      .sec-tag {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .sec-tag {
        display: flex;
        justify-content: center;
      }

      .highlights-section,
      .gallery-section,
      .floorplan-section,
      .amenities-section,
      .connectivity-section,
      .testimonials-section,
      .about-section,
      .faq-section {
        padding: 48px 24px;
      }

      .section-desc {
        margin-bottom: 20px;
      }

      .floorplan-grid,
      .testimonials-grid,
      .about-grid,
      .vt-grid {
        grid-template-columns: 1fr;
      }

      .about-points,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .conn-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-section {
        height: auto;
        max-height: none;
      }

      .gallery-img-wrap {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        min-height: unset;
      }

      .gallery-img-wrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }

      .footer-bottom {
        padding: 24px;
      }

      .captcha-label {
        font-size: 0.7rem;
        padding: 10px;
      }

      .captcha-input {
        padding: 10px;
      }

      .lightbox-arrow,
      .fp-modal-arrow {
        width: 46px;
        height: 46px;
      }

    }

    @media (max-width: 640px) {

      .highlights-grid,
      .floorplan-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .conn-grid {
        grid-template-columns: 1fr;
      }

      .footer-contact-row {
        flex-direction: column;
        gap: 12px;
      }

      .footer-meta-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-row {
        flex-direction: row;
        align-items: flex-start;
      }

      .captcha-row {
        gap: 5px;
      }

      .captcha-label {
        padding: 8px;
        letter-spacing: 0;
      }

      .captcha-input {
        padding: 8px;
        min-width: 0;
        flex: 1;
      }

      .captcha-reload {
        width: 36px;
        height: 36px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        min-height: 100vh;
      }

      .about-copy p {
        text-align: justify;
      }

      .hero-inner {
        padding: 11px 14px 30px;
      }

      .hero-sub {
        font-size: 0.55rem;
        padding: 5px 11px;
        letter-spacing: 1.8px;
      }

      .meta {
        grid-template-columns: repeat(2, 1fr);
      }

      .meta-item {
        border-right: 1px solid rgba(205, 176, 96, 0.75);
        border-bottom: 1px solid rgba(205, 176, 96, 0.75);
        padding: 6px 4px;
      }

      .meta-item:nth-child(2n) {
        border-right: none;
      }

      .meta-item:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .cta-row {
        width: 100%;
      }

      .btn-submit {
        justify-content: center;
        padding: 6px 20px;
      }

      .sec-heading {
        margin-bottom: 12px;
      }

      .section-desc {
        margin-bottom: 6px;
      }

      .highlights-section,
      .gallery-section,
      .floorplan-section,
      .amenities-section,
      .connectivity-section,
      .testimonials-section,
      .about-section,
      .faq-section {
        padding: 25px 5px;
      }

      .amenities-grid,
      .conn-grid,
      .testimonials-grid,
      .about-grid,
      .about-points,
      .faq-grid,
      .floorplan-grid {
        grid-template-columns: 1fr;
      }

      .gallery-controls {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
      }

      .captcha-row {
        gap: 4px;
        flex-wrap: wrap;
      }

      .captcha-label {
        flex: 1 1 calc(100% - 44px);
        min-width: 0;
        font-size: 0.78rem;
        padding: 8px 10px;
        white-space: normal;
        text-align: center;
      }

      .captcha-input {
        flex: 1 0 100%;
        width: 100%;
        min-width: 0;
        padding: 8px 6px;
        font-size: 0.85rem;
        letter-spacing: 2px;
      }

      .sec-heading {
        margin-bottom: 10px;
      }

      /*.enquire-float {*/
      /*  width: 46px;*/
      /*  height: 46px;*/
      /*  bottom: 74px;*/
      /*}*/

      /*.wa-float {*/
      /*  width: 46px;*/
      /*  height: 46px;*/
      /*  bottom: 74px;*/
      /*}*/

      .sidebar-header {
        padding: 0 18px 18px;
      }

      .gallery-section {
        padding: 20px 5px;
      }

      .conn-item {
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .conn-dist {
        margin-left: 0;
      }

      .floorplan-img-wrap {
        aspect-ratio: 4/3;
      }

      .floorplan-card h3 {
        padding: 14px 16px;
        font-size: 0.8rem;
        font-weight: 700;
      }
    }

    @media (max-width: 360px) {
      .sec-heading {
        font-size: 1.2rem;
      }
    }

    .btn-gold {
      font-size: 0.7rem;
    }
.video-section {
      padding: 0;
      background: var(--dark);
      overflow: hidden;
    }

    .video-container {
      width: 100%;
      aspect-ratio: 16/9;
      max-height: 80vh;
      max-width: 1920px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .video-container iframe,
    .video-container #player {
      width: 100%;
      height: 100%;
      border: none;
    }

    .yt-overlay {
      position: absolute;
      z-index: 2;
      pointer-events: none;
    }

    .yt-overlay-top {
      top: 0;
      left: 0;
      right: 0;
      height: 64px;
      background: linear-gradient(to bottom, var(--dark) 60%, transparent);
    }

    .yt-overlay-bottom {
      bottom: 0;
      left: 0;
      right: 0;
      height: 56px;
      background: linear-gradient(to top, var(--dark) 40%, transparent);
    }

    .yt-overlay-left {
      top: 0;
      bottom: 0;
      left: 0;
      width: 2px;
      background: var(--dark);
    }

    .yt-overlay-right {
      top: 0;
      bottom: 0;
      right: 0;
      width: 72px;
      background: linear-gradient(to left, var(--dark) 30%, transparent);
    }
    

    .sec-cta {
      padding-top: 10px;
    }

    /*  UNIT SHOWCASE SECTION  */
    .unit-showcase-section {
      padding: 50px 40px;
      background: var(--white);
    }

    .showcase-header {
      text-align: center;
      margin-bottom: 24px;
      margin-left: auto;
      margin-right: auto;
    }

    .showcase-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin: 0 auto;
    }

    @media (max-width: 1200px) {
      .showcase-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .showcase-card {
      flex: 1;
      background: var(--off-white);
      border: 1px solid rgba(205, 176, 96, 0.15);
      padding: 6px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
        box-shadow: 0 20px 52px rgba(10, 26, 13, 0.12);
      overflow: hidden;
    }


    .showcase-img {
      width: 100%;
      /*aspect-ratio: 16/10;*/
      border-radius: 10px;
      overflow: hidden;
    }

    .showcase-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
    }

    /* Showcase Carousel CSS */
    .showcase-carousel {
      position: relative;
    }

    .showcase-carousel-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .showcase-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      color: var(--white);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background 0.3s ease, transform 0.3s ease;
      z-index: 5;
      opacity: 1;
      /* Always visible */
    }

    .showcase-nav:hover {
      background: rgba(205, 176, 96, 0.8);
      transform: translateY(-50%) scale(1.1);
    }

    .showcase-prev {
      left: 10px;
    }

    .showcase-next {
      right: 10px;
    }

    .showcase-content {
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex-grow: 1;
    }

    .showcase-title {
      font-size: var(--fs-h4);
      color: var(--dark);
      margin-bottom: 6px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .showcase-link {
      display: inline-block;
      font-size: 0.9rem;
      color: var(--gold);
      text-decoration: underline;
      margin-bottom: 24px;
      font-weight: 500;
      transition: color 0.3s;
    }

    .showcase-link:hover {
      color: var(--gold-light);
    }

    .showcase-text {
      font-size: var(--fs-body);
      color: var(--text-muted);
      margin-bottom: 10px;
      line-height: 1.6;
      max-width: 512px;
    }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      background: #25D366;
      color: white;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background 0.3s, transform 0.2s;
      border-radius: 4px;
    }

    .btn-wa:hover {
      background: #128C7E;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .btn-wa svg {
      transition: transform 0.3s;
    }

    .btn-wa:hover svg {
      transform: scale(1.1) rotate(5deg);
    }

    @media (max-width: 1024px) {
      .unit-showcase-section {
        padding: 15px 10px;
      }

      .showcase-container {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .showcase-content {
        padding: 10px 5px;
      }
    }

    .footer-bottom p {
      font-size: 15px;

    }

    .tata .tata-title,
    .tata .tata-text {
      font-weight: normal !important;
      color: white !important;
    }

    .vka-loader-class-main {
      z-index: 999999;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      position: fixed;
      top: 0;
      left: 0;
      display: none;
    }

    .vka-loader-class-sub {
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
      display: flex;
    }

    .vka-loader-class {
      background-color: white;
      padding: 10px;
      display: inline-block;
      text-align: center;
    }

    .resize-none {
      resize: none;
    }

    .vka-captcha-image {
      border: 1px solid gray;
      height: 35px;
    }

    .vka-captcha-input {
      border: 1px solid gray;
      height: 35px;
      width: 150px;
      text-align: center;
      border-radius: 0;
    }

    .vka-cursor-pointer {
      cursor: pointer;
    }

    .border-bottom {
      border-bottom: 1px solid rgba(205, 176, 96, 0.08);
      margin-top: 15px;
      margin-bottom: 15px;
    }

    .vka-captcha-error {
      position: absolute;
      left: 0;
      top: 100%;
      margin-top: 2px;
    }

    .vka-line-height-1-0 {
      line-height: 1.0;
    }

    .w-70p {
      width: 70px !important;
    }

    .text-danger {
      color: red !important;
    }

    .border-1p-red {
      border: 2px solid red !important;
    }

    .d-flex {
      display: flex;
    }

    .align-items-center {
      align-items: center;
    }

    .justify-content-start {
      justify-content: start;
    }

    .me-10p {
      margin-right: 10px;
    }

    .w-100p {
      width: 100px;
    }

    .w-35p {
      width: 35px;
    }

    .h-35p {
      height: 35px;
    }

    .mb-5p {
      margin-bottom: 5px;
    }

    .position-relative {
      position: relative;
    }

    .d-inline-block {
      display: inline-block;
    }

    .w-100 {
      width: 100%;
    }

    .text-center {
      text-align: center;
    }

    .vka-captcha-error {
      position: absolute;
      left: 0;
      top: 100%;
      margin-top: 2px;
    }

    .mb-40p {
      margin-bottom: 40px;
    }

    .vkahbd {
      display: none;
      color: var(--dark);
      font-size: 1.10rem;
      font-weight: 800;
      position: fixed;
      z-index: 999;
      width: 100%;
      bottom: 0;
      text-align: center;
      background: var(--gold);
      padding: 10px;
    }

    @media (max-width: 767px) {
      .vkahbd {
        display: block;
      }
    }



    /* --- FLOOR PLAN BLUR GLASS EFFECT --- */
    .floorplan-img-wrap.blur-glass-effect {
      position: relative;
      cursor: pointer;
    }

    .floorplan-img-wrap.blur-glass-effect img {
      filter: blur(8px) brightness(0.6);
      transform: scale(1.1);
      /* Prevent blur edges from showing */
      transition: all 0.4s ease;
    }

    .floorplan-card:hover .floorplan-img-wrap.blur-glass-effect img {
      filter: blur(5px) brightness(0.4);
      transform: scale(1.15);
    }

    .floorplan-lock-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
      pointer-events: none;
    }

    .floorplan-lock-overlay svg {
      width: 42px;
      height: 42px;
      color: var(--gold);
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
      transition: transform 0.3s;
    }

    .floorplan-lock-overlay span {
      background: var(--gold);
      color: var(--dark);
      padding: 6px 12px;
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s;
    }

    .floorplan-card:hover .floorplan-lock-overlay svg {
      transform: translateY(-5px);
    }

    .floorplan-card:hover .floorplan-lock-overlay span {
      transform: translateY(-3px);
    }

    /* --- SCROLL TO TOP BUTTON --- */
    #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--gold);
      color: var(--dark);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #scrollTopBtn.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    #scrollTopBtn:hover {
      background: var(--white);
      color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    @media (max-width: 768px) {
      #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
      }

      #scrollTopBtn svg {
        width: 20px;
        height: 20px;
      }
    }

    /* --- CONFIGURATION MODAL --- */
    .config-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .config-modal.open {
      opacity: 1;
      visibility: visible;
    }

    .config-modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(4, 12, 6, 0.93);
      backdrop-filter: blur(10px);
    }

    .config-modal-content {
      position: relative;
      width: 90%;
      max-width: 900px;
      max-height: 100vh;
      background: #0f2214;
      border: 1px solid rgba(205, 176, 96, 0.25);
      border-radius: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: translateY(24px) scale(0.97);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(205, 176, 96, 0.08);
    }

    .config-modal-content.compact {
      max-width: 1000px;
    }

    .config-modal.open .config-modal-content {
      transform: translateY(0) scale(1);
    }


    .config-modal-close {
      position: absolute;
      top: 4px;
      right: 4px;
      background: none;
      border: 1px solid rgba(205, 176, 96, 0.25);
      color: rgba(205, 176, 96, 0.6);
      width: 30px;
      height: 30px;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: color 0.25s, border-color 0.25s, background 0.25s;
    }

    .config-modal-close:hover {
      color: var(--gold);
      border-color: var(--gold);
      background: rgba(205, 176, 96, 0.08);
    }


    .config-modal-header {
      padding: 28px 32px 0;
      text-align: center;
      flex-shrink: 0;
      background: #0f2214;
    }

    .config-modal-header-rule {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(205, 176, 96, 0.5), transparent);
      margin: 10px 0;
    }

    .config-modal-header-inner {
      padding: 8px 0 4px;
    }

    .config-modal-eyebrow {

      font-size: 9px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
      opacity: 0.8;
    }

    .config-modal-title {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: clamp(1.3rem, 3.5vw, 2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: 1px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .config-modal-subtitle {

      font-size: 11px;
      color: rgba(247, 245, 239, 0.45);
      letter-spacing: 0.5px;
      line-height: 1.6;
    }

    /* TAB SWITCHER */
    .config-tab-switcher {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 14px 0 18px;
    }

    .config-tab-btn {
      background: none;
      border: none;

      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(205, 176, 96, 0.45);
      cursor: pointer;
      padding: 6px 14px;
      border-bottom: 1px solid transparent;
      transition: color 0.25s, border-color 0.25s;
      position: relative;
    }

    .config-tab-btn.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    .config-tab-btn:hover {
      color: var(--gold-light);
    }

    .config-tab-divider {
      color: rgba(205, 176, 96, 0.25);
      font-size: 18px;
      line-height: 1;
    }

    /* BODY */
    .config-modal-body {
      padding: 0 20px 12px;
      overflow-y: auto;
      flex: 1;
      background: #0f2214;
    }

    .config-tab-content {
      display: none;
      animation: fadeIn 0.35s ease;
    }

    .config-tab-content.active {
      display: block;
    }

    /* GRID */
    .compact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    /* INDIVIDUAL CARD */
    .config-card {
      background: rgba(10, 26, 13, 0.6);
      border: 1px solid rgba(205, 176, 96, 0.15);
      border-radius: 0;
      padding: 0;
      transition: border-color 0.3s ease, background 0.3s ease;
    }

    .config-card:hover {
      border-color: rgba(205, 176, 96, 0.45);
      background: rgba(10, 26, 13, 0.85);
    }

    /* CARD HEADER — hero super area zone */
    .config-card-header {
      padding: 18px 16px 14px;
      text-align: center;
    }

    .config-card-eyebrow {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;  
    }

    .config-card-rule {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(205, 176, 96, 0.4), transparent);
      margin: 8px 0;
    }

    .config-card-rule--thin {
      background: rgba(205, 176, 96, 0.12);
      margin: 10px 0;
    }

    /* SUPER AREA HERO */
    .config-card-super-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 6px 0;
    }

    .super-area-value {

      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      letter-spacing: -1px;
    }

    .super-area-unit {

      font-size: 9px;
      font-weight: 600;
      letter-spacing: 3px;
      color: rgba(226, 201, 122, 0.7);
      margin-top: 2px;
    }

    .super-area-label {

      font-size: 7.5px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(247, 245, 239, 0.3);
      margin-top: 4px;
    }

    /* CARD BODY */
    .config-card-body {
      padding: 0 16px 16px;
    }

    /* ROOM ROW */
    .config-room-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
      padding: 6px 0;
    }

    .config-room-item {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(247, 245, 239, 0.55);
      white-space: nowrap;
    }

    .config-room-item + .config-room-item::before {
      content: "·";
      margin-right: 6px;
      color: rgba(205, 176, 96, 0.3);
    }

    /* SPECS GRID */
    .specs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
      margin-top: 0;
    }

    .spec-item {
      display: flex;
      flex-direction: column;
      background: rgba(10, 26, 13, 0.5);
      padding: 7px 8px;
      border-radius: 0;
      border: 1px solid rgba(205, 176, 96, 0.08);
      border-left: 2px solid rgba(205, 176, 96, 0.18);
    }

    .spec-item.highlight {
      background: rgba(205, 176, 96, 0.07);
      border-color: rgba(205, 176, 96, 0.2);
      border-left-color: var(--gold);
    }

    .spec-label {

      font-size: 8px;
      font-weight: 500;
      color: rgba(247, 245, 239, 0.9);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 3px;
    }

    .spec-value {

      font-size: 11px;
      color: rgba(247, 245, 239, 0.85);
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .spec-item.highlight .spec-value {
      color: var(--gold-light);
      font-size: 12px;
    }

    /* FOOTER */
    .config-modal-footer {
      padding: 16px 28px;
      background: rgba(10, 26, 13, 0.8);
      border-top: 1px solid rgba(205, 176, 96, 0.15);
      text-align: center;
      flex-shrink: 0;
    }

    .config-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .compact-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .config-modal-content {
        width: 98%;
        padding: 0;
      }

      .config-modal-header {
        padding: 20px 16px 0;
      }

      .config-modal-body {
        padding: 0 8px 10px;
      }

      .compact-grid {
        grid-template-columns: 1fr;
      }

      .config-card-header {
        padding: 4px 5px 4px;
      }

      .config-card-body {
        padding: 0 6px 6px;
      }

      .config-modal-footer {
        padding: 5px;
      }

      .super-area-value {
        font-size: 2rem;
      }
    }
    
    

.video-section{
    width:100%;
    max-width:1900px;
    margin:60px auto;
    padding:20px;
    box-sizing:border-box;
}


.video-box{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 15px 50px rgba(0,0,0,.12);
    padding:12px;
}

.video-box iframe{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:14px;
}

@media(max-width:768px){
    .video-section{
        padding:10px;
        margin:20px auto;
    }

    .video-box{
        padding:3px;
        border-radius:14px;
    }

    .video-box iframe{
        border-radius:10px;
    }
}

