/* =====================================================
   PROPERTY CATEGORY PAGE — content-only stylesheet.
   Scoped under .ps-property so nothing here can leak
   onto the real global header/footer (partials/header.html,
   partials/footer.html) that this template still includes.
   Custom properties are prefixed --ps- for the same reason:
   :root variables are global regardless of selector scoping.
===================================================== */

.ps-property {
    --ps-black: #151515;
    --ps-black-soft: #292929;

    --ps-text: #444444;
    --ps-muted: #747474;

    --ps-green: #3a966d;
    --ps-green-hover: #2f7f5c;

    --ps-light-green: #e7f6ee;
    --ps-light-green-2: #d9f0e4;
    --ps-light-green-3: #f3faf6;

    --ps-yellow: #f3d452;
    --ps-yellow-soft: #fff5bd;
    --ps-yellow-light: #fffbea;

    --ps-white: #ffffff;
    --ps-page-bg: #fbfdfb;

    --ps-border: #e1e8e4;

    color: var(--ps-black);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbf8 32%,
            #ffffff 60%,
            #f3faf6 78%,
            #ffffff 100%
        );

    overflow-x: hidden;
}

.ps-property * {
    box-sizing: border-box;
}

.ps-property button,
.ps-property a {
    font-family: inherit;
}

.ps-property button {
    cursor: pointer;
}

.ps-property .property-hero-actions a,
.ps-property .property-journey-nav a {
    text-decoration: none;
}


/* =====================================================
   HERO
===================================================== */

.ps-property .property-hero {
    position: relative;

    padding: 42px 0 44px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 15%,
            rgba(243, 212, 82, 0.28),
            transparent 22%
        ),
        radial-gradient(
            circle at 5% 87%,
            rgba(58, 150, 109, 0.13),
            transparent 24%
        ),
        linear-gradient(
            120deg,
            #e5f6ed 0%,
            #f5fbf8 42%,
            #ffffff 73%,
            #fffdf3 100%
        );
}

.ps-property .property-hero-row {
    min-height: 420px;
}

.ps-property .property-hero-content {
    position: relative;
    z-index: 4;
}

.ps-property .property-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: var(--ps-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.ps-property .property-eyebrow span {
    width: 26px;
    height: 2px;
    border-radius: 20px;
    background: var(--ps-yellow);
}

.ps-property .property-hero h1 {
    max-width: 680px;
    margin-bottom: 16px;
    color: var(--ps-black);
    font-size: 46px;
    line-height: 1.08;
    font-weight: 800;
}

.ps-property .property-hero h1 span {
    display: block;
    color: var(--ps-green);
}

.ps-property .property-hero h1 em {
    display: block;
    color: var(--ps-black);
    font-style: normal;
}

.ps-property .property-hero-content > p {
    max-width: 610px;
    margin-bottom: 20px;
    color: var(--ps-text);
    font-size: 14px;
    line-height: 1.72;
}

.ps-property .property-hero-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.ps-property .property-primary-btn {
    padding: 12px 19px;
    border: none;
    border-radius: 8px;
    background: var(--ps-black);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: 0.22s ease;
}

.ps-property .property-primary-btn:hover {
    transform: translateY(-2px);
    background: var(--ps-green);
}

.ps-property .property-primary-btn i {
    margin-left: 4px;
}

.ps-property .property-secondary-btn {
    padding: 11px 17px;
    border: 1px solid #ccd9d2;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--ps-black);
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    transition: 0.22s ease;
}

.ps-property .property-secondary-btn:hover {
    background: var(--ps-yellow-soft);
}


/* =====================================================
   HERO POINTS
===================================================== */

.ps-property .property-hero-points {
    display: flex;
    gap: 27px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ps-property .property-hero-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ps-property .property-hero-points > div > span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ps-green);
    box-shadow: 0 6px 14px rgba(58, 150, 109, 0.08);
}

