/* ══════════════════════════════════════════════════════════
   price.css
   ══════════════════════════════════════════════════════════ */

:root {
    --brand: #c67529;
    --brand-2: #ff8f0c;
    --brand-3: #b07219;
    --brand-grad: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
    --ink: #111;
    --muted: #222;
    --line: rgba(0, 0, 0, .08);
    --cream: #faf7f1;
    --espresso: #1c1712;
}



/* ═══ shared header block used by all 3 sections ═══ */
.price-header {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Reused from project.css pattern, kept local so this file
   is self-contained: */
.pd-content-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ink);
}

.pd-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.pd-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    color: #333;
}

.pd-checklist li i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: var(--brand-grad);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}

.pd-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 15px 26px;
    background: var(--brand-grad);
    color: #fff !important;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease;
}

.pd-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px -14px rgba(198, 117, 41, .5);
}

.pd-cta-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
}

.pd-cta-light:hover {
    background: #fff;
    color: var(--ink) !important;
}


/* ══════════════════════════════════════════════════════════
   2. PLOT SIZES & PRICE — pricing card grid
   ══════════════════════════════════════════════════════════ */
.pricing-section {
    background: #fff;
}

.price-showcase {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    margin-top: 60px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.price-showcase-info {
    background: #fff;
    border: 1px solid var(--line);
    border-right: none;
    padding: 64px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-showcase-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}

.price-showcase-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--ink);
    margin-bottom: 26px;
}

.price-showcase-stats {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.price-showcase-stats .stat {
    display: flex;
    flex-direction: column;
}

.price-showcase-stats .stat-value {
    font-family:  serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.price-showcase-stats .stat-value small {
    font-size: 14px;
    color: var(--brand);
    margin-left: 1px;
}

.price-showcase-stats .stat-label {
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.price-showcase-stats .stat-divider {
    width: 1px;
    height: 34px;
    background: #444;
}

.price-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.price-showcase-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 14.5px;
    color: #333;
    border-bottom: 1px solid var(--line);
}

.price-showcase-list li:first-child {
    padding-top: 0;
}

.price-showcase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 16px;
    height: 1px;
    background: var(--brand-grad);
}

.price-showcase-info .luxury-btn {
    align-self: flex-start;
}

.price-showcase-plaque {
    position: relative;
    z-index: 2;
    padding: 64px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--espresso);
}

.price-showcase-plaque::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg,
            rgba(12, 9, 6, .82) 0%,
            rgba(12, 9, 6, .68) 50%,
            rgba(12, 9, 6, .88) 100%);
}

.price-showcase-plaque>* {
    position: relative;
    z-index: 1;
}

.plaque-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 196, 120, .55);
}

.plaque-corner.tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.plaque-corner.br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.plaque-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.plaque-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, #f3cb8c 0%, #ff8f0c 45%, #c67529 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plaque-value .currency {
    font-size: 32px;
    vertical-align: top;
    margin-right: 4px;
}

.plaque-unit {
    display: block;
    font-size: 13.5px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.952);
    margin-top: 12px;
}

.plaque-divider {
    width: 46px;
    height: 1px;
    background: rgba(255, 196, 120, .5);
    margin: 28px 0;
}

.plaque-note {
    font-size: 12.5px;
    line-height: 1.75;
    color: rgb(255, 255, 255);
    max-width: 230px;
}

.price-disclaimer {
    margin-top: 44px;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--muted);
    font-style: italic;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .price-showcase {
        grid-template-columns: 1fr;
    }

    .price-showcase-info {
        border-right: 1px solid var(--line);
        border-bottom: none;
        padding: 50px 36px;
    }

    .price-showcase-plaque {
        padding: 54px 36px;
    }
}

@media (max-width: 480px) {
    .price-showcase-info,
    .price-showcase-plaque {
        padding: 44px 26px;
    }

    .plaque-value {
        font-size: 50px;
    }
}


/* ══════════════════════════════════════════════════════════
   3. PAYMENT PLAN — milestone stepper
   ══════════════════════════════════════════════════════════ */
.payment-section {
    background: var(--cream);
}

/* ── Two-plan comparison cards ───────────────────────────── */
.payment-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1120px;
    margin: 64px auto 0;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 44px 42px 38px;
    display: flex;
    flex-direction: column;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease, border-color .45s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(28, 23, 18, .22);
    border-color: rgba(198, 117, 41, .35);
}

.plan-card-head {
    padding-bottom: 24px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
}

.plan-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    background: #ba570f;
    color: #fff;
    padding: 5px 14px;
    border: 1px solid rgba(198, 117, 41, .35);
    border-radius: 30px;
    margin-bottom: 18px;
}

.plan-card-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.plan-card-head p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    max-width: 88%;
}

.plan-milestones {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
}

.plan-milestones li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--line);
}

.plan-milestones li:last-child {
    border-bottom: none;
}

.pm-badge {
    flex-shrink: 0;
    min-width: 66px;
    height: 42px;
    padding: 0 10px;
    border-radius: 8px;
    background: var(--cream);
    border: 1.5px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    transition: background .4s ease, color .4s ease, border-color .4s ease;
}

.pm-badge small {
    font-size: 10.5px;
    font-weight: 600;
    margin-left: 2px;
}

.plan-milestones li:hover .pm-badge {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
}

.pm-info h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.pm-info p {
    font-size: 12.5px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    max-width: 320px;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 20px;
    border: 1.5px solid var(--brand);
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: none;
    transition: background .4s ease, color .4s ease, gap .3s ease;
}

