/* Pricing Section */
.pricing-section {
    background-color: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Dark Box Container */
.pricing-box-container {
    background-color: #0B1F1E;
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Shape inside Dark Box */
.pricing-shape-1 {
    position: absolute;
    left: -50px;
    top: -50px;
    width: 350px;
    pointer-events: none;
    z-index: 1;
}

.pricing-shape-1 img {
    width: 100%;
    height: auto;
    filter: grayscale(1) brightness(0.2) opacity(0.5);
}

/* Heading Wrap */
.pricing-heading-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 30px;
}

.pricing-heading .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tj-color-theme-primary);
    margin-bottom: 15px;
}

.pricing-heading .sec-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.1;
    margin-bottom: 15px;
}

.pricing-heading .desc {
    font-size: 16px;
    color: #666;
    max-width: 500px;
}

/* Tab Controllers */
.pricing-tab-controllers {
    display: flex;
    background: #0B1F1E;
    padding: 6px;
    border-radius: 100px;
}

.pricing-tab-controller {
    padding: 10px 30px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab-controller.active {
    background: var(--tj-color-theme-primary);
    color: #0b1f1e;
}

/* Pricing Box Wrapper */
.pricing-box-wrapper {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.pricing-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-box.active:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Basic Plan - Even Lighter as requested */
.pricing-box:first-child {
    background: rgba(255, 255, 255, 0.08);
}

/* Standard Plan - Slightly darker than Basic */
.pricing-box:nth-child(2) {
    background: rgba(255, 255, 255, 0.04);
}

/* Premium Card (White) */
.pricing-box.active {
    background: #fff;
    border-color: #fff;
}

/* Pricing Header */
.pricing-header {
    margin-bottom: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.pricing-box.active .pricing-header {
    border-bottom-color: #eee;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pricing-box.active .package-name {
    color: #0b1f1e;
}

.package-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 20px;
}

.package-currency {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.pricing-box.active .package-currency {
    color: #0b1f1e;
}

.price-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pricing-box.active .price-number {
    color: #0b1f1e;
}

.package-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.pricing-box.active .package-period {
    color: #888;
}

.package-desc p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.pricing-box.active .package-desc p {
    color: #555;
}

/* List Items */
.pricing-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pricing-box.active .pricing-list-title {
    color: #0b1f1e;
}

.list-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-box.active .list-items li {
    color: #444;
}

.list-items li i {
    color: var(--tj-color-theme-primary);
    font-size: 18px;
}

/* Pricing Btn */
.pricing-btn {
    margin-top: 40px;
}

.pricing-btn .tj-primary-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 12px 12px 25px;
    font-size: 14px;
}

/* Tab Animation */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icons replacement (if tji-list is not enough) */
.list-items li i::before {
    content: " \2022";
    /* fallback dot */
    font-family: inherit;
}

/* Using tji-list as requested if available, otherwise stylish check */
/* Responsive */
@media (max-width: 1200px) {
    .pricing-box-container {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .pricing-section .container {
        padding: 0 40px;
    }

    .pricing-heading-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-box-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-box-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .pricing-section .container {
        padding: 0 15px;
    }

    .pricing-box-container {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .pricing-box {
        padding: 25px 20px;
    }

    .price-number {
        font-size: 40px;
    }
}