    /* ==================== DESIGN TOKENS ==================== */
    :root {
      --ocean:      #0e2a47; /* Deep Coastal Navy */
      --ocean-deep: #061626;
      --ocean-light:#1c4b7a;
      --sand:       #e8d9b8;
      --sand-light: #f5efe0;
      --sand-mid:   #c9b48a;
      --white:      #ffffff;
      --off-white:  #fcfcfd;
      --dark:       #0e1c2f;
      --dark-mid:   #1e3a5f;
      --text-body:  #3b4c61;
      --text-muted: #748da9;
      --gold:       #00948E; /* Updated to Blue Beach Teal */
      --gold-light: #4db3af;
      --beach-teal: #00948E;
      --beach-sand: #e8d9b8;
      --glass-bg:   rgba(255,255,255,0.12);
      --glass-border: rgba(255,255,255,0.25);
      --shadow-soft: 0 8px 32px rgba(14,42,71,0.12);
      --shadow-card: 0 16px 48px rgba(14,28,47,0.15);
    }

    /* ==================== BASE ==================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-body);
      background: var(--off-white);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; color: var(--dark); }

    .section-padding { padding: 100px 0; }
    .section-title {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.2;
      color: var(--dark);
    }
    .section-subtitle {
      font-size: 1rem;
    color: #00948E;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .divider-wave {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--ocean), var(--gold));
      border-radius: 2px;
      margin: 12px 0 20px;
    }
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-light));
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(13,110,253,0.35);
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(13,110,253,0.5);
      color: #fff;
    }
    .btn-gold-custom {
      background: linear-gradient(135deg, var(--beach-teal), var(--gold-light));
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(0, 148, 142, 0.35);
      text-decoration: none;
      display: inline-block;
    }
    .btn-gold-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(0, 148, 142, 0.5);
      color: #fff;
    }
    .btn-outline-custom {
      background: transparent;
      color: var(--ocean);
      border: 2px solid var(--ocean);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-custom:hover {
      background: var(--ocean);
      color: #fff;
      transform: translateY(-2px);
    }
    .pulse-animation {
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(13,110,253,0.5); }
      70%  { box-shadow: 0 0 0 15px rgba(13,110,253,0); }
      100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
    }
    .pulse-gold { animation: pulseBeach 2s infinite; }
    @keyframes pulseBeach {
      0%   { box-shadow: 0 0 0 0 rgba(0, 148, 142, 0.5); }
      70%  { box-shadow: 0 0 0 15px rgba(0, 148, 142, 0); }
      100% { box-shadow: 0 0 0 0 rgba(0, 148, 142, 0); }
    }
    html { 
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-body);
      background: var(--off-white);
      padding-top: 70px;
      position: relative;
    }

    /* Mobile-only overflow lock to prevent horizontal scroll without breaking desktop sticky */
    @media (max-width: 991px) {
      html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
      }
    }

    @media (min-width: 992px) {
      body { padding-top: 0; }
    }

    h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; color: var(--dark); }

    @media (min-width: 992px) {
      .map-frame-wrapper {
        position: sticky !important;
        top: 120px !important;
        z-index: 10;
      }
    }

    /* ==================== STICKY NAVBAR ==================== */
    #mainNav {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      height: auto !important;
      z-index: 10000 !important; /* Absolute top priority */
      transition: none;
      padding: 15px 0 !important;
      background: #ffffff !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transform: none !important;
      -webkit-transform: none !important;
    }
    #mainNav.scrolled {
      padding: 6px 0;
      box-shadow: 0 4px 25px rgba(0,0,0,0.12);
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    /* .brand-logo-wrapper {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
    } */
    .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
    .brand-text .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ocean);
      letter-spacing: 0.02em;
    }
    .brand-text .brand-sub {
      font-size: 0.65rem;
      color: var(--text-muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .nav-link-custom {
      color: var(--text-body) !important;
      font-size: 0.87rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 0 !important;
      margin: 0 12px;
      transition: color 0.3s;
      text-decoration: none;
    }
    .nav-link-custom:hover { color: var(--gold) !important; text-decoration: none; }
    .nav-btn-enquire {
      background: #00948E !important;
      color: #fff !important;
      border-radius: 50px;
      padding: 10px 24px !important;
      font-weight: 700;
      font-size: 0.85rem;
      border: 2px solid #00948E !important;
      transition: all 0.3s ease;
    }
    .nav-btn-enquire:hover { 
      background: #00948E !important;
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px #00948E;
    }
    .nav-btn-enquire::after { display: none; }

    /* Mobile Adjustments */
    @media (max-width: 991px) {
      #mainNav { padding: 8px 0; }
      #mainNav .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
      }
      .navbar-brand img {
        height: 28px !important;
        max-width: 140px;
      }
      .mobile-fixed-bottom-bar {
        position: fixed !important;
        bottom: 0 !important; 
        left: 0 !important; 
        right: 0 !important;
        width: 100% !important;
        height: 60px;
        z-index: 3000 !important;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
        display: block;
        background: #fff;
      }
      .mobile-cta-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-decoration: none !important;
        font-weight: 800;
        font-size: 0.8rem;
        text-transform: uppercase;
        gap: 8px;
      }
      body { padding-bottom: 60px !important; }
    }

    @media (max-width: 575px) {
      /* .navbar-brand img {
        height: 22px !important;
        max-width: 110px !important;
      } */
      .nav-btn-enquire {
        font-size: 0.65rem !important;
        padding: 5px 10px !important;
      }
      #mainNav .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
      }
      .trust-num { font-size: 0.85rem !important; }
      .trust-item { gap: 5px !important; padding: 5px !important; }
    }

    /* ==================== HERO SECTION ==================== */
    #hero {
      position: relative;
      width: 100%;
      /* min-height: 100vh; */
      overflow: hidden;
    }

    #hero .hero-banner{
      padding-top: 80px;
    }

    .hero-img-wrap {
      position: relative;
      width: 100%;
      height: 100vh;
    }
    .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(14,28,47,0.78) 0%,
        rgba(14,28,47,0.55) 50%,
        rgba(14,28,47,0.25) 100%
      );
    }
    .hero-content-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
    }
    .hero-text-col { z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,146,42,0.2);
      border: 1px solid rgba(200,146,42,0.5);
      color: var(--gold-light);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-badge i { font-size: 0.9rem; }
    .hero-headline {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .hero-headline span { color: var(--gold-light); }
    .hero-sub {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: rgba(255,255,255,0.85);
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }
    .hero-tag {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.9);
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 500;
      backdrop-filter: blur(8px);
    }
    .hero-stats {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    .hero-stat {
      text-align: left;
    }
    .hero-stat .val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--gold-light);
      display: block;
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.65);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .hero-stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.2);
      align-self: stretch;
    }

    /* Hero Lead Form */
    .hero-form-col {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      width: 400px;
      z-index: 10;
    }
    .lead-form-card {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.6);
    }
    .lead-form-card .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 2px;
    }
    .hero-form-logo { height: 100px; margin-bottom: 10px; }
    .lead-form-card .form-sub {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .lead-form-card .form-control {
      border: 1px solid #dde6ef;
      border-radius: 10px;
      padding: 11px 16px;
      font-size: 0.88rem;
      color: var(--dark);
      background: #f8fbff;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .lead-form-card .form-control:focus {
      border-color: var(--ocean);
      box-shadow: 0 0 0 3px rgba(13,110,253,0.08);
      background: #fff;
    }
    .lead-form-card .form-control::placeholder { color: #a0b4c8; }
    .lead-form-card .btn-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-light));
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.05em;
    }
    .lead-form-card .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,110,253,0.4); }
    .form-disclaimer {
      font-size: 0.72rem;
      color: #a0b4c8;
      text-align: center;
      margin-top: 12px;
    }
    .form-rera {
      font-size: 0.7rem;
      color: #a0b4c8;
      text-align: center;
      margin-top: 6px;
    }
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 14px;
      flex-wrap: wrap;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 4px;
      background: #f0f6ff;
      border-radius: 50px;
      padding: 4px 10px;
      font-size: 0.7rem;
      color: var(--ocean-deep);
      font-weight: 600;
    }

    /* Hero scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.6);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ==================== URGENCY STRIP ==================== */
    .urgency-strip {
      background: linear-gradient(90deg, var(--dark), var(--dark-mid), var(--dark));
      color: #fff;
      text-align: center;
      padding: 12px;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
    }
    .urgency-strip span { color: var(--gold-light); font-weight: 700; }

    /* ==================== TRUST BAR ==================== */
    .trust-bar {
      background: #00948E;
      border-bottom: 1px solid #e8f0f8;
      padding: 15px 0;
      overflow: hidden;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 5px 10px;
      border-right: 1px solid rgba(0,0,0,0.05);
    }
    .trust-item:last-child { border-right: none; }
    
        @media (max-width: 991px) {
      .trust-bar { 
        background: #00948E; 
        padding: 40px 0; 
        margin-top: 0;
      }
      .trust-item { 
        background: transparent;
        border: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
        gap: 8px;
        border-right: 1px solid rgba(0,0,0,0.1);
        height: 100%;
        display: flex;
        justify-content: center;
      }
      .trust-item:nth-child(even) { border-right: none; }
      .trust-item:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,0.1); }

      .trust-icon-wrap { 
        margin: 0 auto; 
        background: transparent !important; 
        color: #fff !important;
        width: auto !important; height: auto !important;
        font-size: 1.5rem !important;
        box-shadow: none !important;
      }
      .trust-num { 
        font-size: 0.95rem !important; 
        color: #fff !important; 
        font-family: 'Cormorant Garamond', serif !important; 
        font-weight: 700 !important;
        line-height: 1.2;
        text-transform: uppercase;
      }
      .trust-label { 
        font-size: 0.58rem !important; 
        color: #fff !important; 
        text-transform: uppercase; 
        letter-spacing: 0.15em;
        font-weight: 700;
        margin-top: 0;
      }
    }
    .trust-icon-wrap {
      width: 42px;
      height: 42px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000; font-size: 18px; flex-shrink: 0;
    }
    .trust-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
        .trust-number {
          font-family: 'Cormorant Garamond', serif;
          font-size: 1.5rem;
          font-weight: 700;
          color: #fff;
          line-height: 1;
        }
    .trust-label {
      font-size: 0.75rem;
      color: #fff;
      padding-top: 10px;
      line-height: 1.3;
    }

    /* ==================== ABOUT SECTION ==================== */
    #about {
      padding: 100px 0;
      background: var(--off-white);
    }
    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .about-img-wrap img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.04); }
    .about-img-badge {
      position: absolute;
      bottom: 24px; left: 24px;
      background: rgba(14,28,47,0.88);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 14px 20px;
      color: #fff;
    }
    .about-img-badge .val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold-light);
      display: block;
      line-height: 1;
    }
    .about-img-badge .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
    .highlight-point {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid #e8f0f8;
    }
    .highlight-point:last-child { border-bottom: none; }
    .highlight-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(26,143,232,0.08));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--ocean); font-size: 20px;
    }
    .highlight-text h5 {
      font-size: 0.95rem; font-weight: 600;
      color: var(--dark); margin-bottom: 2px;
      font-family: 'Inter', sans-serif;
    }
    .highlight-text p {
      font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5;
    }

    /* ==================== LOCATION SECTION ==================== */
    #location {
      padding: 40px 0 !important;
      background: linear-gradient(180deg, #f0f6ff 0%, var(--off-white) 100%);
      
    }
    .location-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px;
      box-shadow: var(--shadow-soft);
      border: 1px solid #e8f0f8;
      text-align: center;
      transition: all 0.35s ease;
      height: 100%;
    }
    .location-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(13,110,253,0.18);
      border-color: rgba(13,110,253,0.25);
    }
    .location-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-light));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 24px;
      margin: 0 auto 14px;
    }
    .location-card h5 {
      font-size: 1rem; font-weight: 600;
      color: var(--dark); margin-bottom: 4px;
      font-family: 'Inter', sans-serif;
    }
    .location-card .dist {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--ocean);
    }
    .location-card p {
      font-size: 0.8rem; color: var(--text-muted); margin-top: 4px;
    }
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid #e8f0f8;
    }
    .map-container iframe { display: block; }

    /* ==================== INFRASTRUCTURE ==================== */
    #infrastructure {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
      position: relative;
      overflow: hidden;
    }
    #infrastructure::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(26,143,232,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .infra-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(16px);
      border-radius: 20px;
      padding: 28px 24px;
      text-align: center;
      transition: all 0.35s ease;
      height: 100%;
    }
    .infra-card:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-6px);
      border-color: rgba(41,142,137,0.4);
      box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    }
    .infra-icon {
      width: 68px; height: 68px;
      background: linear-gradient(135deg, rgba(41,142,137,0.25), rgba(41,142,137,0.15));
      border: 1px solid rgba(41,142,137,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-light); font-size: 28px;
      margin: 0 auto 16px;
    }
    .infra-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--gold-light); margin-bottom: 6px;
    }
    .infra-card h5 {
      font-size: 0.95rem; font-weight: 600;
      color: #fff; margin-bottom: 8px;
      font-family: 'Inter', sans-serif;
    }
    .infra-card p {
      font-size: 0.82rem; color: rgba(255,255,255,0.6);
      line-height: 1.6; margin: 0;
    }
    .infra-total-card {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 20px;
      padding: 32px 28px;
      text-align: center;
    }
    .infra-total-card .amt {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 700;
      color: var(--dark); display: block; line-height: 1;
    }
    .infra-total-card .amt-label {
      font-size: 0.85rem; color: rgba(14,28,47,0.7);
      text-transform: uppercase; letter-spacing: 0.08em;
    }

    /* ==================== AMENITIES ==================== */
    #amenities {
      padding: 100px 0;
      /* background: var(--off-white); */
      background-image: url('../images/about-background.jpg') !important;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }
    .amenity-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: var(--shadow-soft);
      border: 1px solid #e8f0f8;
      transition: all 0.35s ease;
      cursor: default;
    }
    .amenity-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(13,110,253,0.18);
      border-color: var(--ocean);
    }
    .amenity-card:hover .amenity-icon { background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-light)); color: #fff; }
    .amenity-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, #e8f4ff, #d0e8ff);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--ocean); font-size: 30px;
      margin: 0 auto 16px;
      transition: all 0.35s ease;
    }
    .amenity-card h5 {
      font-size: 0.9rem; font-weight: 600;
      color: var(--dark); margin: 0;
      font-family: 'Inter', sans-serif;
    }
    .amenity-card p {
      font-size: 0.78rem; color: var(--text-muted); margin-top: 4px;
    }

    /* ==================== PLOT DETAILS ==================== */
    #plots {
      padding: 100px 0;
      background: linear-gradient(180deg, #f0f6ff 0%, var(--off-white) 100%);
    }
    .plot-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid #e8f0f8;
      transition: all 0.35s ease;
    }
    .plot-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(13,110,253,0.2); }
    .plot-header {
      background: linear-gradient(135deg, var(--dark), var(--dark-mid));
      padding: 24px;
      text-align: center;
    }
    .plot-header h3 {
      font-size: 2.2rem; font-weight: 700;
      color: var(--gold-light); margin: 0;
    }
    .plot-header p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 4px 0 0; }
    .plot-body { padding: 24px; }
    .plot-feature {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f6ff;
      font-size: 0.88rem; color: var(--text-body);
    }
    .plot-feature:last-child { border-bottom: none; }
    .plot-feature i { color: var(--ocean); flex-shrink: 0; font-size: 1rem; }
    .highlight-box {
      background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-light));
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      color: #fff;
      height: 100%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .highlight-box .price-from {
      font-size: 0.8rem; text-transform: uppercase;
      letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 8px;
    }
    .highlight-box .price-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.2rem; font-weight: 700;
      color: var(--gold-light); line-height: 1;
    }
    .highlight-box .price-unit {
      font-size: 0.85rem; opacity: 0.7; margin-bottom: 24px;
    }

    /* ==================== GALLERY ==================== */
    #gallery {
      padding: 100px 0;
      background: var(--dark);
    }
    #gallery .section-title { color: #fff; }
    #gallery .section-subtitle { color: rgba(255,255,255,0.5); }
    #gallery .divider-wave { margin: 12px auto 20px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 12px;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item:first-child {
      grid-column: 1 / 3;
      grid-row: 1;
    }
    .gallery-item img {
      width: 100%; height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:first-child img { height: 340px; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(14,28,47,0.7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      color: #fff; font-size: 0.85rem;
      font-weight: 600; letter-spacing: 0.05em;
    }

    /* ==================== CTA SECTION ==================== */
    #cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #0a4d8a 0%, #0d6efd 50%, #1a8fe8 100%);
      position: relative;
      overflow: hidden;
    }
    #cta-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      pointer-events: none;
    }
    .cta-card-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
    .cta-action-btn {
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.3);
      color: #fff;
      border-radius: 16px;
      padding: 22px 28px;
      text-align: center;
      cursor: pointer;
      transition: all 0.35s ease;
      min-width: 160px;
      text-decoration: none;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .cta-action-btn:hover {
      background: rgba(255,255,255,0.2);
      border-color: var(--gold-light);
      transform: translateY(-4px);
      color: #fff;
    }
    .cta-action-btn i { font-size: 28px; color: var(--gold-light); }
    .cta-action-btn span { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; }

    /* ==================== DEVELOPER SECTION ==================== */
    #developer {
      padding: 80px 0;
      background: var(--off-white);
    }
    .developer-stat {
      text-align: center;
      padding: 20px;
    }
    .developer-stat .val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem; font-weight: 700;
      color: var(--ocean); display: block;
    }
    .developer-stat .lbl {
      font-size: 0.8rem; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.08em;
    }

    /* ==================== COMPLIANCE FOOTER ==================== */
    .main-footer {
      background: #00948E;
      padding: 40px 0 40px;
      color: #fff;
      font-family: 'Inter', sans-serif;
    }
    .footer-legal-text {
      font-size: 0.75rem;
      line-height: 2;
      color: #fff;
      max-width: 1050px;
      margin: 0 auto;
      text-align: center;
    }
    .rera-info {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
      margin: 0;
    }
    .rera-info a {
      color: #00948E;
      text-decoration: none;
    }
    .copyright-note, .marketing-note {
      font-size: 14px !important;
      color: #fff;
    }
    .footer-branding-row .col-md-4 {
      padding-top: 15px;
      padding-bottom: 15px;
    }
    @media (max-width: 768px) {
      .footer-branding-row .text-start, 
      .footer-branding-row .text-end,
      .footer-branding-row .text-center {
        text-align: center !important;
      }
    }

    /* ==================== FLOATING BUTTONS ==================== */
    .floating-whatsapp {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 999;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 26px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(37,211,102,0.45);
      transition: all 0.3s;
      animation: waFloat 3s ease-in-out infinite;
    }
    .floating-whatsapp:hover { background: #20ba5a; transform: scale(1.1); color: #fff; }
    @keyframes waFloat {
      0%,100% { transform: translateY(0); }
      50%       { transform: translateY(-6px); }
    }

    /* Mobile sticky CTA */
    .mobile-sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 998;
      background: rgba(14,28,47,0.97);
      backdrop-filter: blur(16px);
      padding: 12px 16px;
      gap: 10px;
    }
    .mobile-sticky-cta a {
      flex: 1; text-align: center;
      padding: 12px;
      border-radius: 10px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none;
      transition: all 0.3s;
    }
    .mobile-sticky-cta .call-btn {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
    }
    .mobile-sticky-cta .enquire-btn {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark);
    }

    /* ==================== POPUP FORM ==================== */
    .popup-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(14,28,47,0.7);
      backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: center; justify-content: center;
    }
    .popup-overlay.active { display: flex; }
    .popup-modal {
      background: #fff;
      border-radius: 24px;
      padding: 36px 32px;
      width: 100%; max-width: 420px;
      position: relative;
      box-shadow: 0 32px 80px rgba(0,0,0,0.3);
      animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    @keyframes popIn {
      from { opacity: 0; transform: scale(0.85) translateY(30px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .popup-close {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px; border-radius: 50%;
      background: #f0f6ff; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 16px;
      transition: all 0.2s;
    }
    .popup-close:hover { background: var(--ocean); color: #fff; }
    .popup-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 700;
      color: var(--dark); margin-bottom: 4px;
    }
    .popup-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
    .popup-form .form-control {
      border: 1px solid #dde6ef; border-radius: 10px;
      padding: 11px 16px; font-size: 0.88rem;
      background: #f8fbff; color: var(--dark);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .popup-form .form-control:focus {
      border-color: var(--ocean);
      box-shadow: 0 0 0 3px rgba(13,110,253,0.08);
    }
    .popup-form .btn-submit {
      width: 100%; padding: 14px;
      background: #00948E;
      color: #fff; font-weight: 700; font-size: 1rem;
      border: none; border-radius: 10px; cursor: pointer;
      transition: all 0.3s; margin-top: 4px;
    }
    .popup-form .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,110,253,0.4); }
    .popup-access-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: #f0f6ff; color: var(--ocean);
      border-radius: 50px; padding: 4px 12px;
      font-size: 0.75rem; font-weight: 600;
      margin-bottom: 14px;
    }

    /* ==================== SECTION WAVE DIVIDERS ==================== */
    .wave-divider { line-height: 0; overflow: hidden; }
    .wave-divider svg { display: block; }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 991.98px) {
      h2 { font-size: 28px !important; }
      p, .text-body { font-size: 16px !important; }
      .section-padding, #about, #amenities, #location, #pricing, #developer, .why-invest-section { 
        padding: 40px 0 !important; 
      }
      #hero { min-height: auto; overflow: visible !important; }
      .hero-img-wrap { height: 55vw; min-height: 280px; }
      .hero-form-col {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        padding: 20px 16px 40px !important;
        top: auto !important;
        right: auto !important;
        background: var(--off-white);
        margin-top: -10px; 
      }
      .hero-form-logo { height: 28px !important; margin-bottom: 5px; }
      .hero-content-wrap { position: relative; padding: 50px 0 30px; align-items: flex-start; }
      .hero-img-wrap { height: 70vw; min-height: 240px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-column: 1 / 3; }
      .trust-item { border-right: none; border-bottom: 1px solid #e8f0f8; padding: 10px; }
    }

    @media (max-width: 767.98px) {

      .footer-legal-text{
        font-size: 14px !important;
        line-height: 2;
        color: #fff;
        max-width: 1050px;
        margin: 0 auto;
        text-align: justify;
        padding: 10px 0;
      }
      .mobile-sticky-cta { display: flex; }
      body { padding-bottom: 70px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: 1; }
      .hero-stats { gap: 12px; }
      .hero-stat .val { font-size: 1.3rem; }
      .cta-card-row { gap: 10px; }
      .cta-action-btn { min-width: 130px; padding: 16px 20px; }
      .popup-modal { margin: 0 16px; padding: 28px 22px; }
    }

    /* ==================== AOS OVERRIDE ==================== */
    [data-aos] { will-change: transform, opacity; }

    /* ==================== NEW SECTION BACKGROUNDS & PARALLAX ==================== */
    
    /* About Parallax */
    .about-parallax-section {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }
    .about-parallax-bg {
      position: absolute;
      top: -100px; /* offset for parallax */
      left: 0;
      width: 100%;
      height: calc(100% + 200px);
      background: url('../images/about-background.jpg') center/cover no-repeat;
      z-index: 1;
      will-change: transform;
    }
    .about-parallax-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(14,28,47,0.65) 0%, rgba(14,28,47,0.45) 100%);
      z-index: 2;
    }

    .about-stat-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
    .about-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }
    .about-stat-lbl {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      margin-top: 8px;
    }

    .about-glass-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 40px;
    }
    .about-feature-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    .about-feature-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: rgba(13, 110, 253, 0.15);
      border: 1px solid rgba(13, 110, 253, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ocean-light);
      font-size: 20px;
    }
    .about-feature-item strong {
      color: #fff;
      font-size: 1rem;
      display: block;
      margin-bottom: 4px;
    }
    .about-feature-item p {
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
      margin: 0;
      line-height: 1.5;
    }

    .about-img-glass {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .about-img-glass img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }
    .about-img-badge-glass {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(14,28,47,0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 12px 20px;
      color: #fff;
    }
    .about-img-badge-glass .val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      display: block;
    }
    .about-img-badge-glass .lbl {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.7);
    }
    .about-spec-pill {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px;
      padding: 10px 16px;
      color: #fff;
      font-size: 0.85rem;
      text-align: center;
    }

    /* Section Backgrounds */
    .location-section-bg {
      background: linear-gradient(180deg, #f0f6ff 0%, var(--off-white) 100%);
      padding: 100px 0;
    }
    
    .infra-section-bg {
      position: relative;
      padding: 100px 0;
      background: url('../images/section_aerial_layout.png') center/cover fixed no-repeat;
    }
    .infra-section-overlay {
      position: absolute;
      inset: 0;
      background: rgba(14, 28, 47, 0.85);
    }
    
    .amenities-section-bg {
      position: relative;
      padding: 100px 0;
      background: url('../images/gallery_beach.png') center/cover fixed no-repeat;
    }
    .amenities-section-overlay {
      position: absolute;
      inset: 0;
      background: rgba(248, 251, 255, 0.95);
    }

    .why-section-bg {
      position: relative;
      padding: 100px 0;
      background: url('../images/why-buy.png') center/cover fixed no-repeat !important;
    }
    .why-section-overlay {
      position: absolute;
      inset: 0;
      background: rgba(14, 28, 47, 0.92);
    }
    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      color: #fff;
      transition: transform 0.3s, background 0.3s;
    }
    .why-card:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.08);
    }
    .why-card h6 {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }
    .why-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      margin: 0;
    }
    .why-perfekt-card {
      background: linear-gradient(135deg, rgba(41,142,137,0.15), rgba(41,142,137,0.05));
      border: 1px solid rgba(41,142,137,0.3);
      backdrop-filter: blur(16px);
      border-radius: 24px;
      padding: 40px;
      color: #fff;
    }
    
    .developer-section-bg {
      position: relative;
      padding: 100px 0;
      background: url('../images/section_entrance_gate.png') center/cover fixed no-repeat;
    }
    .developer-section-overlay {
      position: absolute;
      inset: 0;
      background: rgba(245, 239, 224, 0.92); /* sand-light with opacity */
    }
    /* ==================== WHY INVEST SECTION ==================== */
    .why-invest-section {
      padding: 100px 0;
      /* background: #ffffff; */
      background-image: url('../images/Untitled-1.png') !important;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }
    
    .why-invest-card {
      background: #fff;
      border-radius: 24px;
      padding: 40px 30px;
      height: 100%;
      border: 1px solid #f0f4f8;
      box-shadow: 0 10px 40px rgba(15, 23, 36, 0.05);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .why-invest-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--ocean), var(--gold-light));
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .why-invest-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(15, 23, 36, 0.12);
      border-color: rgba(114, 47, 55, 0.1);
    }
    .why-invest-card:hover::before {
      opacity: 1;
    }
    .why-invest-icon {
      width: 70px;
      height: 70px;
      background: #00948E;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 32px;
      margin-bottom: 25px;
      transition: all 0.3s ease;
    }
    .why-invest-card:hover .why-invest-icon {
      background: #00948E;
      color: #fff;
      transform: scale(1.1);
    }
    .why-invest-card h4 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--dark);
      position: relative;
      padding-bottom: 15px;
    }
    .why-invest-card h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 90px;
      height: 3px;
      background: var(--gold);
      border-radius: 4px;
    }
    .why-invest-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }
    @media (max-width: 768px) {
      .why-invest-section { padding: 60px 0; }
      .why-invest-card { padding: 30px 20px; }
    }
    /* ==================== 3D AMENITIES SWIPER ==================== */
    .amenities-parallax-container {
      position: relative;
      padding: 40px 0;
      overflow: hidden;
    }
    .amenities-parallax-bg {
      position: absolute;
      top: -150px;
      left: 0;
      width: 100%;
      height: calc(100% + 300px);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 1;
      will-change: transform;
    }
    #amenitiesParallaxBg { background-image: url('../images/amenities-bg.jpg'); }
    /* #infraParallaxBg { background-image: url('../images/about-background.jpg'); } */
    .amenities-parallax-overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(180deg, rgb(255 255 255 / 83%) 0%, rgb(255 255 255 / 58%) 40%, #00000000 100%); */
      z-index: 2;
    }
    .amenitySwiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
      z-index: 3;
    }
    .amenity-3d-card {
      position: relative;
      /* background: transparent; */
      border: none;
      border-radius: 24px;
      padding: 0;
      text-align: center;
      transition: all 0.5s ease;
      height:360px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      box-shadow: none !important;
    }
    .amenity-3d-card img {
      width: 100%;
      height: 320px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: none !important;
    }
    .amenity-3d-card h4 {
      background: rgba(255, 255, 255, 0.95);
      color: var(--ocean);
      font-size: 1.4rem;
      margin-top: -25px;
      padding: 12px 28px;
      border-radius: 50px;
      position: relative;
      z-index: 5;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      border: 1px solid var(--gold-light);
    }
    .amenity-3d-card p {
      color: var(--text-body);
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .swiper-slide {
      width: 450px;
      transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      transform: scale(0.85);
      z-index: 1;
    }
    .swiper-slide a {
      text-decoration: none !important;
      display: block;
      outline: none;
    }
    .swiper-slide a:hover, .swiper-slide a:focus {
      text-decoration: none !important;
      outline: none;
    }
    .swiper-slide-active {
      transform: scale(1.05);
      z-index: 10;
    }
    .swiper-button-next, .swiper-button-prev { 
      color: #00948E !important; 
      background: #ffffff !important;
      width: 50px !important;
      height: 50px !important;
      border-radius: 50% !important;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 148, 142, 0.1);
      top: 42% !important;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
      font-size: 20px !important;
      font-weight: 800;
    }
    .swiper-button-next:hover, .swiper-button-prev:hover {
      transform: scale(1.1) translateY(-50%);
      background: #00948E !important;
      color: #fff !important;
    }
    .swiper-button-next { right: 10px !important; }
    .swiper-button-prev { left: 10px !important; }
    .swiper-pagination {
      background: #ffffff !important;
      padding: 10px 20px !important;
      border-radius: 50px !important;
      width: auto !important;
      left: 50% !important;
      transform: translateX(-50%);
      display: inline-flex;
      bottom: 80px !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      z-index: 10;
    }
    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: #00948E !important;
      opacity: 0.4;
      transition: all 0.3s ease;
      margin: 0 6px !important;
    }
    .swiper-pagination-bullet-active {
      width: 32px;
      border-radius: 6px;
      background: #00948E !important;
      opacity: 1;
    }

    @media (max-width: 991px) {
      .swiper-slide { width: 380px; }
    }
    @media (max-width: 768px) {
      .swiper-slide { width: 300px; }
      .amenity-3d-card { height: 320px !important; }
      .amenity-3d-card img { height: 280px !important; }
      .amenitySwiper { padding-top: 30px !important; padding-bottom: 60px !important; }
      .swiper-pagination { bottom: 10px !important; }
    }
    /* ==================== MOBILE STICKY CTA ==================== */
    .mobile-sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: #fff;
      display: none !important; /* Hidden by default on desktop */
      z-index: 999;
      box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    }
    .mobile-sticky-cta a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    .mobile-sticky-cta .call-btn {
      background: var(--dark);
      color: #fff;
    }
    .mobile-sticky-cta .enquire-btn {
      background: var(--gold);
      color: #fff;
    }

    @media (max-width: 768px) {
      .mobile-sticky-cta {
        display: flex !important; /* Visible only on mobile */
      }
    }

    /* ==================== NEW LOCATION STYLE ==================== */
    .location-adv-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .location-category-box {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid rgba(0, 148, 142, 0.1);
      margin-bottom: 25px;
    }
    .location-category-box h4 {
      color: var(--ocean);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .location-category-box h4 i {
      margin-bottom: 2px;
    }
    .location-category-box h4::after {
      content: '';
      display: block;
      width: 45px;
      height: 3px;
      background: linear-gradient(90deg, var(--ocean), #00948E);
      border-radius: 2px;
      margin-top: 4px;
    }
    .location-category-box h4 i {
      color: #00948E;
      font-size: 1.4rem;
    }
    .loc-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(0,0,0,0.08);
    }
    .loc-item:last-child { border-bottom: none; }
    .loc-name {
      font-size: 0.95rem;
      color: var(--text-body);
      font-weight: 500;
    }
    .loc-dist {
      font-size: 0.85rem;
      font-weight: 700;
      color: #00948E;
      background: rgba(0, 148, 142, 0.1);
      padding: 2px 10px;
      border-radius: 50px;
      white-space: nowrap;
    }
    .map-frame-wrapper {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.12);
      border: 5px solid #fff;
    }

    /* ==================== HERO FORM HIGHLIGHTS ==================== */
    .lead-form-highlight {
      line-height: normal;
      box-shadow: 0 30px 60px rgba(0,0,0,0.6) !important;
      border: 2px solid var(--gold) !important;
      background: #fff !important;
    }
    .lead-form-highlight .form-title {
      margin-top: 0;
      font-size: 1.3rem !important;
      color: var(--gold) !important;
    }
    .lead-form-highlight .btn-submit {
      background: var(--gold) !important;
      color: #fff !important;
      font-weight: 700;
      border-radius: 50px;
    }

    /* ==================== AMENITIES GLASS PANEL ==================== */
    .amenities-header-panel {
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 15px 35px rgba(0,0,0,0.05);
      padding: 3rem;
      margin-bottom: 3rem;
    }

    /* ==================== MASTER PLAN ==================== */
    .master-plan-section {
      padding: 40px 0;
      background: #EDEDED;
      position: relative;
      /* background-image: url('/assets/images/location-map.png') !important;
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
      position: relative; */
    }
    .master-plan-wrapper {
      background: #f8f9fa;
      padding: 0;
      border-radius: 20px;
      box-shadow: 0 40px 100px rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 148, 142, 0.2);
      max-height: 400px;
    }
    .master-plan-wrapper img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      object-position: center;
      filter: blur(3px);
      transition: all 0.6s ease;
      display: block;
    }
    .master-plan-content-overlay {
      position: absolute;
      inset: 0;
      background: rgba(14, 28, 47, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10;
      backdrop-filter: blur(2px);
    }
    .btn-download-master {
      background: #00948E !important;
      color: #fff !important;
      padding: 16px 36px !important;
      border-radius: 50px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      transition: 0.3s;
      text-decoration: none;
    }
    .btn-download-master:hover {
      transform: scale(1.05) translateY(-5px);
      background: #00948E !important;
    }
    .master-plan-overlay {
      position: absolute;
      inset: 20px;
      background: rgba(0, 148, 142, 0.1);
      opacity: 0;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      pointer-events: none;
    }
    .master-plan-wrapper:hover .master-plan-overlay {
      opacity: 1;
    }
    .btn-download-plan {
      background: #00948E !important;
      color: #000 !important;
      width: auto !important;
      padding: 15px 40px !important;
      display: inline-flex !important;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.3s;
    }
    .btn-download-plan:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 148, 142, 0.3);
    }

    /* ==================== DEVELOPER PARALLAX ==================== */
    .developer-parallax-container {
      position: relative;
      overflow: hidden;
      padding: 100px 0;
      color: #fff;
    }
    .developer-parallax-bg {
      position: absolute;
      top: -15%;
      left: 0;
      width: 100%;
      height: 130%;
      background: linear-gradient(0deg, rgba(14, 28, 47, 0.85) 0%, rgba(0, 148, 142, 0.8) 100%), url('../images/view.jpg');
      background-size: cover;
      background-position: center;
      z-index: 0;
      filter: contrast(1.1) brightness(0.8);
      will-change: transform;
    }
    .developer-parallax-container .container {
      position: relative;
      z-index: 2;
    }
    .developer-stat .val {
      color: #00948E !important;
    }
    .developer-stat .lbl {
      color: rgba(255, 255, 255, 0.8) !important;
    }
    .developer-parallax-container .section-title, 
    .developer-parallax-container .mt-3,
    .developer-parallax-container .section-subtitle {
      color: #fff !important;
    }
    /* ==================== PROJECT OVERVIEW BADGES ==================== */
    .overview-trust-badge {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      padding: 14px 24px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.4);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      cursor: default;
    }
    .overview-trust-badge:hover {
      transform: translateY(-5px) scale(1.02);
      background: #fff;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border-color: var(--gold);
    }
    .badge-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--ocean), var(--ocean-deep));
      color: #fff;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 8px 15px rgba(13,110,253,0.2);
    }
    .overview-trust-badge:hover .badge-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark);
      box-shadow: 0 8px 15px rgba(200,146,42,0.3);
    }
    .badge-content {
      display: flex;
      flex-direction: column;
    }
    .badge-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 2px;
    }
    .badge-text {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--ocean);
      letter-spacing: 0.02em;
    }
    /* ==================== MINIMALIST INFO POINTS ==================== */
    .info-accent-point {
      display: flex;
      align-items: center;
      gap: 15px;
      transition: all 0.4s ease;
    }
    .accent-bar {
      width: 4px;
      height: 44px;
      background: var(--gold);
      border-radius: 4px;
      box-shadow: 0 0 15px rgba(200,146,42,0.3);
      transition: all 0.4s ease;
    }
    .info-accent-point:hover .accent-bar {
      height: 60px;
    }
    .accent-body {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .accent-label {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.15em;
      margin-bottom: 4px;
    }
    .accent-title {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--ocean);
      font-family: 'Cormorant Garamond', serif;
    }

    /* ==================== FANCYBOX UI OVERRIDES ==================== */
    .fancybox__container {
      z-index: 11000 !important; /* Higher than #mainNav (10000) */
    }
    .fancybox__toolbar {
      opacity: 1 !important;
      z-index: 11001 !important;
    }
    .f-button.is-close-btn {
      z-index: 11002 !important;
    }



         .selldof label,
         .selldof .title {
           display: none !important;
         }

         
    
          .selldof .form-control,
          .sell_do_form_control {
            height: 50px !important;
          }
    
          .selldof .btn,
          .sell_do_ctc_btn,
          .selldof .btn,
          .sell_do_verify_btn {
            width: 100%;
            font-size: 20px !important;
           font-weight: 700 !important;
           background: #00948E !important;
           border: none;
           color: white !important;
           border-radius: 10px !important;
           /* box-shadow:
            0 6px 0 #0f1f38,
            0 8px 15px rgba(30, 58, 95, 0.35); */
           transform: translateY(0);
           transition: all 0.15s ease;
           position: relative;
           letter-spacing: 0.03em;
         }