/* NEW: Pricing Table Widget Styles */
.pricing-table-main-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 30px auto;
}

.review-pro-pricing-table-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 20px 20px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e6e3f0;
    color: #1E40AF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.custom-plan-card {
    background-color: #1E40AF;
    color: #fff;
    padding: 40px 20px 20px;
}

.custom-plan-card .pricing-badge {
    background-color: #e6e3f0;
    color: #1E3A8A;
}

.custom-plan-content a {
    text-decoration: underline;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.plan-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
}

.price-new {
    font-size: 2.5em;
    font-weight: 800;
    color: #1E40AF;
    margin-bottom: 20px;
}

.custom-plan-card .price-new {
    color: #fff;
}

.plan-description {
    color: #fff;
    font-size: 1em;
    margin-bottom: 25px;
}

.pricing-buy-now-button {
  background-color: #1E40AF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
}

.pricing-buy-now-button:hover {
  background-color: #1E3A8A;
  color:#fff;
}




.custom-plan-button {
    background-color: #fff;
    color: #5b4d9c;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.plan-features li {
    margin-bottom: 10px;
    color: #666;
}

.star-icon {
    color: #ffc107;
    margin-right: 10px;
}

.pricing-footer {
    padding: 15px;
    background-color: #1E3A8A;
    border-radius: 0 0 12px 12px;
    margin: -20px -20px;
    margin-top: 0;
    font-size: 0.9em;
    color: #fff;
}

.custom-plan-footer {
    background-color: #1e3a8a;
    color: #fff;
}

.pricing-table-step:not(.active) {
    display: none;
}

.pricing-table-main-wrapper .review-pro-card {
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin: 0 auto;
    max-width: 600px;
    box-sizing: border-box;
}

.pricing-table-main-wrapper .review-pro-button {
    background-color: #5b4d9c;
    color: #fff;
}

.pricing-table-main-wrapper .form-group input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 1em;
}

@media (max-width: 768px) {
    .review-pro-pricing-table-container {
        flex-direction: column;
        gap: 20px;
    }
}