.ps-property .property-hero-points strong {
    display: block;
    color: var(--ps-black);
    font-size: 11px;
}

.ps-property .property-hero-points small {
    display: block;
    margin-top: 2px;
    color: #888888;
    font-size: 8.5px;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.ps-property .property-hero-visual {
    position: relative;
    max-width: 600px;
    margin-left: auto;
    padding: 10px 4px 10px 20px;
}

.ps-property .property-image-frame {
    position: relative;
    z-index: 3;
    padding: 9px;
    border: 1px solid #dfeae4;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}

.ps-property .property-main-image {
    width: 100%;
    height: 370px;
    display: block;
    object-fit: cover;
    border-radius: 17px;
}

.ps-property .hero-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid #e3ece7;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: psHeroFloat 4s ease-in-out infinite;
}

.ps-property .hero-card-one {
    top: 42px;
    left: 0;
}

.ps-property .hero-card-two {
    top: 145px;
    right: -12px;
    animation-delay: 0.8s;
}

.ps-property .hero-card-three {
    bottom: 27px;
    left: 45px;
    animation-delay: 1.5s;
}

@keyframes psHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ps-property .hero-floating-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
}

.ps-property .hero-floating-card small {
    display: block;
    color: #999999;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.ps-property .hero-floating-card strong {
    display: block;
    margin-top: 1px;
    color: var(--ps-black);
    font-size: 10px;
}

.ps-property .ps-mint {
    background: var(--ps-light-green);
    color: var(--ps-green);
}

.ps-property .ps-yellow-chip {
    background: var(--ps-yellow-soft);
    color: #8d7615;
}

.ps-property .ps-lime {
    background: #e7f4d9;
    color: #5b7b4e;
}


/* =====================================================
   HERO DECORATION
===================================================== */

.ps-property .hero-bg-circle {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.ps-property .hero-bg-circle-one {
    width: 260px;
    height: 260px;
    top: -150px;
    right: 4%;
    background: rgba(243, 212, 82, 0.2);
}

.ps-property .hero-bg-circle-two {
    width: 150px;
    height: 150px;
    bottom: -90px;
    left: 3%;
    background: rgba(58, 150, 109, 0.08);
}

.ps-property .hero-bg-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 45%;
    left: 46%;
    border: 18px solid rgba(58, 150, 109, 0.05);
    border-radius: 50%;
}

.ps-property .hero-dot-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    right: 1%;
    bottom: 10px;
    opacity: 0.18;
    background-image: radial-gradient(var(--ps-green) 1px, transparent 1px);
    background-size: 12px 12px;
}


/* =====================================================
   SELLER BENEFITS
===================================================== */

.ps-property .seller-benefits-section {
    position: relative;
    padding: 40px 0 44px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f3faf6 55%, #fffdf3 100%);
}

.ps-property .seller-benefit-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    text-align: center;
}

