/* Session Counter */
.session-counter {
    display: inline-block;
    margin-bottom: 1rem;
}

.session-counter .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Pricing Tables */
.pricing-tables {
    background-color: rgba(20, 0, 40, 0.7);
    padding: 3rem 0;
}

.pricing-table {
    background: linear-gradient(145deg, rgba(30, 30, 60, 0.8), rgba(20, 20, 40, 0.9));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 128, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(128, 128, 255, 0.2);
}

.pricing-header {
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-table:hover .pricing-header::before {
    opacity: 1;
}

.included-table .pricing-header {
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
}

.coming-table .pricing-header {
    background: linear-gradient(135deg, #ff8f00, #ff5722);
}

.pricing-header h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.price {
    margin-top: 1rem;
}

.regular-price {
    display: block;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.sale-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffdd00;
}

.bonus-text {
    display: block;
    font-size: 1.2rem;
    color: white;
}

.bonus-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffdd00;
}

.pricing-features {
    padding: 1.5rem;
}

.pricing-header .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.savings-badge {
    background: linear-gradient(to right, #ff5722, #ff9800);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #ffdd00;
    width: 20px;
    text-align: center;
}

.feature-text {
    flex-grow: 1;
    font-weight: 500;
}

.feature-value {
    font-weight: 700;
    color: #ff6b6b;
    white-space: nowrap;
}

.total-row {
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    padding-top: 15px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.total-value {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.pricing-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 12px 12px;
    margin-top: auto;
}

.pricing-footer .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.progress-container {
    flex-grow: 1;
    margin-left: 1rem;
}

.progress {
    height: 10px;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(to right, #ffd700, #ffaa00);
    border-radius: 5px;
    color: transparent; /* Hide the text */
    font-size: 0;
    line-height: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.progress-status {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 3px;
    text-align: right;
}

.pricing-footer .btn-primary {
    background: linear-gradient(to right, #ffdd00, #ff9500);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.3);
}

.pricing-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 221, 0, 0.4);
    background: linear-gradient(to right, #ffe600, #ffa200);
}

.pricing-footer .btn-outline-primary {
    border: 2px solid #7e57c2;
    color: #fff;
    font-weight: 700;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(126, 87, 194, 0.1);
}

.pricing-footer .btn-outline-primary:hover {
    background: rgba(126, 87, 194, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.3);
}

.warning-text {
    color: #ff9800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    border-left: 3px solid #ff9800;
}
