      html {
        margin: 0 !important;
        padding: 0 !important;
        scroll-behavior: smooth;
      }
      body {
        margin: 0 !important;
        padding: 0 !important;
      }
      :root {
        --eldeco-green: #13805f;
        --text: #111111;
        --bg: #d9ebe5;
        --border: #e7e3db;
        --btn-bg: #13805f;
        --btn-text: #ffffff;
        --font-body: "Inter", sans-serif;
        --font-display: "Cormorant Garamond", serif;
        --font-ui: "Manrope", sans-serif;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background: var(--bg);
        color: var(--text);
        padding-top: 76px !important;
        overflow-x: hidden;
      }
      #page-wrapper {
        overflow-x: hidden;
        width: 100%;
        position: relative;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      button {
        border: none;
        background: none;
        cursor: pointer;
        font: inherit;
      }

      .section-heading {
        text-align: center;
        margin-bottom: 34px;
      }
      .section-heading .brand-line {
        display: block;
        font-family: var(--font-display);
        font-size: clamp(14px, 1.1vw, 18px);
        font-weight: 400;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: #8d5f57;
        margin-bottom: 6px;
      }
      .section-heading .section-name {
        display: block;
        font-family: var(--font-display);
        font-size: clamp(28px, 2.2vw, 44px);
        font-weight: 400;
        letter-spacing: 0.04em;
        color: #231f1b;
        line-height: 1.1;
      }
      @media (max-width: 767px) {
        .section-heading {
          margin-bottom: 22px;
        }
        .section-heading .brand-line {
          font-size: 12px;
          letter-spacing: 0.22em;
        }
        .section-heading .section-name {
          font-size: clamp(22px, 6vw, 30px);
        }
      }

      /* NAVBAR */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 76px;
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        z-index: 99999;
      }
      .nav-container {
        max-width: 1320px;
        height: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .logo-wrapper {
        display: flex;
        align-items: center;
        flex-shrink: 0;
      }
      .logo {
        font-size: 2rem;
        font-weight: 800;
        line-height: 1;
        color: var(--eldeco-green);
        text-transform: uppercase;
        white-space: nowrap;
        font-family: var(--font-ui);
      }
      .main-nav {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.6rem;
        flex: 1;
      }
      .nav-link {
        position: relative;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        color: var(--text);
        transition: color 0.25s ease;
        font-family: var(--font-ui);
      }
      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 0;
        height: 2px;
        background: var(--eldeco-green);
        border-radius: 999px;
        transition: width 0.25s ease;
      }
      .nav-link:hover,
      .nav-link.active {
        color: var(--eldeco-green);
      }
      .nav-link:hover::after,
      .nav-link.active::after {
        width: 100%;
      }
      .nav-right {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
      }
      .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0.72rem 1.15rem;
        border-radius: 999px;
        background: var(--btn-bg);
        color: var(--btn-text);
        font-size: 0.74rem;
        font-weight: 600;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        transition: all 0.25s ease;
        font-family: var(--font-ui);
      }
      .nav-cta:hover {
        background: #0f6c50;
      }
      .mobile-menu-toggle {
        display: none;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .mobile-menu-toggle span {
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--eldeco-green);
        border-radius: 999px;
        transition: all 0.25s ease;
      }
      .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(-7px);
      }
      .mobile-menu-toggle span:nth-child(2) {
        transform: translateY(0);
      }
      .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(7px);
      }
      .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
      }
      .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
      }
      .mobile-overlay {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.25s ease;
        z-index: 9999;
      }
      .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }
      .mobile-nav-container {
        padding-top: 14px;
        padding-bottom: 22px;
      }
      .mobile-nav-list {
        list-style: none;
      }
      .mobile-nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.84rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text);
        font-family: var(--font-ui);
      }
      .mobile-cta-wrap {
        padding-top: 16px;
      }
      .mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0.8rem 1.25rem;
        border-radius: 999px;
        background: var(--btn-bg);
        color: var(--btn-text);
        font-size: 0.74rem;
        font-weight: 600;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        font-family: var(--font-ui);
      }
      @media (max-width: 1100px) {
        .main-nav,
        .nav-cta {
          display: none;
        }
        .mobile-menu-toggle {
          display: flex;
          margin-left: auto;
        }
        .mobile-overlay {
          display: block;
        }
        .nav-container {
          justify-content: space-between;
        }
      }
      @media (max-width: 767px) {
        body {
          padding-top: 72px !important;
        }
        .navbar {
          height: 72px;
        }
        .logo {
          font-size: 1.7rem;
        }
        .mobile-overlay {
          top: 72px;
        }
        .mobile-nav-container {
          padding-top: 12px;
          padding-bottom: 20px;
        }
      }

      /* SEO: BREADCRUMB */
      .breadcrumb-bar {
        width: 100%;
        background: #c8ddd7;
        border-bottom: 1px solid rgba(47, 53, 51, 0.15);
        padding: 10px 0;
      }
      .breadcrumb-bar .breadcrumb-inner {
        width: min(92%, 1320px);
        margin: 0 auto;
      }
      .breadcrumb-bar nav ol {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        line-height: 1.45;
        font-family: var(--font-ui);
        color: #5a7a72;
      }
      .breadcrumb-bar nav ol li {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .breadcrumb-bar nav ol li a {
        color: var(--eldeco-green);
        text-decoration: underline;
        text-underline-offset: 2px;
      }
      .breadcrumb-bar nav ol li span[aria-current] {
        color: #333;
        font-weight: 500;
      }
      .breadcrumb-bar nav ol li:not(:last-child)::after {
        content: "›";
        color: #aaa;
      }

      /* HERO */
      .hero-section {
        width: 100%;
        height: calc(100vh - 76px);
        min-height: 560px;
        overflow: hidden;
        position: relative;
      }
      .hero-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
      }
      .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.08) 0%,
          rgba(0, 0, 0, 0.55) 100%
        );
        pointer-events: none;
      }
      .hero-cta-block {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
        width: 90%;
        max-width: 600px;
      }
      .hero-enquire-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 56px;
        padding: 0 36px;
        border-radius: 999px;
        background: #ffffff;
        color: var(--eldeco-green);
        font-family: var(--font-ui);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
        transition:
          background 0.22s,
          color 0.22s,
          box-shadow 0.22s;
      }
      .hero-enquire-btn:hover {
        background: var(--eldeco-green);
        color: #fff;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
      }
      @media (max-width: 767px) {
        .hero-section {
          height: min(70vh, 520px);
          min-height: 360px;
        }
        .hero-cta-block {
          bottom: 28px;
          gap: 12px;
          width: calc(100% - 32px);
        }
        .hero-enquire-btn {
          height: 46px;
          padding: 0 24px;
          font-size: 0.73rem;
        }
      }

      /* LEAD POPUP */
      .lead-popup {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2147483646;
        padding: 20px 16px;
      }
      .lead-popup.active {
        display: flex;
      }
      .lead-popup-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(3px);
      }
      .lead-popup-box {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 440px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        background: #fff;
        border-radius: 20px;
        padding: 40px 32px 36px;
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
        text-align: center;
        animation: popupIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      @keyframes popupIn {
        from {
          opacity: 0;
          transform: translateY(24px) scale(0.95);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }
      .lead-popup-close {
        position: absolute;
        top: 14px;
        right: 18px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        line-height: 1;
        color: #aaa;
        cursor: pointer;
        border-radius: 50%;
        transition:
          background 0.18s,
          color 0.18s;
        background: none;
        border: none;
      }
      .lead-popup-close:hover {
        background: #f2f2f2;
        color: #111;
      }
      .lead-popup-box h3 {
        margin: 0 0 4px;
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 600;
        color: #111;
        line-height: 1.2;
      }
      .lead-popup-box .popup-sub {
        font-size: 13px;
        color: #888;
        letter-spacing: 0.03em;
        margin-bottom: 24px;
        font-family: var(--font-body);
        line-height: 1.5;
      }
      .lead-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .lead-form-input {
        width: 100%;
        height: 50px;
        padding: 0 16px;
        border: 1.5px solid #e0e0e0;
        border-radius: 12px;
        font-family: var(--font-body);
        font-size: 15px;
        color: #111;
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
        background: #fafafa;
      }
      .lead-form-input:focus {
        border-color: var(--eldeco-green);
        box-shadow: 0 0 0 3px rgba(19, 128, 95, 0.12);
        background: #fff;
      }
      .lead-form-input::placeholder {
        color: #bbb;
      }
      .lead-form-submit {
        height: 52px;
        width: 100%;
        border-radius: 999px;
        background: var(--eldeco-green);
        color: #fff;
        font-family: var(--font-ui);
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 700;
        transition:
          background 0.22s,
          box-shadow 0.22s;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(19, 128, 95, 0.3);
        margin-top: 4px;
      }
      .lead-form-submit:hover {
        background: #0f6c50;
        box-shadow: 0 6px 20px rgba(19, 128, 95, 0.38);
      }
      .lead-form-submit:disabled {
        opacity: 0.65;
        cursor: not-allowed;
      }
      .lead-form-msg {
        display: none;
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-family: var(--font-body);
        line-height: 1.5;
        margin-top: 4px;
      }
      .lead-form-msg.success {
        background: #eafaf4;
        color: #0f6c50;
        border: 1px solid #b2ddc9;
      }
      .lead-form-msg.error {
        background: #fef2f2;
        color: #b91c1c;
        border: 1px solid #f5c6c6;
      }
      .lead-privacy {
        font-size: 11px;
        color: #bbb;
        margin-top: 10px;
        font-family: var(--font-body);
        line-height: 1.5;
      }
      @media (max-width: 480px) {
        .lead-popup-box {
          padding: 32px 20px 28px;
          border-radius: 16px;
        }
        .lead-popup-box h3 {
          font-size: 24px;
        }
        .lead-form-input,
        .lead-form-submit {
          font-size: 16px;
        }
      }

      /* PROJECT INFO STRIP */
      .project-info-strip,
      .project-info-strip * {
        box-sizing: border-box;
      }
      .project-info-strip {
        --strip-bg: #d9ebe5;
        --strip-border: #3c413f;
        --strip-text: #111111;
        position: relative;
        width: 100%;
        background: var(--strip-bg);
        padding: 36px 0 42px;
        font-family: var(--font-ui);
      }
      .project-info-strip .info-wrap {
        width: min(90%, 1740px);
        margin: 0 auto;
        border: 1px solid var(--strip-border);
        background: transparent;
        display: grid;
        grid-template-columns: 1.1fr 1fr 1.15fr 1.2fr;
        align-items: center;
        min-height: 202px;
      }
      .project-info-strip .info-col {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 26px 20px;
        min-height: 170px;
        position: relative;
      }
      .project-info-strip .info-col + .info-col::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 72px;
        background: var(--strip-border);
      }
      .project-info-strip .logo-box {
        flex-direction: column;
        gap: 2px;
      }
      .project-info-strip .logo-mark {
        font-size: 26px;
        font-weight: 700;
        color: #0d8a58;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        line-height: 1;
        margin-bottom: 6px;
        font-family: var(--font-ui);
      }
      .project-info-strip .logo-sub {
        font-size: 28px;
        letter-spacing: 0.22em;
        color: #8d5f57;
        text-transform: uppercase;
        margin-top: 4px;
        font-family: var(--font-display);
      }
      .project-info-strip .info-text {
        font-size: 27px;
        line-height: 1.35;
        letter-spacing: 0.12em;
        color: var(--strip-text);
        font-weight: 400;
        font-family: var(--font-ui);
      }
      @media (max-width: 991px) {
        .project-info-strip {
          padding: 16px 0 20px;
        }
        .project-info-strip .info-wrap {
          width: calc(100% - 28px);
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .project-info-strip .info-col {
          min-height: auto;
          padding: 10px 16px;
        }
        .project-info-strip .info-col + .info-col::before {
          display: none;
        }
        .project-info-strip .logo-mark {
          font-size: 22px;
        }
        .project-info-strip .logo-sub {
          font-size: 22px;
          letter-spacing: 0.18em;
        }
        .project-info-strip .info-text {
          font-size: 24px;
        }
      }
      @media (max-width: 575px) {
        .project-info-strip {
          padding: 10px 0 14px;
        }
        .project-info-strip .info-col {
          padding: 8px 14px;
        }
        .project-info-strip .logo-mark {
          font-size: 34px !important;
        }
        .project-info-strip .logo-sub {
          font-size: 17px;
        }
        .project-info-strip .info-text {
          font-size: 19px;
        }
      }

      /* ABOUT — expanded */
      .intro-paragraph-section {
        width: 100%;
        background: #d9ebe5;
        padding: 58px 0 64px;
      }
      .intro-paragraph-section .inner {
        width: min(92%, 1680px);
        margin: 0 auto;
        border-top: 1px solid rgba(47, 52, 50, 0.85);
        padding-top: 32px;
      }
      .intro-paragraph-section .text-wrap {
        max-width: 1020px;
        margin: 0 auto;
        text-align: left;
        padding: 0 24px;
      }
      .intro-paragraph-section p {
        font-family: var(--font-display);
        font-size: clamp(18px, 1.4vw, 26px);
        line-height: 1.72;
        color: #1d1c1a;
        letter-spacing: 0.01em;
        font-weight: 400;
        margin-bottom: 22px;
      }
      .intro-paragraph-section p:last-child {
        margin-bottom: 0;
      }
      .intro-paragraph-section .highlights-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 32px;
      }
      .intro-paragraph-section .hl-card {
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(47, 52, 50, 0.15);
        border-radius: 12px;
        padding: 20px 18px;
        text-align: center;
      }
      .intro-paragraph-section .hl-card .hl-num {
        font-family: var(--font-ui);
        font-size: 26px;
        font-weight: 800;
        color: var(--eldeco-green);
        display: block;
        margin-bottom: 4px;
      }
      .intro-paragraph-section .hl-card .hl-label {
        font-size: 13px;
        color: #555;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-family: var(--font-ui);
      }
      @media (max-width: 991px) {
        .intro-paragraph-section {
          padding: 34px 0 42px;
        }
        .intro-paragraph-section .inner {
          width: calc(100% - 28px);
          padding-top: 18px;
        }
        .intro-paragraph-section p {
          font-size: clamp(16px, 3.8vw, 22px);
        }
        .intro-paragraph-section .highlights-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 575px) {
        .intro-paragraph-section {
          padding: 26px 0 34px;
        }
        .intro-paragraph-section p {
          font-size: 16px;
        }
        .intro-paragraph-section .highlights-grid {
          grid-template-columns: 1fr;
        }
      }

      /* GALLERY */
      .gallery-luxury-section {
        width: 100%;
        background: #d9ebe5;
        padding: 56px 0 72px;
      }
      .gallery-luxury-section .inner {
        width: min(92%, 1720px);
        margin: 0 auto;
      }
      .gallery-luxury-section .frame-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 520px;
      }
      .gallery-luxury-section .frame {
        width: min(100%, 980px);
        background: #fff;
        padding: 18px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
      }
      .gallery-luxury-section .frame img {
        width: 100%;
        display: block;
        height: auto;
        object-fit: cover;
      }
      .gallery-luxury-section .nav {
        display: flex;
        justify-content: center;
        gap: 26px;
        margin-top: 34px;
      }
      .gallery-luxury-section .nav button {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #111;
        background: transparent;
        border: none;
        cursor: pointer;
      }
      @media (max-width: 767px) {
        .gallery-luxury-section {
          padding: 30px 0 42px;
        }
        .gallery-luxury-section .inner {
          width: calc(100% - 20px);
        }
        .gallery-luxury-section .frame-wrap {
          min-height: auto;
        }
      }

      /* LAYOUTS */
      .plan-showcase-section {
        width: 100%;
        background: #d9ebe5;
        padding: 56px 0 66px;
      }
      .plan-showcase-section .inner {
        width: min(92%, 1720px);
        margin: 0 auto;
      }
      .plan-showcase-section .tabs-row {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 46px;
        padding-bottom: 20px;
      }
      .plan-showcase-section .tabs-row::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: rgba(17, 17, 17, 0.55);
      }
      .plan-showcase-section .tab {
        position: relative;
        z-index: 2;
        flex: 1;
        text-align: center;
        font-size: 22px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 400;
        color: #111;
        cursor: pointer;
        user-select: none;
        background: #d9ebe5;
        padding: 0 18px;
        font-family: var(--font-ui);
      }
      .plan-showcase-section .content {
        display: flex;
        justify-content: center;
      }
      .plan-showcase-section .content-card {
        width: min(100%, 820px);
        background: #fff;
        padding: 18px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
      }
      .plan-showcase-section .content-card img {
        width: 100%;
        display: block;
        height: auto;
      }
      .plan-showcase-section .floor-nav {
        display: flex;
        justify-content: center;
        gap: 26px;
        margin-top: 44px;
      }
      .plan-showcase-section .floor-nav button {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #111;
        background: transparent;
        border: none;
        cursor: pointer;
      }
      .plan-showcase-section .is-hidden {
        display: none;
      }
      @media (max-width: 767px) {
        .plan-showcase-section {
          padding: 30px 0 40px;
        }
        .plan-showcase-section .inner {
          width: calc(100% - 20px);
        }
        .plan-showcase-section .tab {
          font-size: 14px;
        }
      }

      /* AMENITIES */
      .amenities-triple-section {
        --bg: #d9ebe5;
        --text: #2c2c2c;
        --line: #2f3533;
        width: 100%;
        background: var(--bg);
        padding: 44px 0 38px;
        overflow: hidden;
      }
      .amenities-triple-section .inner {
        width: min(92%, 1760px);
        margin: 0 auto;
      }
      .amenities-triple-section .title-line {
        position: relative;
        width: 100%;
        height: 42px;
        margin-bottom: 38px;
      }
      .amenities-triple-section .title-line::before,
      .amenities-triple-section .title-line::after {
        content: "";
        position: absolute;
        top: 22px;
        height: 1px;
        background: var(--line);
        width: calc(50% - 68px);
      }
      .amenities-triple-section .title-line::before {
        left: 0;
      }
      .amenities-triple-section .title-line::after {
        right: 0;
      }
      .amenities-triple-section .title-line span {
        position: absolute;
        left: 50%;
        top: 14px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 34px solid transparent;
        border-right: 34px solid transparent;
        border-top: 38px solid transparent;
        border-top-color: var(--line);
        opacity: 0.85;
      }
      .amenities-triple-section .viewport {
        overflow: hidden;
        position: relative;
      }
      .amenities-triple-section .track {
        display: flex;
        width: 300%;
        transform: translateX(0);
        transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
      }
      .amenities-triple-section[data-slide="2"] .track {
        transform: translateX(-33.3333%);
      }
      .amenities-triple-section[data-slide="3"] .track {
        transform: translateX(-66.6666%);
      }
      .amenities-triple-section .slide {
        width: 33.3333%;
        flex: 0 0 33.3333%;
        padding: 0 6px;
      }
      .amenities-triple-section .grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 34px 16px;
        align-items: start;
        min-height: 320px;
      }
      .amenities-triple-section .amenity {
        text-align: center;
        color: var(--text);
        min-height: 118px;
      }
      .amenities-triple-section .icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 14px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .amenities-triple-section .icon svg {
        width: 56px;
        height: 56px;
        display: block;
        stroke: #222;
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .amenities-triple-section .label {
        font-size: 18px;
        letter-spacing: 0.12em;
        color: #555857;
        font-weight: 400;
        line-height: 1.35;
        font-family: var(--font-display);
      }
      .amenities-triple-section .controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 26px;
      }
      .amenities-triple-section .arrows {
        display: flex;
        align-items: center;
        gap: 28px;
      }
      .amenities-triple-section .arrow-btn {
        width: 44px;
        height: 44px;
        border: 1px solid transparent;
        background: transparent;
        color: #111;
        font-size: 32px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
        transition: opacity 0.2s ease;
      }
      .amenities-triple-section .arrow-btn:hover {
        opacity: 0.7;
      }
      .amenities-triple-section .pager {
        display: flex;
        align-items: center;
        gap: 14px;
        width: min(420px, 82vw);
      }
      .amenities-triple-section .pager span {
        font-size: 18px;
        color: #111;
        letter-spacing: 0.08em;
        font-family: var(--font-ui);
      }
      .amenities-triple-section .trackbar {
        flex: 1;
        height: 2px;
        background: rgba(47, 53, 51, 0.22);
        position: relative;
        overflow: hidden;
      }
      .amenities-triple-section .trackbar::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 33.3333%;
        background: #111;
        transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
        transform-origin: left center;
      }
      .amenities-triple-section[data-slide="2"] .trackbar::before {
        transform: translateX(100%);
      }
      .amenities-triple-section[data-slide="3"] .trackbar::before {
        transform: translateX(200%);
      }
      @media (max-width: 1100px) {
        .amenities-triple-section .grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }
      @media (max-width: 767px) {
        .amenities-triple-section {
          padding: 32px 0 30px;
        }
        .amenities-triple-section .inner {
          width: calc(100% - 24px);
        }
        .amenities-triple-section .grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 22px 10px;
          min-height: auto;
        }
        .amenities-triple-section .icon,
        .amenities-triple-section .icon svg {
          width: 42px;
          height: 42px;
        }
        .amenities-triple-section .label {
          font-size: 13px;
        }
      }

      /* PRICE LIST */
      .price-list-section {
        width: 100%;
        background: #d9ebe5;
        padding: 56px 0 72px;
      }
      .price-list-section .inner {
        width: min(92%, 1220px);
        margin: 0 auto;
      }
      .price-list-section .price-table-wrap {
        border: 1px solid rgba(17, 17, 17, 0.55);
        background: rgba(255, 255, 255, 0.22);
        overflow: hidden;
      }
      .price-list-section table {
        width: 100%;
        border-collapse: collapse;
      }
      .price-list-section thead tr {
        background: var(--eldeco-green);
        color: #fff;
      }
      .price-list-section thead th {
        padding: 18px 24px;
        text-align: left;
        font-family: var(--font-ui);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }
      .price-list-section tbody tr {
        border-bottom: 1px solid rgba(17, 17, 17, 0.1);
        transition: background 0.2s ease;
      }
      .price-list-section tbody tr:last-child {
        border-bottom: none;
      }
      .price-list-section tbody tr:hover {
        background: rgba(19, 128, 95, 0.07);
      }
      .price-list-section tbody td {
        padding: 20px 24px;
        font-size: 16px;
        color: #2a2a26;
        vertical-align: middle;
        font-family: var(--font-body);
        line-height: 1.5;
      }
      .price-list-section tbody td:first-child {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 600;
        color: #13805f;
        white-space: nowrap;
      }
      .price-list-section .price-tag {
        font-family: var(--font-ui);
        font-size: 17px;
        font-weight: 700;
        color: #111;
        letter-spacing: 0.02em;
      }
      .price-list-section .price-sub {
        display: block;
        font-size: 12px;
        font-weight: 400;
        color: #777;
        letter-spacing: 0.05em;
        margin-top: 3px;
        font-family: var(--font-body);
      }
      .price-list-section .badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-family: var(--font-ui);
      }
      .price-list-section .badge-available {
        background: rgba(19, 128, 95, 0.12);
        color: #0f6c50;
        border: 1px solid rgba(19, 128, 95, 0.3);
      }
      .price-list-section .badge-limited {
        background: rgba(205, 130, 60, 0.12);
        color: #a0631e;
        border: 1px solid rgba(205, 130, 60, 0.3);
      }
      .price-list-section .price-note {
        margin-top: 20px;
        text-align: center;
        font-size: 13px;
        color: #777;
        letter-spacing: 0.04em;
        font-family: var(--font-body);
      }
      @media (max-width: 767px) {
        .price-list-section {
          padding: 34px 0 46px;
        }
        .price-list-section .inner {
          width: calc(100% - 20px);
        }
        .price-list-section thead th {
          padding: 14px;
          font-size: 11px;
        }
        .price-list-section tbody td {
          padding: 14px;
          font-size: 14px;
        }
      }
      @media (max-width: 560px) {
        .price-list-section table,
        .price-list-section thead,
        .price-list-section tbody,
        .price-list-section th,
        .price-list-section td,
        .price-list-section tr {
          display: block;
        }
        .price-list-section thead tr {
          position: absolute;
          top: -9999px;
          left: -9999px;
        }
        .price-list-section tbody tr {
          margin-bottom: 14px;
          background: rgba(255, 255, 255, 0.5);
          border: 1px solid rgba(17, 17, 17, 0.12);
        }
        .price-list-section tbody td {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 12px 14px;
          border-bottom: 1px solid rgba(17, 17, 17, 0.07);
          font-size: 13px;
        }
        .price-list-section tbody td::before {
          content: attr(data-label);
          font-family: var(--font-ui);
          font-size: 10px;
          font-weight: 600;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: #888;
          margin-right: 12px;
          white-space: nowrap;
          flex-shrink: 0;
        }
        .price-list-section tbody td:first-child {
          font-size: 15px;
          background: rgba(19, 128, 95, 0.07);
        }
      }

      /* LOCATION */
      .location-advantage-section {
        width: 100%;
        background: #d9ebe5;
        padding: 56px 0 72px;
      }
      .location-advantage-section .inner {
        width: min(92%, 1720px);
        margin: 0 auto;
      }
      .location-advantage-section .panel {
        border: 1px solid rgba(17, 17, 17, 0.75);
        padding: 20px;
        display: grid;
        grid-template-columns: minmax(360px, 1.05fr) minmax(0, 1.6fr);
        gap: 22px;
        align-items: stretch;
      }
      .location-advantage-section .map-box {
        min-height: 430px;
        background: #f7f3ec;
        overflow: hidden;
      }
      .location-advantage-section .map-box img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
      }
      .location-advantage-section .points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-content: stretch;
      }
      .location-advantage-section .point {
        min-height: 145px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 18px 14px;
        border-right: 1px solid rgba(17, 17, 17, 0.1);
        border-bottom: 1px solid rgba(17, 17, 17, 0.1);
      }
      .location-advantage-section .point:nth-child(3n) {
        border-right: none;
      }
      .location-advantage-section .point:nth-last-child(-n + 3) {
        border-bottom: none;
      }
      .location-advantage-section .kms {
        font-size: 18px;
        letter-spacing: 0.08em;
        font-weight: 400;
        margin-bottom: 10px;
        font-family: var(--font-ui);
      }
      .location-advantage-section .label {
        font-family: var(--font-display);
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: 0.04em;
        color: #41413d;
        max-width: 220px;
      }
      .location-advantage-section .brochure {
        display: flex;
        justify-content: center;
        margin-top: 46px;
      }
      .location-advantage-section .brochure-link {
        color: #111;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 18px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.75);
        padding-bottom: 4px;
        font-family: var(--font-ui);
        cursor: pointer;
        transition:
          color 0.2s,
          border-color 0.2s;
        background: none;
        border-left: none;
        border-top: none;
        border-right: none;
      }
      .location-advantage-section .brochure-link:hover {
        color: var(--eldeco-green);
        border-color: var(--eldeco-green);
      }
      @media (max-width: 1100px) {
        .location-advantage-section .panel {
          grid-template-columns: 1fr;
        }
        .location-advantage-section .map-box {
          min-height: 360px;
        }
      }
      @media (max-width: 767px) {
        .location-advantage-section {
          padding: 34px 0 46px;
        }
        .location-advantage-section .inner {
          width: calc(100% - 20px);
        }
        .location-advantage-section .panel {
          padding: 12px;
          gap: 14px;
        }
        .location-advantage-section .map-box {
          min-height: 280px;
        }
        .location-advantage-section .points {
          grid-template-columns: 1fr 1fr;
        }
        .location-advantage-section .point {
          min-height: 120px;
          padding: 14px 10px;
        }
        .location-advantage-section .point:nth-child(3n) {
          border-right: 1px solid rgba(17, 17, 17, 0.1);
        }
        .location-advantage-section .point:nth-child(2n) {
          border-right: none;
        }
        .location-advantage-section .brochure {
          margin-top: 28px;
        }
        .location-advantage-section .brochure-link {
          font-size: 14px;
        }
      }

      /* DEVELOPER SECTION */
      .developer-section {
        width: 100%;
        background: #d9ebe5;
        padding: 56px 0 56px;
      }
      .developer-section .inner {
        width: min(92%, 1220px);
        margin: 0 auto;
        border: 1px solid rgba(47, 52, 50, 0.3);
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        padding: 40px;
      }
      .developer-section .dev-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: center;
      }
      .developer-section .dev-logo-box {
        text-align: center;
      }
      .developer-section .dev-logo-name {
        font-family: var(--font-ui);
        font-size: 42px;
        font-weight: 800;
        color: var(--eldeco-green);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1;
      }
      .developer-section .dev-logo-tagline {
        font-family: var(--font-display);
        font-size: 18px;
        color: #8d5f57;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        margin-top: 6px;
      }
      .developer-section .dev-stats {
        display: flex;
        gap: 24px;
        margin: 20px 0;
      }
      .developer-section .dev-stat {
        text-align: center;
      }
      .developer-section .dev-stat .stat-num {
        font-family: var(--font-ui);
        font-size: 30px;
        font-weight: 800;
        color: var(--eldeco-green);
        display: block;
      }
      .developer-section .dev-stat .stat-label {
        font-size: 12px;
        color: #666;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-family: var(--font-ui);
      }
      .developer-section .dev-body p {
        font-family: var(--font-body);
        font-size: 16px;
        color: #3a3a36;
        line-height: 1.8;
        margin-bottom: 14px;
      }
      .developer-section .dev-body p:last-child {
        margin-bottom: 0;
      }
      @media (max-width: 900px) {
        .developer-section .inner {
          padding: 24px;
        }
        .developer-section .dev-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .developer-section .dev-stats {
          flex-wrap: wrap;
          gap: 16px;
        }
        .developer-section .dev-logo-name {
          font-size: 32px;
        }
      }
      @media (max-width: 575px) {
        .developer-section {
          padding: 34px 0 34px;
        }
        .developer-section .inner {
          width: calc(100% - 20px);
        }
      }

      /* FAQ */
      .faq-section {
        width: 100%;
        background: #d9ebe5;
        padding: 56px 0 72px;
      }
      .faq-section .inner {
        width: min(92%, 1220px);
        margin: 0 auto;
      }
      .faq-section .list {
        border: 1px solid rgba(17, 17, 17, 0.55);
        background: rgba(255, 255, 255, 0.22);
      }
      .faq-section details {
        border-bottom: 1px solid rgba(17, 17, 17, 0.12);
        padding: 0 22px;
      }
      .faq-section details:last-child {
        border-bottom: none;
      }
      .faq-section summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 22px 0;
        font-size: 18px;
        letter-spacing: 0.03em;
        color: #1f1b16;
        font-family: var(--font-body);
      }
      .faq-section summary::-webkit-details-marker {
        display: none;
      }
      .faq-section summary::after {
        content: "+";
        font-size: 26px;
        line-height: 1;
        color: #1f1b16;
        flex: 0 0 auto;
      }
      .faq-section details[open] summary::after {
        content: "−";
      }
      .faq-section .answer {
        padding: 0 0 22px;
        max-width: 86ch;
        color: #4a4a44;
        font-size: 16px;
        line-height: 1.8;
      }
      .faq-section .answer p {
        margin: 0;
      }
      @media (max-width: 767px) {
        .faq-section {
          padding: 34px 0 46px;
        }
        .faq-section .inner {
          width: calc(100% - 20px);
        }
        .faq-section details {
          padding: 0 14px;
        }
        .faq-section summary {
          padding: 16px 0;
          font-size: 15px;
        }
        .faq-section .answer {
          font-size: 14px;
        }
      }

      /* DISCLAIMER */
      .disclaimer-section {
        width: 100%;
        background: #1a2420;
        padding: 72px 0 60px;
        font-family: var(--font-body);
        color: #c8d8d4;
      }
      .disclaimer-section .inner {
        width: min(92%, 1240px);
        margin: 0 auto;
      }
      .disclaimer-section .ds-heading {
        font-family: var(--font-display);
        font-size: clamp(22px, 2vw, 36px);
        font-weight: 400;
        letter-spacing: 0.08em;
        color: #e8f0ed;
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(200, 216, 212, 0.18);
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .disclaimer-section .ds-heading::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 26px;
        background: var(--eldeco-green);
        border-radius: 2px;
        flex-shrink: 0;
      }
      .disclaimer-section .ds-block {
        margin-bottom: 46px;
      }
      .disclaimer-section .ds-block:last-of-type {
        margin-bottom: 0;
      }
      .disclaimer-section p {
        font-size: 14px;
        line-height: 1.88;
        color: #9db5ae;
        margin-bottom: 14px;
        letter-spacing: 0.02em;
      }
      .disclaimer-section p:last-child {
        margin-bottom: 0;
      }
      .disclaimer-section a {
        color: #7ecdb3;
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.2s;
      }
      .disclaimer-section a:hover {
        color: #a8e6d4;
      }
      .disclaimer-section .rera-badge {
        display: inline-flex;
        align-items: flex-start;
        gap: 16px;
        background: rgba(19, 128, 95, 0.14);
        border: 1px solid rgba(19, 128, 95, 0.35);
        border-radius: 10px;
        padding: 18px 24px;
        margin-top: 10px;
      }
      .disclaimer-section .rera-badge-icon {
        width: 36px;
        height: 36px;
        background: rgba(19, 128, 95, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .disclaimer-section .rera-badge-icon svg {
        width: 18px;
        height: 18px;
        stroke: #7ecdb3;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .disclaimer-section .rera-label {
        font-family: var(--font-ui);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #7ecdb3;
        margin-bottom: 4px;
      }
      .disclaimer-section .rera-number {
        font-family: var(--font-ui);
        font-size: 15px;
        font-weight: 700;
        color: #e8f0ed;
        letter-spacing: 0.05em;
        line-height: 1.4;
      }
      .disclaimer-section .rera-date {
        font-family: var(--font-body);
        font-size: 12px;
        color: #7a9e94;
        margin-top: 4px;
        letter-spacing: 0.04em;
      }
      .disclaimer-section--alt {
        background: #141e1a;
        border-top: 1px solid rgba(200, 216, 212, 0.08);
      }
      @media (max-width: 767px) {
        .disclaimer-section {
          padding: 48px 0 40px;
        }
        .disclaimer-section .inner {
          width: calc(100% - 24px);
        }
        .disclaimer-section .ds-heading {
          font-size: 20px;
        }
        .disclaimer-section p {
          font-size: 13px;
        }
        .disclaimer-section .rera-badge {
          flex-direction: column;
          gap: 10px;
        }
      }

      /* FOOTER */
      .site-footer {
        width: 100%;
        background: #0e1a16;
        padding: 28px 0 24px;
        font-family: var(--font-ui);
      }
      .site-footer .footer-inner {
        width: min(92%, 1240px);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
      }
      .site-footer .footer-links {
        display: flex;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
      }
      .site-footer .footer-links a {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #7a9e94;
        padding: 4px 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        transition: color 0.2s;
        text-decoration: none;
      }
      .site-footer .footer-links a:first-child {
        padding-left: 0;
      }
      .site-footer .footer-links a:last-child {
        border-right: none;
      }
      .site-footer .footer-links a:hover {
        color: #a8e6d4;
      }
      .site-footer .footer-copy {
        font-size: 12px;
        color: #516b63;
        letter-spacing: 0.04em;
        line-height: 1.6;
      }
      @media (max-width: 767px) {
        .site-footer .footer-inner {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }
        .site-footer .footer-links a {
          padding: 4px 12px;
          font-size: 11px;
        }
        .site-footer .footer-links a:first-child {
          padding-left: 0;
        }
        .site-footer .footer-copy {
          font-size: 11px;
        }
      }

      /* FLOATING BUTTONS */
      #floatingBtns {
        position: fixed !important;
        right: 20px !important;
        bottom: 28px !important;
        top: auto !important;
        left: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        z-index: 2147483647 !important;
        pointer-events: auto !important;
      }
      #floatingBtns .flt-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        flex-shrink: 0;
        border: none;
        cursor: pointer;
        transition:
          box-shadow 0.22s ease,
          opacity 0.22s ease;
      }
      #floatingBtns .flt-btn:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.42);
        opacity: 0.88;
      }
      #floatingBtns .flt-btn-wa {
        background: #25d366;
      }
      #floatingBtns .flt-btn-call {
        background: var(--eldeco-green);
      }
      #floatingBtns .flt-btn svg {
        width: 28px;
        height: 28px;
        display: block;
        flex-shrink: 0;
      }
      @media (max-width: 767px) {
        #floatingBtns {
          right: 14px !important;
          bottom: 20px !important;
          gap: 10px !important;
        }
        #floatingBtns .flt-btn {
          width: 50px !important;
          height: 50px !important;
        }
        #floatingBtns .flt-btn svg {
          width: 24px !important;
          height: 24px !important;
        }
      }