.ps-property .seller-benefit-heading > span {
    display: block;
    margin-bottom: 5px;
    color: var(--ps-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.ps-property .seller-benefit-heading h2 {
    margin: 0;
    color: var(--ps-black);
    font-size: 32px;
    font-weight: 750;
}

.ps-property .seller-benefit-heading h2 strong {
    color: var(--ps-green);
}

.ps-property .seller-benefits-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ps-property .seller-benefit-item {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 13px;
    border: 1px solid var(--ps-border);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ps-property .seller-benefit-item:hover {
    transform: translateY(-4px);
    border-color: #b9ddca;
    box-shadow: 0 13px 28px rgba(58, 150, 109, 0.09);
}

.ps-property .seller-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 14px;
    background: var(--ps-light-green);
    color: var(--ps-green);
    font-size: 22px;
    transition: transform 0.25s ease;
}

.ps-property .seller-benefit-icon.yellow-icon {
    background: var(--ps-yellow-soft);
    color: #947d14;
}

.ps-property .seller-benefit-item:hover .seller-benefit-icon {
    transform: translateY(-2px) scale(1.05);
}

.ps-property .seller-benefit-item h3 {
    max-width: 190px;
    margin: 0;
    color: var(--ps-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.ps-property .seller-benefit-bg {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.ps-property .seller-benefit-bg-one {
    width: 170px;
    height: 170px;
    left: -80px;
    top: -75px;
    background: rgba(58, 150, 109, 0.08);
}

.ps-property .seller-benefit-bg-two {
    width: 140px;
    height: 140px;
    right: -65px;
    bottom: -65px;
    background: rgba(243, 212, 82, 0.22);
}


/* =====================================================
   SECTION HEADING (shared)
===================================================== */

.ps-property .property-section-heading {
    max-width: 720px;
    margin: 0 auto 25px;
    text-align: center;
}

.ps-property .section-small-title {
    color: var(--ps-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.ps-property .property-section-heading h2 {
    margin: 6px 0 8px;
    color: var(--ps-black);
    font-size: 33px;
    line-height: 1.2;
    font-weight: 700;
}

.ps-property .property-section-heading h2 strong {
    color: var(--ps-green);
}

.ps-property .property-section-heading p {
    max-width: 620px;
    margin: auto;
    color: var(--ps-text);
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   EXPERIENCE DASHBOARD
===================================================== */

.ps-property .property-dashboard-experience {
    position: relative;
    padding: 44px 0 50px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(58, 150, 109, 0.1), transparent 20%),
        radial-gradient(circle at 90% 78%, rgba(243, 212, 82, 0.24), transparent 22%),
        linear-gradient(135deg, #e8f7ef 0%, #f8fcfa 45%, #ffffff 67%, #fffbea 100%);
}

.ps-property .compact-heading {
    margin-bottom: 20px;
}

.ps-property .experience-switch-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.ps-property .experience-switch {
    display: inline-flex;
    padding: 4px;
    border: 1px solid #d8e7df;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(58, 150, 109, 0.09);
}

.ps-property .experience-switch-btn {
    min-width: 180px;
    padding: 11px 22px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--ps-black);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.ps-property .experience-switch-btn i {
    margin-right: 5px;
}

.ps-property .experience-switch-btn.active {
    background: var(--ps-black);
    color: #ffffff;
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.14);
}

.ps-property .experience-switch-btn:not(.active):hover {
    background: var(--ps-yellow-soft);
}

.ps-property .experience-stage {
    position: relative;
    max-width: 1180px;
    min-height: 480px;
    margin: auto;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #dce9e2;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(231, 246, 238, 0.97) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(255, 246, 196, 0.82) 100%);
    box-shadow: 0 22px 50px rgba(58, 150, 109, 0.11);
}

.ps-property .experience-stage::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -120px;
    border-radius: 50%;
    background: rgba(243, 212, 82, 0.24);
}

.ps-property .experience-stage::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(58, 150, 109, 0.12);
}

.ps-property .experience-panel {
    position: relative;
    z-index: 5;
    display: none;
    grid-template-columns: 0.8fr 1.35fr;
    gap: 34px;
    align-items: center;
    min-height: 420px;
}

.ps-property .experience-panel.active {
    display: grid;
    animation: psPanelReveal 0.38s ease;
}

@keyframes psPanelReveal {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}

.ps-property .experience-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--ps-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.ps-property .experience-content h3 {
    margin: 0 0 13px;
    color: var(--ps-black);
    font-size: 38px;
    line-height: 1.14;
    font-weight: 700;
}

.ps-property .experience-content h3 span {
    display: block;
    color: var(--ps-green);
}

.ps-property .experience-content > p {
    max-width: 500px;
    margin-bottom: 20px;
    color: var(--ps-text);
    font-size: 14px;
    line-height: 1.75;
}

.ps-property .experience-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ps-property .experience-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(58, 150, 109, 0.12);
}

.ps-property .experience-list > div > span {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ps-green);
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ps-property .experience-list strong {
    display: block;
    color: var(--ps-black);
    font-size: 13px;
    font-weight: 700;
}

.ps-property .experience-list small {
    display: block;
    margin-top: 3px;
    color: #7d7d7d;
    font-size: 10.5px;
    line-height: 1.45;
}

.ps-property .experience-ui-wrap {
    position: relative;
    padding: 15px;
}

.ps-property .experience-ui-wrap::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -8px;
    bottom: -5px;
    opacity: 0.16;
    background-image: radial-gradient(var(--ps-green) 1px, transparent 1px);
    background-size: 10px 10px;
}

.ps-property .experience-ui-wrap::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    left: -12px;
    top: 20px;
    border: 13px solid rgba(243, 212, 82, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.ps-property .dashboard-decor {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
}

.ps-property .dashboard-decor-one {
    width: 90px;
    height: 90px;
    right: 22px;
    top: -4px;
    background: rgba(58, 150, 109, 0.09);
}

.ps-property .dashboard-decor-two {
    width: 55px;
    height: 55px;
    bottom: 13px;
    left: 7px;
    background: rgba(243, 212, 82, 0.24);
}

.ps-property .dashboard-mini-ring {
    position: absolute;
    right: -7px;
    top: 45%;
    width: 52px;
    height: 52px;
    border: 9px solid rgba(58, 150, 109, 0.08);
    border-radius: 50%;
}

.ps-property .customer-ui {
    position: relative;
    z-index: 4;
    min-height: 360px;
    padding: 19px;
    border: 1px solid #dfe9e3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.11);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-property .experience-ui-wrap:hover .customer-ui {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14);
}

.ps-property .ui-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 13px;
    margin-bottom: 13px;
    border-bottom: 1px solid #edf3ef;
}

.ps-property .ui-topbar small {
    display: block;
    color: var(--ps-green);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.ps-property .ui-topbar strong {
    display: block;
    margin-top: 2px;
    color: var(--ps-black);
    font-size: 13px;
    font-weight: 700;
}

.ps-property .ui-avatar {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ps-black);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.ps-property .partner-avatar {
    background: var(--ps-yellow);
    color: var(--ps-black);
}

.ps-property .ui-search {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #e8f0eb;
    border-radius: 9px;
    background: #f8fbf9;
}

.ps-property .ui-search i {
    color: #777777;
    font-size: 12px;
}

.ps-property .ui-search > span {
    flex: 1;
    color: #858585;
    font-size: 10px;
}

.ps-property .ui-search button {
    padding: 7px 11px;
    border: none;
    border-radius: 6px;
    background: var(--ps-black);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
}

.ps-property .ui-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.ps-property .ui-stat-grid > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #edf3ef;
    border-radius: 9px;
    background: #ffffff;
}

.ps-property .ui-stat-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
}

.ps-property .ui-stat-grid small {
    display: block;
    color: #7f7f7f;
    font-size: 8.5px;
}

.ps-property .ui-stat-grid strong {
    display: block;
    margin-top: 2px;
    color: var(--ps-black);
    font-size: 12px;
    font-weight: 700;
}

.ps-property .ui-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ps-property .ui-title-row small {
    display: block;
    color: var(--ps-green);
    font-size: 7px;
    font-weight: 800;
}

.ps-property .ui-title-row strong {
    display: block;
    color: var(--ps-black);
    font-size: 11px;
}

.ps-property .ui-title-row > span {
    color: var(--ps-green);
    font-size: 8px;
    font-weight: 600;
}

.ps-property .ui-property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.ps-property .ui-property-card {
    overflow: hidden;
    border: 1px solid #edf3ef;
    border-radius: 9px;
    background: #ffffff;
}

.ps-property .ui-property-image {
    position: relative;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.ps-property .ui-property-image > span {
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 4px 6px;
    border-radius: 4px;
    background: #ffffff;
    color: var(--ps-black);
    font-size: 6px;
    font-weight: 800;
}

.ps-property .mint-card {
    background: linear-gradient(135deg, #dff2e8, #f3faf6);
    color: var(--ps-green);
}

.ps-property .yellow-card {
    background: linear-gradient(135deg, #fff0a8, #fffbea);
    color: #8d7615;
}

.ps-property .ui-property-body {
    padding: 9px;
}

.ps-property .ui-property-body strong {
    display: block;
    color: var(--ps-black);
    font-size: 10px;
}

.ps-property .ui-property-body small {
    display: block;
    margin: 3px 0 7px;
    color: #858585;
    font-size: 7.5px;
}

.ps-property .ui-property-body > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ps-green);
    font-size: 8px;
    font-weight: 600;
}

.ps-property .customer-bottom-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 10px;
}

.ps-property .customer-bottom-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    border-radius: 6px;
    background: #f7faf8;
    color: var(--ps-black);
    font-size: 8px;
}

.ps-property .customer-bottom-strip i {
    color: var(--ps-green);
}

.ps-property .partner-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ps-property .partner-action-row button {
    padding: 8px 11px;
    border: none;
    border-radius: 6px;
    background: var(--ps-black);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
}

.ps-property .partner-action-row > span {
    color: var(--ps-green);
    font-size: 9px;
    font-weight: 700;
}

.ps-property .partner-performance-card {
    padding: 11px;
    margin-bottom: 10px;
    border: 1px solid #edf3ef;
    border-radius: 8px;
    background: #f8fbf9;
}

.ps-property .partner-performance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ps-property .partner-performance-head small {
    display: block;
    color: var(--ps-green);
    font-size: 7px;
    font-weight: 800;
}

.ps-property .partner-performance-head strong {
    color: var(--ps-black);
    font-size: 10px;
}

.ps-property .partner-performance-head > span {
    color: var(--ps-green);
    font-size: 8px;
    font-weight: 700;
}

.ps-property .partner-chart {
    height: 70px;
    display: flex;
    align-items: end;
    gap: 6px;
}

.ps-property .partner-chart span {
    flex: 1;
    border-radius: 3px 3px 1px 1px;
    background: linear-gradient(180deg, #77c29f, #3a966d);
}

.ps-property .partner-enquiry-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid #edf3ef;
    border-radius: 8px;
}

.ps-property .partner-enquiry-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ps-yellow-soft);
    color: #8d7615;
}

