   /* ============================================================
       CSS CUSTOM PROPERTIES — LUXURY PALETTE
    ============================================================ */
   :root {
       --primary-color: #c4a758e7;
       --secondary-color: #c4a758;
       --accent-color: #8b6b3d;
       --light-color: #f8f5f0;
       --dark-color: #222222;
       --text-color: #555555;
       --text-light: #888888;

       /* Derived */
       --gradient-primary: linear-gradient(135deg, #c4a758 0%, #8b6b3d 100%);
       --gradient-hover: linear-gradient(135deg, #8b6b3d 0%, #5e461f 100%);
       --gradient-dark: linear-gradient(135deg, #222222 0%, #3a2e20 100%);
       --shadow-gold: 0 20px 40px -10px rgba(196, 167, 88, 0.35);
       --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
       --border-gold: 1px solid rgba(196, 167, 88, 0.3);

       --font-display: 'Cinzel', serif;
       --font-body: 'Cormorant Garamond', serif;
       --font-ui: 'Raleway', sans-serif;

       --container-max: 1280px;
       --section-py: 90px;
   }

   /* ============================================================
       RESET & BASE
    ============================================================ */
   *,
   *::before,
   *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }

   html {
       scroll-behavior: smooth;
   }

   body {
       font-family: var(--font-ui);
       color: var(--text-color);
       background-color: #fff;
       overflow-x: hidden;
       line-height: 1.7;
      
       
   }

   img {
       max-width: 100%;
       display: block;
   }

   button {
       cursor: pointer;
       border: none;
       background: none;
   }

   iframe {
       width: 100%;
       border: 0;
   }

   address {
       font-style: normal;
   }

   h1,
   h2,
   h3,
   h4,
   .font-display {
       font-family: var(--font-display);
   }

   .luxury-container {
       max-width: var(--container-max);
       margin: 0 auto;
       padding: 0 24px;
   }

   .section-padding {
       padding: var(--section-py) 0;
   }

   /* ============================================================
       UTILITY CLASSES
    ============================================================ */
   .primary-color {
       color: var(--primary-color);
   }

   .primary-bg {
       background-color: var(--primary-color);
   }

   .accent-color {
       color: var(--accent-color);
   }

   .dark-bg {
       background-color: var(--dark-color);
   }

   .light-bg {
       background-color: var(--light-color);
   }

   /* Gold ornamental divider */
   .gold-divider {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 12px;
       margin: 12px auto 0;
       width: fit-content;
   }

   .gold-divider::before,
   .gold-divider::after {
       content: '';
       display: block;
       width: 60px;
       height: 1px;
       background: var(--primary-color);
   }

   .gold-divider-diamond {
       width: 6px;
       height: 6px;
       background: var(--primary-color);
       transform: rotate(45deg);
   }

   .gold-divider-left {
       justify-content: flex-start;
   }

   .gold-divider-left::before {
       display: none;
   }

   /* Section heading pattern */
   .section-label {
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 700;
       letter-spacing: 5px;
       text-transform: uppercase;
       color: var(--primary-color);
       margin-bottom: 10px;
   }

   .section-title {
       font-family: var(--font-display);
       font-size: clamp(1.6rem, 3.5vw, 2.6rem);
       font-weight: 700;
       color: var(--dark-color);
       line-height: 1.15;
       letter-spacing: 1px;
   }

   .section-title-light {
       color: #fff;
   }

   /* ============================================================
       BUTTONS
    ============================================================ */
   .btn-primary {
       background: var(--gradient-primary);
       color: #fff;
       padding: 14px 34px;
       border-radius: 2px;
       font-family: var(--font-ui);
       font-size: 12px;
       font-weight: 700;
       letter-spacing: 3px;
       text-transform: uppercase;
       transition: all 0.35s ease;
       display: inline-flex;
       align-items: center;
       gap: 10px;
       border: none;
       cursor: pointer;
       position: relative;
       overflow: hidden;
   }

   .btn-primary::after {
       content: '';
       position: absolute;
       inset: 0;
       background: rgba(255, 255, 255, 0);
       transition: 0.3s;
   }

   .btn-primary:hover {
       background: var(--gradient-hover);
       box-shadow: var(--shadow-gold);
       transform: translateY(-2px);
   }

   .btn-outline {
       background: transparent;
       border: 1px solid var(--primary-color);
       color: var(--primary-color);
       padding: 12px 30px;
       border-radius: 2px;
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 700;
       letter-spacing: 3px;
       text-transform: uppercase;
       transition: all 0.3s;
       display: inline-flex;
       align-items: center;
       gap: 8px;
       cursor: pointer;
   }

   .btn-outline:hover {
       background: var(--primary-color);
       color: #fff;
   }

   .btn-ghost {
       border: 1px solid rgba(255, 255, 255, 0.4);
       color: #fff;
       padding: 12px 28px;
       border-radius: 2px;
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 700;
       letter-spacing: 3px;
       text-transform: uppercase;
       transition: all 0.3s;
       display: inline-flex;
       align-items: center;
       gap: 8px;
       cursor: pointer;
   }

   .btn-ghost:hover {
       background: rgba(255, 255, 255, 0.1);
       border-color: #fff;
   }

   /* ============================================================
       NAVBAR
    ============================================================ */
   #navbar {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       z-index: 1000;
       transition: all 0.4s ease;
       padding: 0;
       z-index: 9;
   }

   .nav-inner {
       background: rgba(255, 255, 255, 0.97);
       backdrop-filter: blur(12px);
       border-bottom: 1px solid rgba(196, 167, 88, 0.15);
       box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
   }

   .nav-content {
       max-width: var(--container-max);
       margin: 0 auto;
       padding: 0 24px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       height: 72px;
   }

   .nav-brand {
       display: flex;
       flex-direction: column;
       text-decoration: none;
   }

   .nav-brand-title {
       font-family: var(--font-display);
       font-size: 20px;
       font-weight: 700;
       color: var(--dark-color);
       letter-spacing: 2px;
       line-height: 1;
   }

   .nav-brand-sub {
       font-family: var(--font-ui);
       font-size: 9px;
       font-weight: 600;
       letter-spacing: 4px;
       text-transform: uppercase;
       color: var(--primary-color);
       margin-top: 3px;
   }

   .nav-links {
       display: flex;
       align-items: center;
       gap: 32px;
       list-style: none;
   }

   .nav-links a {
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 600;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: var(--dark-color);
       text-decoration: none;
       position: relative;
       transition: color 0.3s;
   }

   .nav-links a::after {
       content: '';
       position: absolute;
       bottom: -3px;
       left: 0;
       width: 0;
       height: 1px;
       background: var(--primary-color);
       transition: width 0.3s;
   }

   .nav-links a:hover {
       color: var(--primary-color);
   }

   .nav-links a:hover::after {
       width: 100%;
   }

   .menu-toggle-btn {
       display: none;
       flex-direction: column;
       gap: 5px;
       cursor: pointer;
       padding: 4px;
   }

   .menu-toggle-btn span {
       display: block;
       width: 24px;
       height: 1.5px;
       background: var(--dark-color);
       transition: all 0.3s;
   }

   #mobile-menu {
       display: none;
       background: #fff;
       border-top: 1px solid rgba(196, 167, 88, 0.15);
       padding: 16px 24px 20px;
   }

   #mobile-menu a {
       display: block;
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 600;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: var(--dark-color);
       text-decoration: none;
       padding: 10px 0;
       border-bottom: 1px solid rgba(0, 0, 0, 0.05);
   }

   #mobile-menu a:hover {
       color: var(--primary-color);
   }

   @media (max-width: 900px) {
       .nav-links {
           display: none;
       }

       .menu-toggle-btn {
           display: flex;
       }
   }

   /* ============================================================
       BANNER — DESKTOP
    ============================================================ */
   .desktop-only {
       display: block;
   }

   .mobile-only {
       display: none;
   }

   @media (max-width: 768px) {
       .desktop-only {
           display: none !important;
       }

       .mobile-only {
           display: block !important;
       }
   }

   .banner-temp3 {
       position: relative;
       height: 100vh;
   }

   .banner-temp3 .swiper,
   .banner-temp3 .swiper-wrapper,
   .banner-temp3 .swiper-slide {
       width: 100%;
       height: 100%;
   }

   .banner-temp3 .banneritem {
       position: relative;
       overflow: hidden;
       height: 100vh;
   }

   .banner-temp3 .banneritem::before {
       content: '';
       position: absolute;
       inset: 0;
       background: linear-gradient(to top,
               rgba(0, 0, 0, 0.85) 0%,
               rgba(0, 0, 0, 0.35) 50%,
               rgba(0, 0, 0, 0.15) 100%);
       z-index: 2;
   }

   .banner-temp3 .bannerimg {
       width: 100%;
       height: 100vh;
       object-fit: cover;
       display: block;
     margin-top: 60px;
   }

   /* Gold accent overlay top stripe */
   .banner-gold-stripe {
       position: absolute;
       top: 72px;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent 0%, var(--primary-color) 30%, var(--primary-color) 70%, transparent 100%);
       z-index: 10;
   }

   .bannercaption-temp3 {
       position: absolute;
       bottom: 60px;
       left: 0;
       width: 100%;
       z-index: 10;
       padding: 0 60px;
   }

   .bannercaption-temp3 h1 {
       font-family: var(--font-display);
       font-size: clamp(1.5rem, 4vw, 3.5rem);
       font-weight: 700;
       color: #fff;
       letter-spacing: 4px;
       line-height: 1;
       margin-bottom: 6px;
       text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
   }

   .bannercaption-temp3 h3 {
       font-family: var(--font-ui);
       font-size: clamp(1rem, 2vw, 1.5rem);
       font-weight: 500;
       letter-spacing: 8px;
       text-transform: uppercase;
       color: var(--primary-color);
       margin-bottom: 24px;
   }

   .banner-divider {
       width: 80px;
       height: 1px;
       background: var(--primary-color);
       margin-bottom: 28px;
   }

   .banner-stats {
       display: flex;
       align-items: stretch;
       gap: 0;
       flex-wrap: wrap;
       backdrop-filter: blur(10px);
       padding: 20px 30px;
       width: fit-content;
   }

   .banner-stat {
       padding: 16px 32px;
       border-right: 1px solid rgba(196, 167, 88, 0.3);
       position: relative;
   }

   .banner-stat:last-of-type {
       border-right: none;
   }

   .banner-stat-label {
       font-family: var(--font-ui);
       font-size: 9px;
       font-weight: 700;
       letter-spacing: 4px;
       text-transform: uppercase;
       color: var(--primary-color);
       margin-bottom: 6px;
   }

   .banner-stat-value {
       font-family: var(--font-display);
       font-size: clamp(0.9rem, 1.5vw, 1.2rem);
       font-weight: 600;
       color: #fff;
       line-height: 1.2;
       letter-spacing: 2px;
   }

   .banner-stat-btn {
       padding: 14px 28px;
       align-self: center;
       margin-left: 16px;
   }

   @media (max-width: 768px) {
       .bannercaption-temp3 {
           padding: 0 20px;
           bottom: 40px;
       }

       .banner-stat {
           padding: 10px 16px;
       }

       .banner-stats {
           flex-direction: column;
           gap: 4px;
       }
   }

   /* Mobile banner */
   .bannerSection {
       width: 100%;
       min-height: 100vh;
       background: #000;
   }

   .bannerTrack {
       display: flex;
       flex-direction: column;
       min-height: 100vh;
   }

   /* Media Section */
   .mediaSection,
   .bannerMedia {
       width: 100%;
       height: 40vh;
       position: relative;
       overflow: hidden;
   }

   .bannerImage,
   .bannerVideo {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
       object-position: right;
   }

   /* Remove overlay completely */
   .bannerOverlay {
       display: none;
   }

   /* Text Section */
   .bannerheadingContainer {
       width: 100%;
       height: 60vh;
       background: #111;
       padding: 10px;
       padding-top: 15px;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       position: relative;
       padding-top: 10px;

   }

   /* Heading */
   .bannerheading {
       font-family: var(--font-display);
       font-size: 1.5rem;
       font-weight: 700;
       color: #fff;
       letter-spacing: 3px;
       margin-bottom: 8px;
       margin-top: 15px;
       text-align: center;
   }

   /* Developer text */
   .bannerdeveloper {
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 600;
       letter-spacing: 5px;
       text-transform: uppercase;
       color: var(--primary-color);
       margin-bottom: 18px;
   }

   /* Offer Box */
   .bannerOfferConatiner {
       background: rgba(255, 255, 255, 0.05);
       border: 1px dashed rgba(196, 167, 88, 0.3);
       border-radius: 4px;
       padding: 16px;
       margin-bottom: 18px;
   }

   /* Offer heading */
   .bannerofferHeading {
       display: flex;
       align-items: center;
       flex-direction: column;
       font-family: var(--font-body);
       font-size: 1.3rem;
       font-weight: 500;
       padding: 10px 20px;
       color: #fff;
       text-align: center;
   }

   /* Location */
   .bannerlocation {
       font-family: var(--font-ui);
       font-size: 18px;
       color: rgba(255, 255, 255, 0.85);
       display: flex;
       align-items: center;
       gap: 8px;
       margin-bottom: 10px;
       font-weight: bold;
       text-align: center;
   }

   /* Audio Button */
   .videoWrapper {
       position: relative;
       height: 100%;
   }

   .audioBtn {
       position: absolute;
       top: 10px;
       right: 20px;
       z-index: 10;
       background: rgba(0, 0, 0, 0.6);
       border: 1px solid rgba(196, 167, 88, 0.4);
       color: #fff;
       padding: 8px 14px;
       font-size: 11px;
       letter-spacing: 1px;
       cursor: pointer;
   }

   /* ============================================================
       ABOUT SECTION
    ============================================================ */
   .about-section {
       padding: var(--section-py) 0;
       background: #fff;
   }

   .about-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
   }

   @media (max-width: 900px) {
       .about-grid {
           grid-template-columns: 1fr;
           gap: 40px;
       }
   }

   .about-img-wrap {
       position: relative;
   }

   .about-img-wrap img {
       width: 100%;
       height: auto;
       object-fit: cover;
       display: block;
   }

   .about-img-accent {
       position: absolute;
       top: -16px;
       left: -16px;
       width: 80px;
       height: 80px;
       border-top: 2px solid var(--primary-color);
       border-left: 2px solid var(--primary-color);
       pointer-events: none;
   }

   .about-img-accent-br {
       position: absolute;
       bottom: -16px;
       right: -16px;
       width: 80px;
       height: 80px;
       border-bottom: 2px solid var(--primary-color);
       border-right: 2px solid var(--primary-color);
       pointer-events: none;
   }

   .about-logo-badge {
       position: absolute;
       top: 20px;
       right: 20px;
       background: rgba(255, 255, 255, 0.95);
       border: 1px solid rgba(196, 167, 88, 0.25);
       padding: 10px;
       border-radius: 2px;
   }

   .about-logo-badge img {
       width: 48px;
       height: 48px;
       object-fit: contain;
   }

   .about-content {
       padding: 0;
   }

   .about-desc {
       font-family: var(--font-body);
       font-size: 1.15rem;
       line-height: 1.9;
       color: var(--text-color);

   }

   .specs-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 0;
   }

   .spec-item {
       padding: 18px 0;
       border-bottom: 1px solid rgba(0, 0, 0, 0.07);
   }

   .spec-item:nth-child(odd) {
       padding-right: 24px;
       border-right: 1px solid rgba(0, 0, 0, 0.07);
   }

   .spec-item:nth-child(even) {
       padding-left: 24px;
   }

   .spec-label {
       font-family: var(--font-ui);
       font-size: 9px;
       font-weight: 700;
       letter-spacing: 3px;
       text-transform: uppercase;
       color: var(--text-light);
       margin-bottom: 6px;
   }

   .spec-value {
       font-family: var(--font-display);
       font-size: 1rem;
       font-weight: 600;
       color: var(--dark-color);
   }

   /* ============================================================
       HIGHLIGHTS SECTION
    ============================================================ */
   .highlights-section {
       position: relative;
       padding: var(--section-py) 0;
       background: var(--light-color);
       overflow: hidden;
   }

   .highlights-content {
       position: relative;
       z-index: 2;
   }

   .highlights-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 12px;
       max-width: 560px;
   }

   .highlight-card {
       background: #fff;
       border: 1px solid rgba(196, 167, 88, 0.2);
       border-radius: 2px;
       padding: 18px 20px;
       display: flex;
       align-items: center;
       gap: 14px;
       transition: all 0.3s ease;
   }

   .highlight-card:hover {
       border-color: var(--primary-color);
       box-shadow: 0 4px 20px rgba(196, 167, 88, 0.15);
       transform: translateY(-2px);
   }

   .highlight-icon-wrap {
       width: 38px;
       height: 38px;
       flex-shrink: 0;
       border: 1px solid rgba(196, 167, 88, 0.3);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .highlight-icon-wrap img {
       width: 18px;
       height: 18px;
       object-fit: contain;
   }

   .highlight-text {
       font-family: var(--font-ui);
       font-size: 12px;
       font-weight: 600;
       letter-spacing: 0.5px;
       color: var(--dark-color);
       line-height: 1.4;
   }

   .highlight-bg-img {
       position: absolute;
       right: 0;
       top: 0;
       bottom: 0;
       width: 45%;
       z-index: 0;
   }

   .highlight-bg-img::before {
       content: '';
       position: absolute;
       inset: 0;
       background: linear-gradient(to right, var(--light-color) 0%, transparent 30%);
       z-index: 1;
   }

   .highlight-bg-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
   }

   @media (max-width: 900px) {
       .highlight-bg-img {
           position: relative;
           width: 100%;
           height: 300px;
           margin-top: 32px;
       }

       .highlight-bg-img::before {
           background: linear-gradient(to bottom, var(--light-color) 0%, transparent 30%);
       }

       .highlights-grid {
           grid-template-columns: 1fr 1fr;
           max-width: 100%;
       }
   }

   @media (max-width: 480px) {
       .highlights-grid {
           grid-template-columns: 1fr;
       }
   }

   /* ============================================================
       PRICE SECTION
    ============================================================ */
   .price-section {
       background: var(--dark-color);
       padding: var(--section-py) 0;
       position: relative;
       overflow: hidden;
   }

   .price-section::before {
       content: '';
       position: absolute;
       inset: 0;
       background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a758' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
   }

   .price-cards-wrap {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 24px;
       max-width: 1100px;
       margin: 0 auto;
   }

   @media (max-width: 900px) {
       .price-cards-wrap {
           grid-template-columns: 1fr 1fr;
       }
   }

   @media (max-width: 560px) {
       .price-cards-wrap {
           grid-template-columns: 1fr;
       }
   }

   .price-card {
       background: rgba(255, 255, 255, 0.04);
       border: 1px solid rgba(196, 167, 88, 0.2);
       border-radius: 2px;
       overflow: hidden;
       transition: all 0.35s ease;
   }

   .price-card:hover {
       border-color: var(--primary-color);
       box-shadow: 0 0 40px rgba(196, 167, 88, 0.12);
       transform: translateY(-6px);
   }

   .price-img {
       width: 100%;
       height: 220px;
       object-fit: cover;
       display: block;
       filter: brightness(0.85);
       transition: filter 0.4s;
   }



   .price-body {
       padding: 20px;
   }

   .price-row {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 13px 0;
       border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   }

   .price-row:last-child {
       border-bottom: none;
   }

   .price-label {
       font-family: var(--font-ui);
       font-size: 10px;
       font-weight: 600;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: rgba(255, 255, 255, 0.4);
   }

   .price-value {
       font-family: var(--font-display);
       font-size: 14px;
       font-weight: 600;
       color: #fff;
   }

   .price-value-gold {
       color: var(--primary-color);
   }

   .price-btn {
       display: inline-block;
       background: var(--gradient-primary);
       color: #fff;
       padding: 9px 16px;
       border-radius: 2px;
       font-family: var(--font-ui);
       font-size: 10px;
       font-weight: 700;
       letter-spacing: 2px;
       text-transform: uppercase;
       text-decoration: none;
       transition: all 0.3s;
       cursor: pointer;
   }

   .price-btn:hover {
       box-shadow: var(--shadow-gold);
       transform: scale(1.03);
   }

   /* ============================================================
       AMENITIES
    ============================================================ */
   .amenities-section {
       padding: var(--section-py) 0;
       background: #fff;
   }

   .amenity-tags {
       display: flex;
       flex-wrap: wrap;
       gap: 10px;
       margin-bottom: 40px;
   }

   .amenity-tag {
       display: flex;
       align-items: center;
       gap: 8px;
       padding: 10px 18px;
       border: 1px solid rgba(196, 167, 88, 0.25);
       border-radius: 2px;
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 600;
       letter-spacing: 1px;
       color: var(--text-color);
       transition: all 0.3s;
   }

   .amenity-tag:hover {
       border-color: var(--primary-color);
       color: var(--dark-color);
       background: rgba(196, 167, 88, 0.06);
   }

   .amenity-tag i {
       color: var(--primary-color);
       font-size: 14px;
   }

   .amenities-wrapper {
       display: flex;
       gap: 40px;
       justify-content: space-between;
       align-items: flex-start;
       margin-bottom: 40px;
   }

   @media (max-width: 768px) {
       .amenities-wrapper {
           flex-wrap: wrap;
       }
   }

   .amenity-slider {
       display: flex;
       gap: 20px;
       overflow-x: hidden;
       scroll-behavior: smooth;
   }

   .amenity-card {
       position: relative;
       overflow: hidden;
       flex-shrink: 0;
   }

   .amenity-card img {
       width: 100%;
       height: 400px;
       object-fit: cover;
       display: block;
       transition: transform 0.7s ease;
   }

   .amenity-card:hover img {
       transform: scale(1.08);
   }

   .amenity-overlay {
       position: absolute;
       inset: 0;
       background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
   }

   .amenity-label {
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       padding: 20px 24px;
       font-family: var(--font-display);
       font-size: 1rem;
       font-weight: 600;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: #fff;
       opacity: 0;
       transform: translateY(10px);
       transition: all 0.4s ease;
       /* over ride for  */
       display: none; 
   }

   .amenity-card:hover .amenity-label {
       opacity: 1;
       transform: translateY(0);
   }

   .slider-controls {
       display: flex;
       align-items: center;
       gap: 12px;
       margin-top: 28px;
       padding: 0 0 0 4px;
   }

   .slider-btn {
       width: 44px;
       height: 44px;
       border: 1px solid rgba(0, 0, 0, 0.15);
       display: flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       transition: all 0.3s;
       background: #fff;
   }

   .slider-btn:hover {
       border-color: var(--primary-color);
       background: var(--primary-color);
       color: #fff;
   }

   .slider-btn svg {
       width: 18px;
       height: 18px;
       stroke: currentColor;
   }

   /* ============================================================
       CONNECTIVITY
    ============================================================ */
   .connectivity-section {
       padding: var(--section-py) 0;
       background: var(--light-color);
   }

   .connectivity-grid {
       display: grid;
       grid-template-columns: 1.1fr 1fr;
       gap: 48px;
       align-items: start;
   }

   @media (max-width: 850px) {
       .connectivity-grid {
           grid-template-columns: 1fr;
           gap: 32px;
       }
   }

   .map-tabs {
       display: flex;
       gap: 0;
       margin-bottom: 14px;
       border: 1px solid rgba(196, 167, 88, 0.25);
       border-radius: 2px;
       overflow: hidden;
   }

   .tab-btn {
       flex: 1;
       padding: 11px;
       font-family: var(--font-ui);
       font-size: 10px;
       font-weight: 700;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: var(--text-light);
       cursor: pointer;
       transition: all 0.3s;
       border: none;
       background: #fff;
   }

   .tab-btn.active {
       background: var(--primary-color);
       color: #fff;
   }

   .map-wrapper {
       border: 1px solid rgba(196, 167, 88, 0.2);
       aspect-ratio: 4/3;
       overflow: hidden;
       position: relative;
   }

   .map-content {
       display: none;
       height: 100%;
   }

   .map-content.active {
       display: block;
   }

   .map-wrapper iframe,
   .map-wrapper img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }

   .category-nav {
       display: flex;
       border-bottom: 1px solid rgba(0, 0, 0, 0.08);
       margin-bottom: 0;
   }

   .node {
       flex: 1;
       text-align: center;
       font-family: var(--font-ui);
       font-size: 9.5px;
       font-weight: 700;
       letter-spacing: 1.5px;
       text-transform: uppercase;
       padding: 14px 4px;
       color: var(--text-light);
       cursor: pointer;
       position: relative;
       transition: all 0.3s;
   }

   .node.active {
       color: var(--accent-color);
   }

   .node.active::after {
       content: '';
       position: absolute;
       bottom: -1px;
       left: 0;
       right: 0;
       height: 2px;
       background: var(--primary-color);
   }

   .location-list {
       list-style: none;
   }

   .location-item {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 16px 0;
       border-bottom: 1px solid rgba(0, 0, 0, 0.06);
   }

   .location-item:last-child {
       border-bottom: none;
   }

   .location-text {
       font-family: var(--font-body);
       font-size: 1rem;
       font-weight: 500;
       color: var(--dark-color);
   }

   .location-text::before {
       content: '◆';
       color: var(--primary-color);
       margin-right: 10px;
       font-size: 7px;
       vertical-align: middle;
   }

   .location-time {
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 600;
       letter-spacing: 1px;
       color: var(--accent-color);
   }

   /* ============================================================
       FAQ
    ============================================================ */
   .faq-section {
       padding: var(--section-py) 0;
       background: #fff;
   }

   .faq-wrap {
       max-width: 760px;
       margin: 0 auto;
   }

   .faq-item {
       border-bottom: 1px solid rgba(0, 0, 0, 0.07);
       padding: 22px 0;
       cursor: pointer;
   }

   .faq-question {
       display: flex;
       justify-content: space-between;
       align-items: center;
       font-family: var(--font-ui);
       font-size: 14px;
       font-weight: 700;
       letter-spacing: 0.5px;
       color: var(--dark-color);
       gap: 16px;
       transition: color 0.3s;
   }

   .faq-item.active .faq-question {
       color: var(--accent-color);
   }

   .plus-icon {
       width: 28px;
       height: 28px;
       border: 1px solid rgba(196, 167, 88, 0.3);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 18px;
       color: var(--primary-color);
       flex-shrink: 0;
       font-weight: 300;
       transition: all 0.3s;
   }

   .faq-item.active .plus-icon {
       background: var(--primary-color);
       color: #fff;
       border-color: var(--primary-color);
   }

   .faq-answer {
       display: none;
       padding-top: 14px;
       font-family: var(--font-body);
       font-size: 1.05rem;
       line-height: 1.8;
       color: var(--text-color);
   }

   .faq-item.active .faq-answer {
       display: block;
   }

   .about-builder-box {
       margin-top: 48px;
       padding: 32px 36px;
       border: 1px solid rgba(196, 167, 88, 0.2);
       background: var(--light-color);
       border-radius: 2px;
   }

   .about-builder-box h3 {
       font-family: var(--font-display);
       font-size: 1.2rem;
       font-weight: 700;
       letter-spacing: 2px;
       color: var(--dark-color);
       margin-bottom: 12px;
   }

   .about-builder-box p {
       font-family: var(--font-body);
       font-size: 1.05rem;
       line-height: 1.8;
       color: var(--text-color);
   }

   .builder-tags {
       display: flex;
       flex-wrap: wrap;
       gap: 10px;
       margin-top: 16px;
   }

   .builder-tag {
       padding: 6px 16px;
       border: 1px solid rgba(196, 167, 88, 0.3);
       font-family: var(--font-ui);
       font-size: 10px;
       font-weight: 700;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: var(--accent-color);
   }

   /* ============================================================
       FOOTER
    ============================================================ */
   .site-footer {
       background: #181510;
       padding: 72px 0 0;
   }

   .footer-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       padding-bottom: 48px;
       border-bottom: 1px solid rgba(196, 167, 88, 0.1);
   }

   @media (max-width: 768px) {
       .footer-grid {
           grid-template-columns: 1fr;
           gap: 40px;
       }
   }

   .footer-brand-name {
       font-family: var(--font-display);
       font-size: 1.8rem;
       font-weight: 700;
       letter-spacing: 3px;
       color: #fff;
       margin-bottom: 6px;
   }

   .footer-brand-name span {
       color: var(--primary-color);
   }

   .footer-tagline {
       font-family: var(--font-body);
       font-size: 1rem;
       color: rgba(255, 255, 255, 0.45);
       margin-bottom: 28px;
       font-style: italic;
   }

   .footer-contact-item {
       display: flex;
       align-items: flex-start;
       gap: 14px;
       margin-bottom: 20px;
   }

   .footer-contact-icon {
       width: 36px;
       height: 36px;
       border: 1px solid rgba(196, 167, 88, 0.25);
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
   }

   .footer-contact-icon i {
       color: var(--primary-color);
       font-size: 13px;
   }

   .footer-contact-label {
       font-family: var(--font-ui);
       font-size: 9px;
       font-weight: 700;
       letter-spacing: 3px;
       text-transform: uppercase;
       color: rgba(255, 255, 255, 0.35);
       margin-bottom: 4px;
   }

   .footer-contact-value {
       font-family: var(--font-body);
       font-size: 1rem;
       color: rgba(255, 255, 255, 0.75);
   }

   .footer-contact-value a {
       color: rgba(255, 255, 255, 0.75);
       text-decoration: none;
       transition: color 0.3s;
   }

   .footer-contact-value a:hover {
       color: var(--primary-color);
   }

   .footer-bottom {
       padding: 20px 24px;
       text-align: center;
   }

   .footer-bottom-text {
       font-family: var(--font-ui);
       font-size: 10px;
       font-weight: 500;
       letter-spacing: 1.5px;
       color: rgba(255, 255, 255, 0.25);
       margin-bottom: 8px;
   }

   .footer-links {
       display: flex;
       justify-content: center;
       gap: 24px;
   }

   .footer-links a {
       font-family: var(--font-ui);
       font-size: 10px;
       font-weight: 600;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: rgba(255, 255, 255, 0.3);
       text-decoration: none;
       transition: color 0.3s;
   }

   .footer-links a:hover {
       color: var(--primary-color);
   }

   .footer-disclaimer {
       font-family: var(--font-ui);
       font-size: 10px;
       color: rgba(255, 255, 255, 0.18);
       margin-top: 12px;
       line-height: 1.6;
       max-width: 680px;
       margin-left: auto;
       margin-right: auto;
   }

   /* ============================================================
       FLOATING BUTTONS
    ============================================================ */
   .fab-wrap {
       position: fixed;
       bottom: 28px;
       right: 28px;
       z-index: 999;
       display: flex;
       flex-direction: column;
       align-items: flex-end;
       gap: 10px;
   }

   .fab-actions {
       display: flex;
       flex-direction: column;
       gap: 10px;
       align-items: flex-end;
   }

   .fab-actions.hidden {
       display: none;
   }

   .fab-pill {
       display: flex;
       align-items: center;
       gap: 10px;
       padding: 12px 20px;
       border-radius: 2px;
       font-family: var(--font-ui);
       font-size: 11px;
       font-weight: 700;
       letter-spacing: 2px;
       text-transform: uppercase;
       text-decoration: none;
       border: none;
       cursor: pointer;
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
       transition: all 0.3s;
   }

   .fab-pill:hover {
       transform: translateX(-3px);
       box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
   }

   .fab-pill.whatsapp {
       background: #25D366;
       color: #fff;
   }

   .fab-pill.call {
       background: #2563EB;
       color: #fff;
   }

   .fab-pill.enquire {
       background: var(--gradient-primary);
       color: #fff;
   }

   .fab-toggle {
       width: 54px;
       height: 54px;
       background: var(--dark-color);
       border: 1px solid rgba(196, 167, 88, 0.3);
       color: #fff;
       font-size: 22px;
       display: flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
       transition: all 0.3s;
       border-radius: 2px;
   }

   .fab-toggle:hover {
       background: var(--accent-color);
   }

   /* ============================================================
       ANIMATIONS
    ============================================================ */
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(28px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeInLeft {
       from {
           opacity: 0;
           transform: translateX(-40px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   .animate__animated {
       animation-duration: 0.9s;
       animation-fill-mode: both;
   }

   .animate__fadeInLeft {
       animation-name: fadeInLeft;
   }

   .animationdelay0-2s {
       animation-delay: 0.2s;
   }

   .animationdelay0-4s {
       animation-delay: 0.4s;
   }

   .animationdelay0-6s {
       animation-delay: 0.6s;
   }

   .animationdelay0-8s {
       animation-delay: 0.8s;
   }

   .animationdelay1s {
       animation-delay: 1s;
   }

   .animationdelay1-02s {
       animation-delay: 1.2s;
   }

   .animationdelay1-04s {
       animation-delay: 1.4s;
   }

   @keyframes shine {
       0% {
           left: -100%;
       }

       100% {
           left: 100%;
       }
   }

   /* ============================================================
       RESPONSIVE TWEAKS
    ============================================================ */
   @media (max-width: 640px) {
       :root {
           --section-py: 60px;
       }

       .section-title {
           font-size: 1.5rem;
       }

       .footer-grid {
           gap: 32px;
       }
   }

   /* Swiper nav color override */
   .swiper-button-next,
   .swiper-button-prev {
       color: var(--primary-color);
   }

   /* lp-flex helper for banner btn */
   .lp-flex {
       display: flex;
       align-items: center;
       gap: 14px;
       flex-wrap: wrap;
   }

   /* ================================================================
   RUNWAL RAAYA — LUXURY FORM STYLE OVERRIDE
================================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

   :root {
       --form-primary: #c4a758 !important;
       --form-primary-dark: #8b6b3d !important;
       --form-primary-text: #222222 !important;
   }

   .form-container {
       background: #ffffff !important;
       padding: 32px 30px !important;
       border-radius: 2px !important;
       box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(196, 167, 88, 0.25) !important;
       border: 1px solid rgba(196, 167, 88, 0.45) !important;
       max-width: 680px !important;
       width: 100% !important;
       margin: auto !important;
       box-sizing: border-box !important;
       font-family: 'Raleway', system-ui, sans-serif !important;
       position: relative !important;
   }

   .form-container::before {
       content: '' !important;
       position: absolute !important;
       top: 0 !important;
       left: 0 !important;
       right: 0 !important;
       height: 3px !important;
       background: linear-gradient(90deg, transparent 0%, #c4a758 30%, #c4a758 70%, transparent 100%) !important;
       border-radius: 2px 2px 0 0 !important;
   }

   .title-image {
       display: flex !important;
       align-items: center !important;
       justify-content: center !important;
       margin-bottom: 10px !important;
       padding-bottom: 10px !important;
       border-bottom: 1px solid rgba(196, 167, 88, 0.2) !important;
   }

   .title-image img {
       max-height: 80px !important;
       max-width: 75% !important;
       object-fit: contain !important;
   }

   .form-title {
       font-family: 'Cinzel', serif !important;
       font-size: 15px !important;
       font-weight: 600 !important;
       letter-spacing: 3px !important;
       text-transform: uppercase !important;
       text-align: center !important;
       color: #fff !important;
       background: linear-gradient(135deg, #c4a758 0%, #8b6b3d 100%) !important;
       padding: 14px 20px !important;
       margin-bottom: 22px !important;
       margin-left: -30px !important;
       margin-right: -30px !important;
       border-radius: 0 !important;
       position: relative !important;
   }

   .form-title::after {
       content: '◆' !important;
       display: block !important;
       font-size: 8px !important;
       letter-spacing: 0 !important;
       color: rgba(255, 255, 255, 0.5) !important;
       margin-top: 5px !important;
   }

   .form-grid {
       display: grid !important;
       grid-template-columns: 1fr 1fr !important;
       gap: 14px !important;
   }

   @media (max-width: 600px) {
       .form-grid {
           grid-template-columns: 1fr !important;
       }

       .form-title {
           margin-left: -26px !important;
           margin-right: -26px !important;
           font-size: 13px !important;
           letter-spacing: 2px !important;
       }

       .form-container {
           padding: 28px 26px !important;
       }
   }

   .form-group {
       display: flex !important;
       flex-direction: column !important;
       margin-bottom: 8px !important;
   }

   .form-group label {
       font-family: 'Raleway', sans-serif !important;
       font-size: 10px !important;
       font-weight: 700 !important;
       letter-spacing: 2px !important;
       text-transform: uppercase !important;
       color: #888888 !important;
       margin-bottom: 7px !important;
   }

   .vpForm input,
   .vpForm select,
   .otpBox input {
       padding: 11px 14px !important;
       border: 1px solid rgba(196, 167, 88, 0.3) !important;
       border-radius: 2px !important;
       font-family: 'Raleway', sans-serif !important;
       font-size: 13px !important;
       font-weight: 500 !important;
       color: #222222 !important;
       background: #fdfcf9 !important;
       transition: all 0.25s ease !important;
       box-sizing: border-box !important;
       outline: none !important;
   }

   .vpForm input::placeholder,
   .vpForm select::placeholder {
       color: #bbbbbb !important;
       font-weight: 400 !important;
   }

   .vpForm input:focus,
   .vpForm select:focus,
   .otpBox input:focus {
       border-color: #c4a758 !important;
       background: #ffffff !important;
       box-shadow: 0 0 0 3px rgba(196, 167, 88, 0.15) !important;
       outline: none !important;
   }

   .radio-group {
       display: flex !important;
       gap: 20px !important;
       margin-top: 6px !important;
       flex-wrap: wrap !important;
   }

   .radio-option {
       display: flex !important;
       align-items: center !important;
       gap: 8px !important;
       font-family: 'Raleway', sans-serif !important;
       font-size: 13px !important;
       font-weight: 500 !important;
       color: #555555 !important;
       cursor: pointer !important;
   }

   .radio-option input[type="radio"] {
       appearance: none !important;
       -webkit-appearance: none !important;
       width: 18px !important;
       height: 18px !important;
       padding: 0 !important;
       border: 2px solid rgba(196, 167, 88, 0.4) !important;
       border-radius: 50% !important;
       cursor: pointer !important;
       transition: all 0.2s ease !important;
       position: relative !important;
       background: #fdfcf9 !important;
   }

   .radio-option input[type="radio"]:checked {
       border-color: #c4a758 !important;
   }

   .radio-option input[type="radio"]:checked::before {
       content: '' !important;
       position: absolute !important;
       top: 50% !important;
       left: 50% !important;
       transform: translate(-50%, -50%) !important;
       width: 9px !important;
       height: 9px !important;
       background-color: #c4a758 !important;
       border-radius: 50% !important;
   }

   .radio-option input[type="radio"]:focus {
       box-shadow: 0 0 0 3px rgba(196, 167, 88, 0.18) !important;
       border-color: #c4a758 !important;
   }

   .primary-btn {
       width: 100% !important;
       padding: 14px !important;
       background: linear-gradient(135deg, #c4a758 0%, #8b6b3d 100%) !important;
       color: #ffffff !important;
       border: none !important;
       border-radius: 2px !important;
       font-family: 'Cinzel', serif !important;
       font-size: 12px !important;
       font-weight: 600 !important;
       letter-spacing: 3px !important;
       text-transform: uppercase !important;
       cursor: pointer !important;
       margin-top: 14px !important;
       transition: all 0.3s ease !important;
       position: relative !important;
       overflow: hidden !important;
   }

   .primary-btn::before {
       content: '' !important;
       position: absolute !important;
       top: 0 !important;
       left: -100% !important;
       width: 100% !important;
       height: 100% !important;
       background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent) !important;
       transition: left 0.5s ease !important;
   }

   .primary-btn:hover::before {
       left: 100% !important;
   }

   .vpForm button:hover,
   .otpBox button:hover,
   .primary-btn:hover {
       transform: translateY(-2px) !important;
       box-shadow: 0 8px 24px rgba(196, 167, 88, 0.4) !important;
   }

   .primary-btn:disabled {
       background: linear-gradient(135deg, #d4c49a 0%, #b8a070 100%) !important;
       cursor: not-allowed !important;
       color: rgba(255, 255, 255, 0.7) !important;
       box-shadow: none !important;
       transform: none !important;
       opacity: 0.65 !important;
       border: 1px solid rgba(196, 167, 88, 0.3) !important;
       letter-spacing: 3px !important;
   }

   .otp {
       text-align: center !important;
   }

   .otpBox input {
       text-align: center !important;
       font-family: 'Cinzel', serif !important;
       font-size: 20px !important;
       font-weight: 600 !important;
       letter-spacing: 8px !important;
       color: #222222 !important;
   }

   .msg {
       text-align: center !important;
       margin-top: 14px !important;
       font-family: 'Raleway', sans-serif !important;
       font-size: 13px !important;
       font-weight: 600 !important;
       letter-spacing: 0.5px !important;
       color: #555555 !important;
   }

   #closePopup {
       position: absolute !important;
       top: 10px !important;
       right: 12px !important;
       background: none !important;
       border: none !important;
       font-size: 20px !important;
       cursor: pointer !important;
       color: rgba(196, 167, 88, 0.7) !important;
       font-weight: 700 !important;
       line-height: 1 !important;
       transition: color 0.2s !important;
       z-index: 10 !important;
   }

   #closePopup:hover {
       color: #c4a758 !important;
   }

   @media (max-width: 600px) {
       .primary-btn {
           font-size: 11px !important;
           letter-spacing: 2px !important;
       }
   }


   

   .swiper,
   .swiper-wrapper,
   .swiper-slide {
       height: 100% !important;
   }

   .bannerVideo {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center bottom;
   }

   .luxuryFeatureBox {
       display: flex;
       align-items: center;
       gap: 10px;
       padding: 12px 14px;
       margin: 10px 0;
       background: rgba(255, 255, 255, 0.06);
       border: 1px solid rgba(196, 167, 88, 0.35);
       border-radius: 10px;
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
   }

   .luxuryIcon {
       color: var(--primary-color);
       font-size: 14px;
   }

   .luxuryText {
       font-family: var(--font-ui);
       font-size: 16px;
       color: rgba(255, 255, 255, 0.9);
       letter-spacing: 0.5px;
       text-align: center;


   }

   .about-desc {
       display: -webkit-box;
      
       /* Show only 4 lines */
       -webkit-box-orient: vertical;
       overflow: hidden;
       transition: 0.3s ease;
   }

 

   .read-more-btn {
       margin-top: 2px;
       border: none;
       color: #000000;
       cursor: pointer;
       border-radius: 5px;
       font-size: 16px;
   }

   @media (max-width: 768px) {
       .luxury-container {
           padding: 15px;
       }
   }
   @keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.2s ease-out;
}
.maharera-qr{
display: flex;
align-items: center;
justify-content: center;

}
.maharera-qr img{
    max-width: 100px;
    padding: 5px;
}
.popupOverlay{
    z-index: 10 !important;
}
.floorplan-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
}

.price-img {
    display: block;
    width: 100%;
    filter: blur(4px);
    transition: 0.3s ease;
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
  background: var(--gradient-primary);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.maharera-qr {
    display: flex;
    align-items: center;
    justify-content: center;
}