

/* ============================================
   PRICING SECTION
   ============================================ */

   .pricing-section {
    padding: var(--section-py) 0;
    background: var(--bg-light-yellow);
    overflow: hidden;
}

/* ── Heading ── */
.pricing-heading-wrap { margin-bottom: 40px; }

.pricing-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 10px;
}

.pricing-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var( --green);
    margin-bottom: 12px;
}
.pricing-main-title span { color: var(--yellow); }

.pricing-main-sub {
    font-size: 0.88rem;
    color: var(--text-paragraph);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Tabs ── */
.pricing-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
}

.pricing-tabs {
    display: inline-flex;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 5px;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.pricing-tab {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-paragraph);
    background: transparent;
    border: none;
    border-radius: var(--radius-pill);
    padding: 9px 22px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.pricing-tab:hover { color: var( --green); }
.pricing-tab.active {
    background: var( --green);
    color: var(--white);
}

/* ── Panels ── */
.pricing-panel {
    display: none;
}
.pricing-panel.active {
    display: block;
    animation: pricingFadeIn 0.4s ease forwards;
}
@keyframes pricingFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Card ── */
.pricing-card {
    box-shadow: var(--shadow-sm);
    background: var(--bg-light-green);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
    border-color: rgba(254,148,70,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Popular card */
.pricing-card--popular {
    background: var( --green);
    border-color: var( --green);
    transform: translateY(-8px);
}
.pricing-card--popular:hover {
    border-color: var(--yellow);
    transform: translateY(-12px);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* ── Card Header ── */
.pricing-card-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.pricing-card--popular .pricing-card-header {
    border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-plan-name {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin-bottom: 14px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 6px;
}
.pricing-currency {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var( --green);
    margin-top: 8px;
}
.pricing-card--popular .pricing-currency { color: var(--white); }

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var( --green);
    line-height: 1;
}
.pricing-card--popular .pricing-amount { color: var(--white); }

.pricing-price-note {
    font-size: 0.75rem;
    color: #aaa;
    margin: 0;
}
.pricing-card--popular .pricing-price-note { color: rgba(255,255,255,0.5); }

/* ── Features List ── */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    font-weight: 500;
    line-height: 1.3;
}
.pricing-features li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    flex-shrink: 0;
}

.pricing-features li.included {
    color: var( --green);
}
.pricing-card--popular .pricing-features li.included {
    color: var(--white);
}
.pricing-features li.included i {
    background: rgba(254,148,70,0.15);
    color: var(--yellow);
}
.pricing-card--popular .pricing-features li.included i {
    background: rgba(254,148,70,0.25);
    color: var(--yellow);
}

.pricing-features li.excluded {
    color: #bbb;
}
.pricing-card--popular .pricing-features li.excluded {
    color: rgba(255,255,255,0.3);
}
.pricing-features li.excluded i {
    background: rgba(0,0,0,0.05);
    color: #ccc;
}


/* ── Pricing Btn ── */
.pricing-card.btn-1  , .pricing-card .btn-4{
    justify-content: center !important;
}


/* ── Money back ── */
.pricing-guarantee {
    color: var( --green);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pricing-guarantee i {
    color: var(--yellow);
    font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .pricing-tabs { flex-wrap: wrap; border-radius: var(--radius-lg); }
    .pricing-card--popular { transform: translateY(0); }
    .pricing-card--popular:hover { transform: translateY(-4px); }
}




/* ================================================================================================= */
/* ============================================ START PRICING PAGE================================== */
/* ================================================================================================= */


.pricing-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--bg-light-green);
}

.pricing-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(254,148,70,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(2,27,94,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 14px;
}

.pricing-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var( --green);
    line-height: 1.15;
    margin-bottom: 18px;
}
.pricing-hero-title span { color: var(--yellow); }

.pricing-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ── Pricing section override for page ── */
.pricing-page-section {
    background: var(--white);
    padding-top: 60px;
}

/* ── CTA Strip ── */
.pricing-cta-strip {
    background: var(--bg-light-yellow);
    padding: 50px 0;
    margin-top: 0;
}

.pricing-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var( --green);
    margin-bottom: 8px;
}

.pricing-cta-sub {
    font-size: 0.88rem;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .pricing-hero { padding: 130px 0 60px; }
    .pricing-cta-strip { text-align: center; }
    .pricing-cta-strip .col-lg-auto { text-align: center; }
}

@media (max-width: 767.98px) {
    .pricing-hero { padding: 110px 0 50px; }
}

/* ================================================================================================= */
/* ============================================ END PRICING PAGE================================== */
/* ================================================================================================= */