.ps-property .partner-enquiry-row > div {
    flex: 1;
}

.ps-property .partner-enquiry-row small {
    display: block;
    color: var(--ps-green);
    font-size: 7px;
    font-weight: 800;
}

.ps-property .partner-enquiry-row strong {
    display: block;
    margin-top: 2px;
    color: var(--ps-black);
    font-size: 9.5px;
}

.ps-property .partner-enquiry-row button {
    padding: 7px 10px;
    border: 1px solid #ccd8d2;
    border-radius: 5px;
    background: #ffffff;
    color: var(--ps-black);
    font-size: 8px;
    font-weight: 600;
}

.ps-property .dashboard-float {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    padding: 10px 12px;
    border: 1px solid #dfe9e3;
    border-radius: 11px;
    background: #ffffff;
    color: var(--ps-black);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.11);
    animation: psDashboardFloat 3.7s ease-in-out infinite;
}

.ps-property .dashboard-float small {
    display: block;
    margin-bottom: 2px;
    color: #858585;
    font-size: 6.5px;
    font-weight: 800;
}

.ps-property .dashboard-float strong {
    display: block;
    font-size: 9px;
}

.ps-property .float-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
}

.ps-property .green-float {
    background: var(--ps-light-green);
    color: var(--ps-green);
}

