    :root {
      --primary-navy: #081226;
      --secondary-navy: #0f1e3d;
      --accent-gold: #e5c158;
      --accent-gold-dark: #b88e28;
      --gold-gradient: linear-gradient(135deg, #fceabb 0%, #f8b500 50%, #c3971e 100%);
      --gold-glow: rgba(229, 193, 88, 0.35);
      --glass-dark: rgba(8, 18, 38, 0.75);
      --glass-light: rgba(255, 255, 255, 0.85);
      --glass-border: rgba(229, 193, 88, 0.25);
      --font-heading: 'Cinzel', serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }


    h1, h2, h3, h4, .brand-heading {
      font-family: var(--font-heading);
    }
    .text-navy-dark{
      color:#081226 ;
    }
    /* Gradient Text Utility */
    .text-gold-gradient {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .bg-navy-dark { background-color: var(--primary-navy) !important; }
    .bg-navy-card { background-color: var(--secondary-navy) !important; }

    /* Custom Luxury Buttons */
    .btn-gold-luxury {
      background: var(--gold-gradient);
      color: #081226 !important;
      font-weight: 700;
      letter-spacing: 0.5px;
      border: none;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 10px 25px var(--gold-glow);
      z-index: 1;
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    .btn-gold-luxury::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transition: 0.6s ease;
      z-index: -1;
    }

    .btn-gold-luxury:hover::before {
      left: 100%;
    }

    /*.btn-gold-luxury:hover {*/
    /*  transform: translateY(-3px);*/
    /*  box-shadow: 0 15px 35px rgba(229, 193, 88, 0.5);*/
    /*}*/

    .btn-outline-gold {
      border: 2px solid var(--accent-gold);
      color: var(--accent-gold) !important;
      background: transparent;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    .btn-outline-gold:hover {
      background: var(--accent-gold);
      color: var(--primary-navy) !important;
      box-shadow: 0 5px 20px var(--gold-glow);
    }

    /* Section Header Badges */
    .section-badge {
      background: rgba(229, 193, 88, 0.1);
      color: var(--accent-gold-dark);
      border: 1px solid var(--accent-gold);
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      display: inline-block;
    }

    /* Navbar Header */
    .navbar-custom {
      background: rgba(8, 18, 38, 0.92);
      backdrop-filter: blur(15px);
      border-bottom: 1px solid var(--glass-border);
      padding: 1rem 0;
    }

    .nav-logo {
      height: 48px;
      width: auto;
      object-fit: contain;
      transition: height 0.3s ease;
    }

    .brand-divider {
      width: 1px;
      height: 35px;
      background-color: var(--glass-border);
      margin: 0 15px;
      transition: height 0.3s ease;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-size: 0.85rem;
      letter-spacing: 1px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: var(--accent-gold) !important;
    }

    /* Hero Section */
    .hero-wrapper {
      background: linear-gradient(rgba(8, 18, 38, 0.75), rgba(8, 18, 38, 0.95)), 
                  url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
    }

    .glass-hero-card {
      background: var(--glass-dark);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    /* Overview Highlights Cards */
    .highlight-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 2.2rem 1.5rem;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      position: relative;
      transition: all 0.4s ease;
      height: 100%;
    }

    .highlight-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 15%; right: 15%;
      height: 3px;
      background: var(--gold-gradient);
      border-radius: 3px 3px 0 0;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .highlight-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(8, 18, 38, 0.1);
    }

    .highlight-card:hover::after {
      opacity: 1;
    }

    /* Floor Plan Section */
    .floor-section {
      background-color: #f7f9fc;
      position: relative;
    }

    .floor-card {
      background: #ffffff;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 15px 35px rgba(8, 18, 38, 0.05);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }

    .floor-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 50px rgba(8, 18, 38, 0.15);
      border-color: var(--accent-gold);
    }

    .floor-img-box {
      position: relative;
      height: 250px;
      overflow: hidden;
      background: #101c36;
    }

    .floor-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      transition: transform 0.8s ease, opacity 0.5s ease;
    }

    .floor-card:hover .floor-img {
      transform: scale(1.1);
      opacity: 1;
    }

    .price-tag {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: rgba(8, 18, 38, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid var(--accent-gold);
      color: var(--accent-gold);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 30px;
    }

    .plan-badge-top {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--gold-gradient);
      color: #081226;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 20px;
      text-transform: uppercase;
    }

    .floor-card-body {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      background: #f8fafc;
      padding: 12px;
      border-radius: 14px;
      margin: 1.2rem 0;
      border: 1px solid rgba(0,0,0,0.03);
    }

    .spec-box {
      text-align: center;
    }

    .spec-box i {
      color: var(--accent-gold-dark);
      font-size: 1.1rem;
      display: block;
      margin-bottom: 4px;
    }

    .spec-box span {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary-navy);
      display: block;
    }

    .feature-list-mini {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }

    .feature-list-mini li {
      font-size: 0.82rem;
      color: #666;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-list-mini li i {
      color: #22c55e;
      font-size: 0.75rem;
    }

    /* Amenities Box */
    .amenity-card-luxury {
      background: var(--secondary-navy);
      border: 1px solid rgba(229, 193, 88, 0.15);
      border-radius: 16px;
      padding: 2rem 1rem;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
    }

    .amenity-card-luxury:hover {
      transform: translateY(-8px);
      background: var(--primary-navy);
      border-color: var(--accent-gold);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .amenity-icon-circle {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem auto;
      border-radius: 50%;
      background: rgba(229, 193, 88, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--accent-gold);
      transition: all 0.4s ease;
    }

    .amenity-card-luxury:hover .amenity-icon-circle {
      background: var(--gold-gradient);
    }

    .amenity-card-luxury:hover .amenity-icon-circle i {
      color: #081226 !important;
    }

    /* Gallery Hover Effects */
    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      height: 260px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-overlay-hover {
      position: absolute;
      inset: 0;
      background: rgba(8, 18, 38, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item:hover .gallery-overlay-hover {
      opacity: 1;
    }

    /* Bottom Contact Bar */
    .sticky-contact-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(8, 18, 38, 0.95);
      backdrop-filter: blur(12px);
      z-index: 1050;
      border-top: 2px solid var(--accent-gold);
      padding: 12px 0;
    }

    /* Form Customization */
    .form-control-luxury, .form-select-luxury {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff !important;
      border-radius: 10px;
      padding: 0.8rem 1rem;
    }

    .form-control-luxury::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .form-control-luxury:focus, .form-select-luxury:focus {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--accent-gold);
      box-shadow: 0 0 15px var(--gold-glow);
    }

    .form-select-luxury option {
      background: var(--primary-navy);
      color: #fff;
    }
    .text-lg-start {
      text-align: left; 
    }

    /* RIGHT SIDE FLOATING BUTTON STYLES */
    .floating-side-btn {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: right bottom;
      z-index: 1040;
      border-radius: 8px 8px 0 0 !important;
      padding: 0.6rem 1.5rem !important;
      font-size: 0.8rem !important;
      letter-spacing: 1px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    /* =========================================================
       MOBILE RESPONSIVENESS FIXES
    ========================================================= */
    @media (max-width: 991px) {
      .hero-wrapper { min-height: auto; padding: 4rem 0; }
      .text-lg-start { text-align: center !important; }
    }

    @media (max-width: 768px) {
      .display-3 { font-size: 2.5rem; }
      .display-5 { font-size: 2rem; }
      
      .nav-logo { height: 38px; }
      .brand-divider { height: 28px; }
      
      .glass-hero-card { padding: 2rem 1.5rem; }
      .floor-img-box { height: 220px; }
      .floor-card-body { padding: 1.5rem; }
      
      .gallery-item { height: 200px; }
    }

    @media (max-width: 576px) {
      
      
      .display-3 { font-size: 2rem; }
      .display-5 { font-size: 1.75rem; }
      
      .nav-logo { height: 32px; }
      
      .hero-wrapper { padding: 2.5rem 0; }
      
      /* Specs Grid adjustment for very small screens */
      .specs-grid { padding: 8px; gap: 5px; }
      .spec-box i { font-size: 1rem; }
      .spec-box span { font-size: 0.65rem; }
      
      /* Sticky Contact Bar Adjustment */
      .sticky-contact-bar .btn {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
        flex: 1; /* Makes buttons equal width side-by-side */
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .sticky-contact-bar .container .d-flex {
        gap: 10px !important; 
        padding: 0 10px;
      }
    }