    :root {
      --gold: #C8973A;
      --gold-light: #E8BA65;
      --gold-dark: #9A6F22;
      --deep-blue: #1A2744;
      --midnight: #0D1B35;
      --cream: #F9F4EC;
      --off-white: #FAF7F2;
      --charcoal: #2C2C2C;
      --text-dark: #1A1208;
      --border-gold: rgba(200, 151, 58, 0.35);
    }

    * {
      margin: 0;
      padding: 0;
      letter-spacing: 0.5px;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Raleway', sans-serif;
      background: #0A0A0A;
      color: #fff;
      overflow-x: hidden
    }

    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: #0D1B35
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px
    }


    /* NAVBAR */
    .nav-logo {
      width: 140px;
    }

    .navbar-imperial {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 14px 0;
      background: transparent;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-gold);
      transition: all .4s
    }

    .navbar-imperial.scrolled {
      padding: 9px 0;
      background: rgba(13, 27, 53, 0.99)
    }

    .brand-title {
      font-family: 'Raleway', sans-serif;
      font-size: .58rem;
      letter-spacing: .3em;
      color: var(--gold);
      text-transform: uppercase;
      line-height: 1
    }

    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: .04em
    }

    .brand-sub {
      font-family: 'Raleway', sans-serif;
      font-size: .48rem;
      letter-spacing: .22em;
      color: var(--gold);
      text-transform: uppercase
    }

    .nav-link-i {
      font-family: 'Raleway', sans-serif;
      font-size: .75rem;
      /*letter-spacing: .18em;*/
      color: rgba(255, 255, 255, .85) !important;
      text-transform: uppercase;
      padding: 7px 8px !important;
      transition: color .3s;
      position: relative;
      text-decoration: none;
      font-weight: 500;
    }

    .nav-link-i::after {
      content: '';
      position: absolute;
      bottom: 3px;
      left: 13px;
      right: 13px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform .3s
    }

    .nav-link-i:hover {
      color: var(--gold) !important
    }

    .nav-link-i:hover::after {
      transform: scaleX(1)
    }

    .btn-enquire-n {
      font-family: 'Raleway',sans-serif !important;
      font-size: .78rem !important;
      letter-spacing: .18em !important;
      background: var(--gold) !important;
      color: #fff !important;
      border: none !important;
      padding: 9px 20px !important;
      text-transform: uppercase !important;
      clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%) !important;
      transition: background .3s !important
    }

    .btn-enquire-n:hover {
      background: var(--gold-dark) !important
    }

    /* ===== CONTACT POPUP MODAL – FULLY RESPONSIVE ===== */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 20, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s ease, visibility .35s ease;
      overflow-y: auto;
    }
    .popup-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    input::placeholder{
        color:#00000094 !important;
    }
    textarea::placeholder{
        color:#00000094 !important;
    }
    .popup-box {
      background: #fff;
      border: 1px solid var(--border-gold);
      width: 100%;
      max-width: 540px;
      padding: clamp(28px, 5vw, 48px) clamp(20px, 5vw, 44px) clamp(24px, 4vw, 40px);
      position: relative;
      transform: translateY(30px) scale(.97);
      transition: transform .38s cubic-bezier(.22,.72,.35,1);
      box-shadow: 0 30px 90px rgba(0,0,0,.65), 0 0 0 1px rgba(200,151,58,.1);
      margin: auto;
    }
    .popup-overlay.active .popup-box {
      transform: translateY(0) scale(1);
    }
    .popup-close {
      position: absolute;
      top: 12px;
      right: 16px;
      background: rgb(200 151 58);
      border: 1px solid rgba(200,151,58,.25);
      color: rgba(255,255,255,.6);
      font-size: 1.2rem;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      line-height: 1;
      transition: background .25s, color .25s;
      border-radius: 0;
      flex-shrink: 0;
    }
    .popup-close:hover {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
    }
    .popup-tag {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(.48rem, 1.2vw, .68rem);
      font-weight: 600; 
      letter-spacing: .28em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 8px;
    }  
    .popup-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 400;
      color: #c8973a;
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .popup-title em { color: var(--gold); font-style: italic; }
    .popup-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 12px 0 20px;
    }
    .popup-divider span { flex:1; height:1px; background:var(--gold); opacity:.35; }
    .popup-divider i { color: var(--gold); font-size: .55rem; }

    /* Two-column grid for name+phone on desktop */
    .popup-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 16px;
    }
    .popup-grid .popup-field { grid-column: span 1; }
    .popup-field-full { grid-column: span 2; }

    .popup-field { margin-bottom: 14px; }
    .p-lbl {
      font-family: 'Raleway', sans-serif;
      font-size: .56rem;
      letter-spacing: .18em;
      color: #000;
      text-transform: uppercase;
      display: block;
      margin-bottom: 6px;
    }
    .p-inp {
      width: 100%;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(200,151,58,.25);
      color: #000;
      font-family: sans-serif;
      font-size: clamp(.82rem, 2vw, .9rem);
      padding: 11px 14px;
      outline: none;
      transition: border-color .25s, background .25s;
      -webkit-appearance: none;
      appearance: none;
    }
    .p-inp:focus {
      border-color: var(--gold);
      background: rgba(200,151,58,.06);
    }
    .p-inp::placeholder { color: rgba(255,255,255,.26); }
    textarea.p-inp { resize: none; }

    .popup-submit {
      width: fit-content;
      font-family: 'Raleway', sans-serif;
      font-size: clamp(.6rem, 1.5vw, .7rem);
      letter-spacing: .2em;
      text-transform: uppercase;
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 14px 20px;
      cursor: pointer;
      clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
      transition: background .3s, transform .2s;
      margin-top: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .popup-submit:hover { background: var(--gold-dark); }
    .popup-submit:active { transform: scale(.98); }
    .popup-note {
      font-family: 'Raleway', sans-serif;
      font-size: .67rem;
      color: #000;
      text-align: center;
      margin-top: 12px;
    }
    
    @media (max-width: 1205px) {
      .unlock-price-btn{
        padding: 8px 10px !important;
        font-size: 0.65rem !important;
      }  
      .loc-txt {
          font-size: 13px !important;
      }
      .loc-itm{
          padding: 8px 0px !important;
      }
      .nearby-land span{
          font-size: 0.68rem !important;
      }
    }
    /* ── Tablet (≤ 768px) ── */
    @media (max-width: 768px) {
      .hero-section {
        height: 116vh !important;  
      }   
        .loc-txt {
          font-size: 0.95rem !important;
      }
      .nearby-land span{
          font-size: 0.95rem !important;
      }
      .unlock-price-btn{
        padding: 8px 8px !important;
        font-size: 0.65rem !important;
      }   

      .popup-overlay { padding: 12px; align-items: flex-end; }
      .popup-box {
        max-width: 100%;
        border-radius: 0;
        border-bottom: none;
        transform: translateY(60px) scale(1);
      }
      .popup-overlay.active .popup-box { transform: translateY(0) scale(1); }
      .popup-grid { grid-template-columns: 1fr; }
      .popup-field-full { grid-column: span 1; }
      .features-content{
        display: grid;
        grid-template-columns: auto !important;
        gap: 0.9rem;
      }
    }

    /* ── Mobile (≤ 480px) ── */
    @media (max-width: 480px) {
      .popup-overlay { padding: 0; align-items: flex-end; }
      .popup-box {
        padding: 32px 18px 28px;
        max-height: 92vh;
        overflow-y: auto;
      }
      .popup-title { font-size: 1.45rem; }
      .popup-submit { padding: 13px 16px; clip-path: none; }
      .features-content{
        display: grid;
        grid-template-columns: auto !important;
        gap: 0.9rem;
      }
    }

    /* ── Very small screens (≤ 360px) ── */
    @media (max-width: 360px) {
      .popup-box { padding: 28px 14px 24px; }
      .popup-title { font-size: 1.3rem; }
      .p-inp { padding: 10px 12px; font-size: .8rem; }
    }

    .mobile-toggle-btn {
      border: 1px solid var(--border-gold);
      padding: 7px 10px;
      background: transparent;
      cursor: pointer
    }

    .mobile-toggle-btn i {
      color: var(--gold);
      font-size: 1.2rem
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 73px;
      left: 0;
      right: 0;
      z-index: 9998;
      background: rgba(13, 27, 53, .98);
      border-bottom: 1px solid var(--border-gold);
      flex-direction: column
    }

    .mobile-menu.open {
      display: flex
    }

    .mob-link {
      font-family: 'Raleway', sans-serif;
      font-size: .68rem;
      letter-spacing: .18em;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
      text-transform: uppercase;
      padding: 13px 28px;
      border-bottom: 1px solid rgba(200, 151, 58, .12);
      transition: color .3s, background .3s
    }

    .mob-link:hover {
      color: var(--gold);
      background: rgba(200, 151, 58, .05)
    }

    /* GOLD DIVIDER */
    .gold-div {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 16px 0
    }

    .gold-div .gl {
      flex: 1;
      max-width: 70px;
      height: 1px;
      background: var(--gold);
      opacity: .5
    }

    .gold-div .go {
      color: var(--gold);
      font-size: .9rem
    }

    .gold-div.left {
      justify-content: flex-start;
      margin-left: 0
    }

    .gold-div.left .gl:first-child {
      max-width: 60px
    }

    /* HERO */
    .hero-section {
      height: 100vh;
      min-height: 680px;
      position: relative;
      overflow: hidden
    }

    /* HERO CAROUSEL */
    .hero-carousel {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      /* Removed zoom effect */
      transition: opacity 1.2s ease;
    }

    .hero-slide.active {
      opacity: 1;
      /* Removed zoom effect */
    }

    .hero-carousel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgb(13 27 53 / 26%) 0%, rgb(13 27 53 / 13%) 55%, rgb(8 5 2 / 39%) 100%);
      z-index: 1;
    }

    .hero-dots {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 10px;
    }

    

    .hero-dot.active {
      background: var(--gold);
      transform: scale(1.2);
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      z-index: 4;
      background: rgba(13,27,53,0.7);
      border: none;
      color: var(--gold);
      font-size: 1.2rem;
      width: 44px; 
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      cursor: pointer;
      transform: translateY(-50%);
      transition: background 0.2s, color 0.2s;
    }
    .hero-arrow:hover {
      background: var(--gold);
      color: #fff;
    }
    .hero-arrow-left {
      left: 24px;
    }
    .hero-arrow-right {
      right: 24px;
    }
    @media (max-width: 767px) {
      .hero-arrow {
        font-size: 1.6rem;
        width: 36px;
        height: 36px;
      }
      .hero-arrow-left { left: 10px; }
      .hero-arrow-right { right: 10px; }
    }

    .hero-badge {
      font-family: 'Raleway', sans-serif;
      font-size: .58rem;
      letter-spacing: .28em;
      color: var(--gold);
      text-transform: uppercase;
      border: 1px solid var(--border-gold);
      display: inline-block;
      padding: 5px 18px;
      margin-bottom: 18px;
      animation: fadeInUp .8s .2s both
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.05;
      letter-spacing: .03em;
      animation: fadeInUp .8s .38s both
    }

    .hero-title em {
      color: var(--gold)
    }

    .hero-tagline {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(.6rem, 1.1vw, .78rem);
      letter-spacing: .3em;
      color: rgba(255, 255, 255, .65);
      text-transform: uppercase;
      margin-top: 10px;
      animation: fadeInUp .8s .52s both
    }

    .hero-rule {
      width: 55px;
      height: 1px;
      background: var(--gold);
      margin: 20px 0;
      animation: fadeInUp .8s .6s both
    }

    .hero-desc {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, .72);
      font-weight: 400;
      line-height: 1.75;
      max-width: 440px;
      animation: fadeInUp .8s .68s both
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 30px;
      animation: fadeInUp .8s .82s both
    }

    .btn-gold {
      font-family: 'Raleway', sans-serif;
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: var(--gold);
      color: #fff !important;
      border: none;
      padding: 13px 28px;
      clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
      cursor: pointer;
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px
    }

    .btn-gold:hover {
      background: var(--gold-dark)
    }

    .btn-outline-g {
      font-family: 'Raleway', sans-serif;
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: transparent;
      color: var(--gold) !important;
      border: 1px solid var(--gold);
      padding: 13px 28px;
      clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
      cursor: pointer;
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      font-weight: 900;
      gap: 7px
    }

    .btn-outline-g:hover {
      background: var(--gold);
      color: #fff !important
    }

    /* HERO STATS */
    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: rgba(13, 27, 53, .93);
      backdrop-filter: blur(8px);
      border-top: 1px solid var(--border-gold);
      padding: 18px 0
    }

    .stat-num {
      font-family: auto;
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1
    }

    .stat-lbl {
      font-family: 'Raleway', sans-serif;
      font-size: .75rem;
      letter-spacing: .18em;
      color: rgb(255 255 255 / 81%);
      ;
      text-transform: uppercase;
      margin-top: 4px
    }

    .stat-div {
      width: 1px;
      height: 38px;
      background: var(--border-gold)
    }

    /* SECTIONS */
    .section-tag {
      font-family: 'Raleway', sans-serif;
      font-size: .9rem;
      font-weight: 550;
      letter-spacing: .32em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 10px
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 2.5vw, 3.9rem);
      font-weight: 400;
      color: #fff;
      letter-spacing: .04em;
      line-height: 1.1
    }

    .section-title em {
      color: var(--gold);
      font-style: italic
    }

    .section-title.dark {
      color: var(--text-dark)
    }

    .section-body {
      font-family: 'Raleway', sans-serif;
      font-size: .99rem;
      color: #ffffffab;
      font-weight: 400;
      line-height: 1.8
    }

    .section-body.dark {
      color: rgba(28, 18, 6, .62)
    }

    /* ABOUT */
    .about-section {
      background: var(--midnight);
      padding: 95px 0;
    }
    
    .about-img {
      width: 100%;
      border: 1px solid var(--border-gold);
      display: block;
      position: relative;
      z-index: 1
    }

    .about-img-frame {
      position: absolute;
      top: -11px;
      left: -11px;
      right: 11px;
      bottom: 11px;
      border: 1px solid var(--border-gold);
      pointer-events: none;
      z-index: 0
    }

    .hl-card {
      background: rgba(200, 151, 58, .07);
      border: 1px solid var(--border-gold);
      padding: 22px 18px;
      text-align: center;
      transition: background .3s;
      height: 100%
    }

    .hl-card:hover {
      background: rgba(200, 151, 58, .14)
    }

    .hl-icon {
      font-size: 1.7rem;
      color: var(--gold);
      margin-bottom: 10px
    }

    .hl-title {
      font-family: 'Raleway', sans-serif;
      font-size: .67rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 6px
    }

    .hl-text {
      font-family: 'Raleway', sans-serif;
      font-size: .82rem;
      color: rgba(255, 255, 255, .5)
    }

    /* FEATURES */
    .features-section {
      background: linear-gradient(160deg, #0D1220 0%, #1A2744 100%);
      padding: 95px 0
    }
    .features-section-head{
      font-size: clamp(1.9rem, 2.9vw, 3.9rem);
    }
    .features-content{
      display: grid;
      grid-template-columns: auto auto;
      gap: 0.9rem;
    }
    .feat-item {
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
      align-items: flex-start
    }

    .feat-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(200, 151, 58, .08);
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%)
    }

    .feat-icon i {
      font-size: 1.25rem;
      color: var(--gold)
    }

    .feat-title {
      font-family: sans-serif;
      font-size: 1rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 5px
    }

    .feat-desc {
      font-family: 'Raleway', sans-serif;
      font-size: .9rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.65
    }

    /* ADDITIONAL HIGHLIGHTS */
    .additional-highlights {
      border-top: 1px solid var(--border-gold);
      padding-top: 3rem
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem 1.5rem
    }

    .highlight-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1rem;
      background: linear-gradient(135deg, rgba(200, 151, 58, .06) 0%, rgba(200, 151, 58, .02) 100%);
      border: 1px solid var(--border-gold);
      border-radius: 8px;
      transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer
    }

    .highlight-card:hover {
      background: linear-gradient(135deg, rgba(200, 151, 58, .12) 0%, rgba(200, 151, 58, .06) 100%);
      border-color: var(--gold);
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(200, 151, 58, 0.15)
    }

    .highlight-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      border: 2px solid var(--gold);
      border-radius: 50%;
      background: rgba(200, 151, 58, .08);
      transition: all 0.35s
    }

    .highlight-card:hover .highlight-icon {
      background: var(--gold);
      box-shadow: 0 0 20px rgba(200, 151, 58, 0.4)
    }

    .highlight-icon i {
      font-size: 1.8rem;
      color: var(--gold);
      transition: color 0.35s
    }

    .highlight-card:hover .highlight-icon i {
      color: #0A0A0A
    }

    .highlight-name {
      font-family: 'Raleway', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #fff;
      line-height: 1.5;
      letter-spacing: 0.5px
    }

    /* AMENITIES GRID */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem 1.5rem;
      margin-top: 3rem
    }

    .amenity-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1rem;
      background: linear-gradient(135deg, rgba(200, 151, 58, .06) 0%, rgba(200, 151, 58, .02) 100%);
      border: 1px solid var(--border-gold);
      border-radius: 8px;
      transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer
    }

    .amenity-card:hover {
      background: linear-gradient(135deg, rgba(200, 151, 58, .12) 0%, rgba(200, 151, 58, .06) 100%);
      border-color: var(--gold);
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(200, 151, 58, 0.15)
    }

    .amenity-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      border: 2px solid var(--gold);
      border-radius: 50%;
      background: rgba(200, 151, 58, .08);
      transition: all 0.35s
    }

    .amenity-card:hover .amenity-icon {
      background: var(--gold);
      box-shadow: 0 0 20px rgba(200, 151, 58, 0.4)
    }

    .amenity-icon i {
      font-size: 1.8rem;
      color: var(--gold);
      transition: color 0.35s
    }

    .amenity-card:hover .amenity-icon i {
      color: #0A0A0A
    }

    .amenity-name {
      font-family: 'Raleway', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #fff;
      line-height: 1.5;
      letter-spacing: 0.5px
    }

    /* SHOWCASE */
    .showcase {
      position: relative;
      height: 55vh;
      min-height: 950px;
      overflow: hidden
    }

    .showcase-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(.30);
      background-attachment: fixed;
      transition: transform 0.5s ease-out
    }

    .showcase-bg.parallax-active {
      will-change: transform
    }

    .showcase-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(13, 27, 53, .85) 0%, rgba(13, 27, 53, .08) 100%)
    }

    .showcase-txt {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center
    }

    .showcase-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      font-weight: 400;
      font-style: italic;
      color: #fff;
      line-height: 1.2
    }

    .showcase-q em {
      color: var(--gold)
    }

    /* AMENITIES */
    .amenities-section {
      background: var(--off-white);
      padding: 95px 0
    }
    

    .am-card {
      background: #fff;
      border-bottom: 3px solid var(--gold);
      padding: 28px 18px;
      text-align: center;
      transition: all .3s;
      box-shadow: 0 3px 18px rgba(0, 0, 0, .06);
      height: 100%
    }

    .am-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
    }

    .am-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 15px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .am-icon i {
      font-size: 1.8rem;
      color: #fff
    }

    .am-name {
      font-family: 'Raleway', sans-serif;
      font-size: .78rem;
      /*letter-spacing: .14em;*/
      text-transform: uppercase;
      font-weight: 550;
      color: var(--text-dark)
    }

    /* CLUBHOUSE */
    .clubhouse-section {
      background: #fff8eb;
      padding: 95px 0
    }

    .club-house-head {
      color: #000
    }

    .ch-feat {
      display: flex;
      gap: 14px;
      margin-bottom: 15px;
      align-items: flex-start
    }

    .ch-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 7px
    }

    .ch-txt {
      font-family: 'Raleway', sans-serif;
      font-size: .95rem;
      color: rgb(45 42 42);
      line-height: 1.2;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    /* FLOOR PLANS */
    .floorplan-section {
      background: var(--midnight);
      padding: 95px 0
    }

    .fp-btn {
      font-family: 'Raleway', sans-serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: rgba(200, 151, 58, .08);
      color: rgba(255, 255, 255, .6);
      border: 1px solid var(--border-gold);
      padding: 13px 38px;
      cursor: pointer;
      transition: all .3s;
      border-radius: 0
    }

    .fp-btn.active,
    .fp-btn:hover {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold)
    }

    .fp-pane {
      display: none
    }

    .fp-pane.active {
      display: block
    }

    .fp-img-wrap {
      display: block;
      border: 1px solid var(--border-gold);
      padding: 3px;
      background: rgba(200, 151, 58, .04);
      overflow: hidden;
      cursor: zoom-in;
      text-decoration: none;
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .fp-img-wrap:hover {
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(200, 151, 58, 0.3);
    }

    .fp-img-wrap img {
      width: 100%;
      display: block;
      transition: transform .35s ease;
    }

    .fp-img-wrap:hover img {
      transform: scale(1.02);
    }

    /* FancyBox Custom Styling */
    .fancybox__container {
      background: rgba(10, 10, 20, 0.95);
    }

    .fancybox__image {
      object-fit: contain;
    }

    .fancybox__caption {
      display: none !important;
    }

    .fancybox__toolbar {
      background: transparent;
    }

    .fancybox__button {
      color: var(--gold);
      transition: color .25s ease;
    }

    .fancybox__button:hover {
      color: #fff;
    }

    /* Hide navbar when FancyBox is open */
    body.fancybox-open #mainNav {
      display: none;
    }

    /* Responsive FancyBox */
    @media (max-width: 768px) {
      .fancybox__button {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .fancybox__button {
        font-size: 1rem;
      }
    }


    .area-tbl {
      width: 100%;
      border-collapse: collapse;
      font-family: sans-serif;
      font-size: .8rem
    }

    .area-tbl th {
      font-family: 'Raleway', sans-serif;
      font-size: .58rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(200, 151, 58, .1);
      padding: 11px 14px;
      border-bottom: 1px solid var(--border-gold);
      text-align: left
    }

    .area-tbl td {
      padding: 9px 14px;
      color: #000;
      border-bottom: 1px solid rgba(200, 151, 58, .1)
    }

    .area-tbl tr:hover td {
      background: rgba(200, 151, 58, .05)
    }

    .fw {
      color: var(--gold);
      font-weight: 500
    }

    /* SPECS */
    .specs-section {
      background: linear-gradient(160deg, #0D1220 0%, #1A2744 100%);
      padding: 95px 0
    }

    .spec-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border-gold);
      padding: 26px 22px;
      height: 100%;
      transition: background .3s
    }

    .spec-card:hover {
      background: rgba(200, 151, 58, .07)
    }

    .spec-hdr {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px
    }

    .spec-ico {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      background: rgba(200, 151, 58, .12);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .spec-ico i {
      font-size: 1.15rem;
      color: var(--gold)
    }

    .spec-ttl {
      font-family: 'Raleway', sans-serif;
      font-size: 1.1rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold)
    }

    .spec-ul {
      list-style: none;
      padding: 0
    }

    .spec-ul li {
      font-family: sans-serif;
      font-size: .85rem;
      color: rgba(255, 255, 255, .58);
      padding: 4px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      display: flex;
      gap: 7px;
      align-items: center;
      line-height: 1.5
    }

    .spec-ul li::before {
      content: '›';
      color: var(--gold);
      font-size: 1.4rem;
      flex-shrink: 0
    }

    /* LOCATION */
    .location-section {
      background: var(--midnight);
      padding: 95px 0
    }

    .loc-itm {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(200, 151, 58, .14)
    }

    .loc-ico {
      color: var(--gold);
      font-size: 1.15rem;
      flex-shrink: 0
    }

    .loc-txt {
     
      font-family: 'Raleway', sans-serif;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, .68);
      font-weight: 420;
    }

    /* CONTACT */
    .contact-section {
      position: relative;
      padding: 95px 0
    }

    .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(13, 27, 53, .9);
      z-index: 0
    }

    .contact-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(.4)
    }

    .contact-form-wrap {
      background: #fff;
      border: 1px solid var(--border-gold);
      padding: 44px 38px;
      position: relative;
      z-index: 2
    }

    .f-lbl {
      font-family: 'Raleway', sans-serif;
      font-size: .58rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 7px;
      display: block
    }

    .f-input {
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border-gold);
      /*color: #fff;*/
      padding: 12px 15px;
      font-family: sans-serif;
      font-size: .88rem;
      border-radius: 0;
      width: 100%;
      transition: border .3s
    }
    /*option::placeholder{*/
    /*    color:#000 !important;*/
    /*}*/
    
    .f-input:focus {
      outline: none;
      border-color: var(--gold);
      background: rgba(200, 151, 58, .05);
      box-shadow: none
    }

    .f-input::placeholder {
      color: rgba(255, 255, 255, .22)
    }

    .f-input option {
      background: #fff;
      color: #000;
    }

    .ci-item {
      display: flex;
      gap: 16px;
      margin-bottom: 26px;
      align-items: flex-start
    }

    .ci-icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      background: rgba(200, 151, 58, .12);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .ci-icon i {
      font-size: 1.15rem;
      color: var(--gold)
    }

    .ci-lbl {
      font-family: 'Raleway', sans-serif;
      font-size: .58rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3px
    }

    .ci-val {
      font-family: sans-serif;
      font-size: .88rem;
      color: rgba(255, 255, 255, .72)
    }

    /* FOOTER */
    .sdfsdf11{
      text-decoration:none;
      color:#fff;
    }
    .footer-section {
      background: #172643;
      border-top: 1px solid var(--border-gold);
      padding: 58px 0 28px
    }

    .f-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      color: #fff;
      font-weight: 600
    }

    .f-brand-sub {
      font-family: 'Raleway', sans-serif;
      font-size: .52rem;
      letter-spacing: .22em;
      color: var(--gold);
      text-transform: uppercase
    }

    .f-link {
      font-family: sans-serif;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, .68);
      text-decoration: none;
      display: block;
      margin-bottom: 7px;
      transition: color .3s
    }

    .f-link:hover {
      color: var(--gold)
    }

    .f-hdr {
      font-family: 'Raleway', sans-serif;
      font-size: 1rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px
    }

    .f-bottom {
      border-top: 1px solid rgba(200, 151, 58, .14);
      padding-top: 22px;
      margin-top: 38px;
      font-family: sans-serif;
      font-size: 0.90rem;
      color: rgba(255, 255, 255, .68);
      text-align: center;
      display:flex; 
      justify-content:space-around;
    }

    .rera {
      background: rgba(200, 151, 58, .1);
      border: 1px solid var(--border-gold);
      padding: 9px 18px;
      font-family: 'Raleway', sans-serif;
      font-size: 0.8rem;
      letter-spacing: .14em;
      color: var(--gold);
      text-transform: uppercase;
      margin-top: 11px;
      display: inline-block
    }

    /* UTILS */
    .scroll-top {
      position: fixed;
      bottom: 90px;
      right: 28px;
      z-index: 999;
      width: 44px;
      height: 44px;
      background: var(--gold);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      opacity: 0;
      transition: opacity .3s, transform .3s;
      transform: translateY(20px)
    }

    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .scroll-top i {
      color: #fff;
      font-size: 1.15rem
    }

    .wa-btn {
      position: fixed;
      bottom: 30px;
      right: 28px;
      z-index: 999;
      width: 44px;
      height: 44px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
      text-decoration: none;
      transition: transform .3s
    }

    .wa-btn:hover {
      transform: scale(1.1)
    }

    .wa-btn i {
      color: #fff;
      font-size: 1.35rem
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(38px);
      transition: opacity .7s ease, transform .7s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }
    
    @media(max-width:991px) {
      .d-lg-flex {
        display: none !important
      }

      .hero-title {
        font-size: clamp(2.1rem, 5.5vw, 3.3rem)
      }
      
      .about-img-frame {
        display: none
      }
    }

    @media(max-width:767px) {
      .hero-content {
        align-items: flex-end;
        padding-bottom: 110px
      }

      .hero-title {
        font-size: 2.3rem
      }

      .showcase {
        height: 42vh
      }

      .floorplan-section,
      .about-section,
      .features-section,
      .amenities-section,
      .specs-section,
      .location-section,
      .clubhouse-section,
      .contact-section {
        padding: 65px 0
      }

      .fp-btn {
        padding: 11px 22px;
        font-size: .56rem
      }

      .contact-form-wrap {
        padding: 28px 22px
      }

      .hero-stats .stat-div {
        display: none
      }

      .stat-num {
        font-size: 1.6rem
      }
    }

    .area-tbl.price-table {
                      margin-bottom: 0;
                      background: #fff;
                      border-radius: 6px;
                      box-shadow: 0 2px 12px rgba(200,151,58,0.08);
                      overflow: hidden;
                    }
                    .area-tbl.price-table th,
                    .area-tbl.price-table td {
                      text-align: center;
                      vertical-align: middle;
                      font-size: 1rem;
                      padding: 10px 6px;
                    }
                    .area-tbl.price-table th {
                      font-family: 'Raleway', sans-serif;
                      font-size: 1.05rem;
                      font-weight: 600;
                      background: #c3975a;
                      color: #fff;
                      border: none;
                    }
                    .area-tbl.price-table tr {
                      border-bottom: 1px solid #e0c7a2;
                    }
                    .area-tbl.price-table tr:last-child {
                      border-bottom: none;
                    }
                    @media (max-width: 767px) {
                      .area-tbl.price-table th,
                      .area-tbl.price-table td {
                        font-size: 0.92rem;
                        padding: 8px 2px;
                      }
                      .area-tbl.price-table {
                        margin-bottom: 18px;
                      }
                      .col-md-6 {
                        margin-bottom: 18px;
                      }
                    }
                    @media (max-width: 575px) {
                      .area-tbl.price-table th,
                      .area-tbl.price-table td {
                        font-size: 0.85rem;
                        padding: 6px 1px;
                      }
                      #amenitiesGallery{
                            padding: 10px !important;
                      }
                      .g-5{
                        --bs-gutter-x: 0rem !important;
                      }
                      .f-bottom{
                          display:block !important;
                      }
                    }

                     /* Hide mobile carousel by default, show on mobile; hide desktop carousel on mobile */
        .hero-carousel-mobile { display: none; }
        .hero-carousel-desktop { display: block; }
        @media (max-width: 767px) {
          .hero-carousel-mobile { display: block; }
          .hero-carousel-desktop { display: none; }
        }

         .unlock-price-btn {
                background: #c3975a;
                color: #fff;
                border: none;
                padding: 8px 22px;
                border-radius: 4px;
                font-family: 'Raleway', sans-serif;
                font-size: 0.8rem;
                font-weight: 600;
                letter-spacing: .04em;
                display: inline-flex;
                align-items: center;
                gap: 7px;
                cursor: pointer;
                transition: background .2s;
                margin: 0 auto;
              }
              .unlock-price-btn:hover {
                background: #a87d3a;
                color: #fff;
              }


               