.ps-property .yellow-float {
    background: var(--ps-yellow-soft);
    color: #8d7615;
}

.ps-property .customer-float-one,
.ps-property .partner-float-one {
    top: 4px;
    right: -3px;
}

.ps-property .customer-float-two,
.ps-property .partner-float-two {
    bottom: 2px;
    left: -3px;
    animation-delay: 0.8s;
}

.ps-property .customer-float-three,
.ps-property .partner-float-three {
    right: -7px;
    bottom: 96px;
    animation-delay: 1.5s;
}

@keyframes psDashboardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ps-property .experience-blob {
    position: absolute;
    border-radius: 50%;
}

.ps-property .blob-one {
    width: 240px;
    height: 240px;
    top: -140px;
    right: -75px;
    background: rgba(243, 212, 82, 0.23);
}

.ps-property .blob-two {
    width: 150px;
    height: 150px;
    left: -70px;
    bottom: -70px;
    background: rgba(58, 150, 109, 0.08);
}

.ps-property .experience-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 55px;
    left: 44%;
    border: 15px solid rgba(58, 150, 109, 0.05);
    border-radius: 50%;
}

.ps-property .experience-dots {
    position: absolute;
    width: 90px;
    height: 90px;
    bottom: 4px;
    right: 12px;
    opacity: 0.15;
    background-image: radial-gradient(var(--ps-green) 1px, transparent 1px);
    background-size: 10px 10px;
}


