/* =========================================================
   PRICE LIST PAGE — PREMIUM DESIGN
   Matches floor-plan / location-map / master-plan language
   ========================================================= */

:root {
    --pl-navy: #0d1b2a;
    --pl-gold: #d7b56d;
    --pl-grey: #f5f5f7;
    --pl-text: #555;
}

/* --- HERO --- */
.pl-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pl-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: plHeroZoom 20s ease-out forwards;
}

@keyframes plHeroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.pl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13,27,42,0.88) 0%,
        rgba(13,27,42,0.5) 50%,
        rgba(13,27,42,0.8) 100%);
}

.pl-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 5% 0;
}

/* Breadcrumb */
.pl-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: sans-serif;
    font-size: 13px;
    animation: plFadeDown .8s .1s both;
}

.pl-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.pl-breadcrumb a:hover { color: var(--pl-gold); }

.pl-breadcrumb__sep {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}

.pl-breadcrumb__current {
    color: var(--pl-gold);
    font-weight: 600;
}

.pl-hero__eyebrow {
    color: var(--pl-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 14px;
    font-weight: 700;
    font-family: sans-serif;
    animation: plFadeDown .8s .2s both;
}

.pl-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-family: 'Georgia', serif;
    margin: 0 0 16px;
    letter-spacing: .02em;
    animation: plFadeDown .8s .4s both;
}

.pl-hero__sub {
    font-size: 15px;
    font-family: sans-serif;
    color: rgba(255,255,255,0.65);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0;
    animation: plFadeDown .8s .6s both;
}

/* Scroll indicator */
.pl-hero__scroll {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 70px;
    background: rgba(255,255,255,0.12);
    z-index: 2;
    overflow: hidden;
}

.pl-hero__scroll span {
    display: block;
    width: 100%; height: 50%;
    background: var(--pl-gold);
    animation: plScrollDrop 2s cubic-bezier(.77,0,.175,1) infinite;
}

@keyframes plScrollDrop {
    0%  { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
    100%{ transform: translateY(200%); }
}

@keyframes plFadeDown {
    0%   { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- SHARED ELEMENTS --- */
.pl-label {
    display: block;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--pl-gold);
    margin-bottom: 14px;
}

.pl-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-family: 'Georgia', serif;
    color: var(--pl-navy);
    margin: 0 0 10px;
}

.pl-gold-rule {
    width: 50px;
    height: 3px;
    background: var(--pl-gold);
    margin: 16px auto 0;
}

/* --- INTRO --- */
.pl-intro {
    padding: 10vh 5%;
    background: #fff;
    text-align: center;
}

.pl-intro__inner {
    max-width: 800px;
    margin: 0 auto;
}

.pl-intro__text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--pl-text);
    margin: 30px 0 0;
    font-family: sans-serif;
}

.pl-intro__text strong {
    color: var(--pl-navy);
}

/* --- PRICE LIST IMAGE (Dark Section) --- */
.pl-image-section {
    background: var(--pl-navy);
    padding: 8vh 5%;
    position: relative;
    overflow: hidden;
}

.pl-image-section::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215,181,109,.07) 0%, transparent 70%);
    pointer-events: none;
}

.pl-image-section::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215,181,109,.05) 0%, transparent 70%);
    pointer-events: none;
}

.pl-image__inner {
    max-width: 900px;
    margin: 0 auto;
}

.pl-image__frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
    cursor: pointer;
    transition: transform .5s cubic-bezier(.16,1,.3,1),
                box-shadow .5s cubic-bezier(.16,1,.3,1);
}

.pl-image__frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.pl-image__frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.pl-image__frame:hover img {
    transform: scale(1.03);
}

.pl-image__hover {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .4s ease;
    gap: 10px;
}

.pl-image__hover i {
    color: var(--pl-gold);
    font-size: 18px;
}

.pl-image__frame:hover .pl-image__hover {
    opacity: 1;
}

/* --- INVESTMENT ADVANTAGES --- */
.pl-highlights {
    padding: 10vh 5%;
    background: var(--pl-grey);
}

.pl-highlights__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pl-highlights__header {
    text-align: center;
    margin-bottom: 60px;
}

.pl-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pl-adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.04);
    transition: transform .5s cubic-bezier(.16,1,.3,1),
                box-shadow .5s cubic-bezier(.16,1,.3,1),
                border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.pl-adv-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--pl-gold);
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.pl-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border-color: rgba(215,181,109,.2);
}

.pl-adv-card:hover::before {
    transform: scaleX(1);
}

.pl-adv-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(215,181,109,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pl-gold);
    transition: background .4s ease, transform .4s ease, color .4s ease;
}

.pl-adv-card:hover .pl-adv-card__icon {
    background: var(--pl-gold);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.pl-adv-card h4 {
    font-size: 18px;
    color: var(--pl-navy);
    margin: 0 0 12px;
    font-family: 'Georgia', serif;
}

.pl-adv-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin: 0;
    font-family: sans-serif;
}

/* --- CTA --- */
.pl-cta {
    padding: 10vh 5%;
    background: var(--pl-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pl-cta::before,
.pl-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(215,181,109,.04);
    pointer-events: none;
}

.pl-cta::before {
    width: 500px; height: 500px;
    top: -200px; left: -200px;
    animation: plFloat 12s ease-in-out infinite;
}

.pl-cta::after {
    width: 350px; height: 350px;
    bottom: -120px; right: -80px;
    animation: plFloat 9s ease-in-out infinite reverse;
}

@keyframes plFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(15px,-20px) scale(1.05); }
}

.pl-cta__inner {
    position: relative; z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.pl-cta__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: 'Georgia', serif;
    color: #fff;
    margin: 0 0 16px;
}

.pl-cta__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    margin: 0 0 40px;
    font-family: sans-serif;
}

.pl-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pl-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    border-radius: 8px;
    transition: all .3s ease;
}

.pl-cta__btn--primary {
    background: var(--pl-gold);
    color: var(--pl-navy);
}

.pl-cta__btn--primary:hover {
    background: #e8c87e;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(215,181,109,.3);
}

.pl-cta__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

.pl-cta__btn--secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-3px);
}

.pl-cta__partner {
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-family: sans-serif;
}

.pl-cta__partner strong {
    color: var(--pl-gold);
}

/* --- LIGHTBOX --- */
.pl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.pl-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.pl-lightbox__close {
    position: absolute;
    top: 24px; right: 32px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10001;
    transition: color .3s;
}

.pl-lightbox__close:hover { color: var(--pl-gold); }

.pl-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(.9);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.pl-lightbox.active .pl-lightbox__img {
    transform: scale(1);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .pl-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pl-hero {
        height: 50vh;
        min-height: 360px;
    }
    .pl-hero__content { padding-top: 60px; }

    .pl-highlights__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pl-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .pl-cta__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