.sidebar-form {
  position: fixed;
  top: 50%;
  right: -320px;
  width: 320px;
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: right 0.4s ease-in-out;
  z-index: 12;
}

.sidebar-form::before {
  
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  opacity: 0.05;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.sidebar-form.show {
  right: 0;
}

.sidebar-form .call-action {
  position: absolute;
  background-color: #c89745;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: white;
  width: 150px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  left: -95px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

.sidebar-form .form-header {
  position: relative;
  margin-bottom: 20px;
}

.sidebar-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  text-align: center;
  color: #000;
  margin-left: 7px;
}

.sidebar-form .form-title {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 0;
}

.sidebar-form .form-address {
  /* font-family: 'Roboto', sans-serif; */
  font-size: 14px;
  color: rgb(0 0 0);
  text-align: center;
  margin: 5px 0 0;
}

.sidebar-form .close-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #c8974529;
  border: none;
  color: #000000;
  font-size: 33px;
  line-height: 30px;
  cursor: pointer;
  padding: 0;
}

.sidebar-form .close-btn:hover {
  background-color: #c89745;
}

.sidebar-form .btn {
  background-color: #c89745;
  margin: 0;
  color: white;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #c89745;
}

.sidebar-form .form-control {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #2a315f8a;
}

.sidebar-form .form-control:focus {
  border-color: #2a315f;
  box-shadow: 0 0 0 .25rem #2a315f4e;
}


.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.brochurebtn {
  position: fixed;
  bottom: 6px;
  left: 20px;
  width: fit-content;
  z-index: 99999;
}

.brochurebtn img {
  width: 180px;
  cursor: pointer;
}

@-webkit-keyframes bounce {

  20%,
  53%,
  80%,
  0%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  20%,
  53%,
  80%,
  0%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.pulse-effect1 {
  animation: pulse-shadowd 1.5s infinite;
}

@keyframes pulse-shadowd {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 110, 90, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(237, 110, 90, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(237, 110, 90, 0);
  }
}