/* =====================================================
   PROPERTY JOURNEY
===================================================== */

.ps-property .property-journey-section {
    position: relative;
    padding: 44px 0 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f5faf7 52%, #ffffff 100%);
}

.ps-property .property-journey-container {
    max-width: 1230px;
}

.ps-property .property-journey-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.ps-property .property-journey-nav-wrap {
    position: sticky;
    top: 78px;
    align-self: start;
}

.ps-property .journey-nav-small-title {
    margin-bottom: 9px;
    color: #777777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.ps-property .property-journey-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-property .journey-nav-item {
    width: 100%;
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
}

.ps-property .journey-nav-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #929292;
    font-size: 21px;
}

.ps-property .journey-nav-icon i {
    display: inline-block;
    transform-origin: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ps-property .journey-nav-item strong {
    color: var(--ps-black-soft);
    font-size: 15px;
    font-weight: 600;
}

.ps-property .journey-nav-item:hover .journey-nav-icon,
.ps-property .journey-nav-item.active .journey-nav-icon {
    color: var(--ps-green);
}

.ps-property .journey-nav-item:hover strong,
.ps-property .journey-nav-item.active strong {
    color: var(--ps-green);
}

.ps-property .journey-nav-item.active .journey-nav-icon i {
    animation: psJourneyIcon 2.8s ease-in-out infinite;
}

@keyframes psJourneyIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-1.5px) scale(1.04); }
    60% { transform: translateY(-0.4px) scale(1.015); }
}

.ps-property .property-journey-content {
    min-width: 0;
}

.ps-property .property-step {
    position: relative;
    padding: 12px 0 26px;
    margin: 0 0 10px;
    scroll-margin-top: 90px;
}

.ps-property .property-step-watermark {
    position: absolute;
    top: -4px;
    right: 0;
    color: rgba(58, 150, 109, 0.06);
    font-size: 70px;
    line-height: 1;
    font-weight: 800;
}

