/* --- PRICING CARD NEW DESIGN --- */

.pricing-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.pricing-wrapper {
    padding: 0;
    margin: 0;
}

.pricing-list li.col-md-4 {
    list-style: none;
}

.pricing-header {
    background: linear-gradient(135deg, #5b00c7, #7b41ff);
    padding: 35px 15px;
    color: #fff;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.pricing-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.pricing-header .price {
    font-size: 42px;
    font-weight: bold;
    margin-top: 10px;
}

.pricing-body {
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    transition: .3s ease-in-out;
}

.pricing-wrapper:hover .pricing-body {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.pricing-features {
    padding: 0;
    margin: 0;
}

.pricing-features li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 14px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #6f2bff;
    font-size: 16px;
}

.pricing-footer {
    display: flex;
    border-radius: 20px;
}

.pricing-footer .select-plan {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 0 20px 20px;
    transition: 0.3s;
}

.pricing-footer .bl {
    background: #5b00c7;
    color: white !important;
    border-radius: 0 0 0 20px;
}

.pricing-footer .br {
    background: #e6dbff;
    color: #5b00c7;
    border-radius: 0 0 20px 0;
}

.pricing-footer .select-plan:hover {
    opacity: 0.8;
}


/* ✅ RESPONSIVE */
@media (max-width: 992px) {
    .pricing-list {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .pricing-list li.col-md-4 {
        width: 100%;
    }
}