.plan-cta:hover {
    background: var(--brand-grad);
    color: #fff;
    gap: 14px;
}

/* Anchor the CTA to the card's bottom edge so a taller sibling card
   (grid align-items:stretch) never leaves a dead gap *below* the button —
   any extra height collapses into one clean space right above it. */
.plan-card > .plan-cta {
    margin-top: auto;
}

/* Featured plan (Plan B) — dark, elevated treatment */
.plan-card-featured {
    background: linear-gradient(rgba(27, 50, 40, 0.89), rgba(27, 50, 40, 0.75)), url(../image/director-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-color: var(--espresso);
    color: #fff;
    overflow: hidden;
}

.plan-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(198, 117, 41, .28), transparent 55%);
    pointer-events: none;
}

.plan-card-featured:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 30px 60px -26px rgba(0, 0, 0, .45);
}

.plan-ribbon {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    background: var(--brand-grad);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .4);
}

.plan-card-featured .plan-card-head {
    border-bottom-color: rgba(255, 255, 255, .14);
    position: relative;
    padding-right: 110px;
}

.plan-card-featured .plan-tag {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.726);
}

.plan-card-featured .plan-card-head h3 {
    color: #fff;
}

.plan-card-featured .plan-card-head p {
    color: #fff !important;
    max-width: 100%;
}

.plan-card-featured .plan-milestones li {
    border-bottom-color: rgba(255, 255, 255, .12);
    position: relative;
}

.plan-card-featured .pm-badge {
    background: rgba(255, 255, 255, .06);
    border-color: #ffb35c;
    color: #ffb35c;
}

.plan-card-featured .plan-milestones li:hover .pm-badge {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
}

.plan-card-featured .pm-info h6 {
    color: #fff;
}

.plan-card-featured .pm-info p {
    color: rgba(255, 255, 255, .58);
}

.plan-perk {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 16px 18px;
    background: rgba(255, 179, 92, .08);
    border-left: 2px solid #ffb35c;
    border-radius: 2px;
}

.plan-perk i {
    color: #ffb35c;
    font-size: 14px;
    margin-top: 2px;
}

.plan-perk span {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.897);
}

.plan-cta-light {
    position: relative;
    border-color: #ffb35c;
    color: #ffb35c;
}

.plan-cta-light:hover {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
}

@media (max-width: 900px) {
    .payment-plans-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 46px;
    }

    .plan-card {
        padding: 36px 30px 30px;
    }

    .plan-card-featured .plan-card-head {
        padding-right: 0;
    }

    .plan-ribbon {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 30px 22px 26px;
    }

    .pm-badge {
        min-width: 56px;
        height: 38px;
        font-size: 14px;
    }

    .plan-milestones li {
        gap: 14px;
    }
}

.payment-notes {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    margin-top: 90px;
    align-items: stretch;
}

.payment-note-card {
    background: #fff;
    padding: 44px 44px 34px;
    border-left: 3px solid var(--brand);
}

.payment-cta-card {
    background:
        linear-gradient(rgba(27, 50, 40, 0.75), rgba(27, 50, 40, 0.75)),
        url("../image/director-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.payment-cta-card p{
    color: #fff !important;
}

.payment-cta-card .sub-heading {
    color: rgba(255, 255, 255, .55);
}

.payment-cta-card .pd-cta {
    margin: 22px auto 0;
}

@media (max-width: 900px) {
    .payment-track {
        flex-direction: column;
        align-items: flex-start;
        gap: 46px;
        max-width: 420px;
    }

    .payment-line {
        top: 34px;
        bottom: 34px;
        left: 34px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .payment-line-fill {
        transform: scaleY(0);
        transform-origin: top center;
    }

    .payment-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 22px;
        padding: 0;
    }

    .payment-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .payment-step-content {
        flex: 1;
        min-width: 0;
    }

    .payment-step-content h5 {
        margin-bottom: 6px;
    }

    .payment-step-content p {
        max-width: 260px;
        margin: 0;
    }

    .payment-notes {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .payment-note-card,
    .payment-cta-card {
        padding: 32px 26px;
    }
}

/* ══════════════════════════════════════════════════════════
   4. BUYBACK POLICY — assurance split layout
   ══════════════════════════════════════════════════════════ */
.buyback-section {
    background: #fff;
}

.buyback-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.buyback-media {
    position: relative;
    height: 560px;
}

.buyback-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buyback-media-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--brand-grad);
    color: #fff;
    padding: 22px 30px;
    text-align: center;
    z-index: 4;
}

.buyback-media-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.buyback-media-badge span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .9;
}

.buyback-steps {
    list-style: none;
    padding: 0;
    margin: 28px 0 26px;
}

.buyback-steps li {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.buyback-steps li:first-child {
    padding-top: 0;
}

.buyback-steps li span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
    flex-shrink: 0;
}

.buyback-steps li h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.buyback-steps li p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.buyback-highlight {
    background: var(--cream);
    border-left: 4px solid var(--brand);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.buyback-highlight i {
    font-size: 26px;
    flex-shrink: 0;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.buyback-highlight p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #333;
}

.buyback-highlight strong {
    color: var(--ink);
}

@media (max-width: 991px) {
    .buyback-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .plan-perk{
        margin-bottom: 8px;
    }
    .pm-info p{
        color: #000 !important;
    }
    .plan-card-featured .pm-info p{
        color: #fff !important;
    }
    .price-showcase-info h3, .plan-card-head h3{
        font-size:26px;
    }

    .buyback-media {
        height: 340px;
    }
}