.ps-property .property-step-label {
    display: block;
    margin-bottom: 7px;
    color: var(--ps-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.ps-property .property-step h3 {
    max-width: 760px;
    margin: 0 0 11px;
    color: var(--ps-black);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

.ps-property .property-step > p {
    max-width: 820px;
    margin: 0 0 10px;
    color: var(--ps-text);
    font-size: 14px;
    line-height: 1.75;
}

.ps-property .property-step-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 820px;
    padding: 15px;
    margin: 15px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #e9f7ef, #f9fdfa);
}

.ps-property .property-step-highlight.yellow-highlight {
    background: linear-gradient(135deg, #fff4bd, #fffdf2);
}

.ps-property .property-step-highlight > span {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #ffffff;
    color: var(--ps-green);
    font-size: 17px;
}

.ps-property .property-step-highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ps-black);
    font-size: 13px;
}

.ps-property .property-step-highlight p {
    margin: 0;
    color: #666666;
    font-size: 11.5px;
    line-height: 1.65;
}

.ps-property .property-step-line {
    margin-top: 13px;
    color: #666666;
    font-size: 12px;
}

.ps-property .property-step-line strong {
    color: var(--ps-green);
}

.ps-property .property-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 820px;
    margin: 14px 0;
}

.ps-property .property-detail-grid > div {
    padding: 14px;
    border: 1px solid #e6efe9;
    border-radius: 10px;
    background: #ffffff;
}

.ps-property .property-detail-grid i {
    display: block;
    margin-bottom: 8px;
    color: var(--ps-green);
    font-size: 20px;
}

.ps-property .property-detail-grid strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ps-black);
    font-size: 12px;
}

.ps-property .property-detail-grid span {
    color: #737373;
    font-size: 10px;
    line-height: 1.5;
}

.ps-property .portal-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 820px;
    margin: 14px 0;
}

.ps-property .portal-preview > div {
    padding: 14px 10px;
    border-top: 1px solid #ddebe3;
}

.ps-property .portal-preview i {
    display: block;
    margin-bottom: 8px;
    color: var(--ps-green);
    font-size: 20px;
}

.ps-property .portal-preview strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ps-black);
    font-size: 12px;
}

.ps-property .portal-preview span {
    color: #737373;
    font-size: 10px;
    line-height: 1.5;
}

.ps-property .customer-understanding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    max-width: 700px;
    margin: 15px 0;
}

.ps-property .customer-understanding-grid > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    background: var(--ps-light-green-3);
}

.ps-property .customer-understanding-grid span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ps-green);
    font-size: 15px;
}

.ps-property .customer-understanding-grid strong {
    color: var(--ps-black);
    font-size: 12px;
}

.ps-property .property-process-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 820px;
    margin: 15px 0;
}

.ps-property .property-process-flow > div {
    min-width: 135px;
    padding: 12px;
    border: 1px solid #e3eee7;
    border-radius: 9px;
    background: #ffffff;
}

.ps-property .property-process-flow > div > span {
    display: block;
    margin-bottom: 4px;
    color: var(--ps-green);
    font-size: 8px;
    font-weight: 800;
}

.ps-property .property-process-flow strong {
    color: var(--ps-black);
    font-size: 11px;
}

.ps-property .property-process-flow > i {
    color: #a3a3a3;
    font-size: 13px;
}

.ps-property .growth-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 820px;
    margin: 15px 0;
}

.ps-property .growth-feature-grid > div {
    padding: 13px;
    border-top: 1px solid #deebe4;
}

.ps-property .growth-feature-grid i {
    display: block;
    margin-bottom: 7px;
    color: var(--ps-green);
    font-size: 20px;
}

