/*
 * Page     : Pricing
 * File     : css/desktop/pages/pagepricing.css
 * Loaded by: page-pricing.php (mobile + desktop)
 *
 * App CTA classes (appSection, cta-new-panditt, cta-heading, btn-app-download)
 * also used by page-how-it-works.php (task 1.21) — will share when that is migrated.
 */

/* ══════════════════════════════════════════
   PRICING CARDS
   ══════════════════════════════════════════ */
.price-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.price-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* ── Image holder ── */
.price-img-holder {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.price-img-holder img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.price-container:hover .price-img-holder img {
    transform: scale(1.04);
}

/* Dimmed image for non-highlighted plans */
.level-bright {
    filter: brightness(0.85);
}

/* ── Content area ── */
.price-content-container {
    padding: 24px 20px;
    background: #fff;
    border: 2px solid rgba(243, 116, 32, 0.2);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

/* Highlighted plan (Silver) */
.price-content-container.price-bg {
    background: linear-gradient(135deg, #fff7ed, #fff3e0);
    border-color: var(--np-saffron, #F37420);
    border-top: 3px solid var(--np-saffron, #F37420);
}

.price-content-container h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--np-saffron, #F37420);
    margin-bottom: 8px;
}

/* ── Price value ── */
.price-content-container .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--np-text-dark, #3E2723);
    margin-bottom: 16px;
}

.price-content-container .price .period {
    font-size: 14px;
    font-weight: 400;
    color: var(--np-text-mid, #6B5B4F);
}

/* ── Feature list ── */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe4;
    font-size: 14px;
    color: var(--np-text-mid, #6B5B4F);
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.price-list li:last-child {
    border-bottom: none;
}

/* ── Middle-column border accent ── */
.price-border {
    border-left: 2px solid rgba(243, 116, 32, 0.15);
    border-right: 2px solid rgba(243, 116, 32, 0.15);
}

/* ── Buttons (commented-out in template but kept ready) ── */
.btn-red {
    background-color: var(--np-saffron, #F37420);
    color: #fff;
    border-color: var(--np-saffron, #F37420);
    border-radius: 12px;
    font-size: 16px;
    padding: 8px 22px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-red:hover {
    background-color: var(--np-saffron-dark, #e05515);
    color: #fff;
}

.btn-outline-red {
    background-color: transparent;
    color: var(--np-saffron, #F37420);
    border: 2px solid var(--np-saffron, #F37420);
    border-radius: 12px;
    font-size: 16px;
    padding: 8px 22px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-red:hover {
    background-color: var(--np-saffron, #F37420);
    color: #fff;
}

/* ══════════════════════════════════════════
   APP DOWNLOAD CTA SECTION
   ══════════════════════════════════════════ */
.appSection {
    padding: 0 0 30px;
}

.cta-new-panditt {
    padding: 40px 30px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.left-cta-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.left-cta-content {
    width: 100%;
}

.ctaheadcontainer {
    margin-bottom: 12px;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-app-download {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-app-download img {
    display: block;
    height: 48px;
    width: auto;
}

.btn-app-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── Hidden section (not used currently) ── */
.all-pujass-section {
    display: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
    .cta-heading {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .price-border {
        border-left: none;
        border-right: none;
        border-top: 2px solid rgba(243, 116, 32, 0.15);
        border-bottom: 2px solid rgba(243, 116, 32, 0.15);
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .cta-new-panditt {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .cta-heading {
        font-size: 22px;
    }

    .button-container {
        gap: 12px;
    }

    .btn-app-download img {
        height: 42px;
    }
}

@media (max-width: 480px) {
    .price-content-container {
        padding: 18px 16px;
    }

    .price-content-container .price {
        font-size: 22px;
    }

    .cta-heading {
        font-size: 20px;
    }

    .button-container {
        justify-content: center;
    }
}