.ps-property .growth-feature-grid strong {
    color: var(--ps-black);
    font-size: 11.5px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .ps-property .seller-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ps-property .experience-panel {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .ps-property .property-journey-layout {
        grid-template-columns: 270px minmax(0, 1fr);
        gap: 30px;
    }

}

@media (max-width: 991px) {

    .ps-property .property-hero-content {
        margin-bottom: 30px;
    }

    .ps-property .seller-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-property .experience-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ps-property .experience-content {
        max-width: 670px;
        margin: auto;
        text-align: center;
    }

    .ps-property .experience-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ps-property .experience-list {
        text-align: left;
    }

    .ps-property .experience-ui-wrap {
        max-width: 720px;
        margin: auto;
    }

    .ps-property .property-journey-layout {
        grid-template-columns: 1fr;
    }

    .ps-property .property-journey-nav-wrap {
        position: sticky;
        top: 56px;
        z-index: 100;
        padding: 6px 0;
        background: rgba(255, 255, 255, 0.97);
    }

    .ps-property .journey-nav-small-title {
        display: none;
    }

    .ps-property .property-journey-nav {
        flex-direction: row;
        gap: 11px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ps-property .property-journey-nav::-webkit-scrollbar {
        display: none;
    }

    .ps-property .journey-nav-item {
        width: auto;
        min-width: max-content;
    }

    .ps-property .journey-nav-item strong {
        white-space: nowrap;
    }

}

@media (max-width: 767px) {

    .ps-property .property-hero {
        padding-top: 30px;
    }

    .ps-property .property-hero h1 {
        font-size: 35px;
    }

    .ps-property .property-main-image {
        height: 300px;
    }

    .ps-property .seller-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-property .experience-switch {
        width: 100%;
    }

    .ps-property .experience-switch-btn {
        flex: 1;
        min-width: 0;
        padding: 10px;
        font-size: 10px;
    }

    .ps-property .experience-stage {
        padding: 18px 13px;
    }

    .ps-property .experience-content h3 {
        font-size: 28px;
    }

    .ps-property .experience-content > p {
        font-size: 13px;
    }

    .ps-property .experience-list strong {
        font-size: 12px;
    }

    .ps-property .experience-list small {
        font-size: 10px;
    }

    .ps-property .dashboard-float {
        display: none;
    }

    .ps-property .ui-stat-grid {
        grid-template-columns: 1fr;
    }

    .ps-property .ui-property-grid {
        grid-template-columns: 1fr;
    }

    .ps-property .customer-bottom-strip {
        grid-template-columns: 1fr;
    }

    .ps-property .property-detail-grid,
    .ps-property .portal-preview,
    .ps-property .growth-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-property .customer-understanding-grid {
        grid-template-columns: 1fr;
    }

    .ps-property .property-process-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .ps-property .property-process-flow > div {
        width: 100%;
    }

    .ps-property .property-process-flow > i {
        align-self: center;
        transform: rotate(90deg);
    }

    .ps-property .property-step h3 {
        font-size: 25px;
    }

    .ps-property .property-step > p {
        font-size: 13px;
    }

}

@media (max-width: 500px) {

    .ps-property .property-hero h1 {
        font-size: 30px;
    }

    .ps-property .property-hero-points {
        flex-direction: column;
        gap: 9px;
    }

    .ps-property .property-main-image {
        height: 255px;
    }

    .ps-property .hero-floating-card {
        transform: scale(0.85);
    }

    .ps-property .hero-card-one {
        left: -10px;
    }

    .ps-property .hero-card-two {
        right: -20px;
    }

    .ps-property .seller-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ps-property .seller-benefit-item {
        min-height: 118px;
    }

    .ps-property .experience-switch-btn {
        font-size: 9px;
    }

    .ps-property .experience-content h3 {
        font-size: 25px;
    }

    .ps-property .property-detail-grid,
    .ps-property .portal-preview,
    .ps-property .growth-feature-grid {
        grid-template-columns: 1fr;
    }

    .ps-property .journey-nav-item strong {
        font-size: 13px;
    }

    .ps-property .journey-nav-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .ps-property .property-step h3 {
        font-size: 23px;
    }

    .ps-property .property-step > p {
        font-size: 12.5px;
    }

}

@media (max-width: 360px) {

    .ps-property .property-hero h1 {
        font-size: 26px;
    }

    .ps-property .property-primary-btn,
    .ps-property .property-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .ps-property .property-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

}

@media (prefers-reduced-motion: reduce) {

    .ps-property .hero-floating-card,
    .ps-property .dashboard-float,
    .ps-property .journey-nav-item.active .journey-nav-icon i {
        animation: none !important;
    }

    .ps-property .experience-panel.active {
        animation: none;
    }

}
