/* Styles for the pricing tables */

/* ==========================================================================
   Pricing Table Styles
   ========================================================================== */

.tagus-value-pricing-table, .tagus-value-pro-registration-container {
    padding: 40px 20px;
}

.tv-login-prompt {
    text-align: center;
    padding: 15px;
    background-color: #eaf6ff;
    border: 1px solid #bde0ff;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tv-login-prompt p {
    margin: 0;
    font-size: 16px;
}

.tv-order-summary-box {
    background-color: #f8f9fa;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.tv-order-summary-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.pack-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pack-name {
    font-size: 16px;
    font-weight: 700;
}

.pack-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pack-price {
    font-size: 16px;
    font-weight: 700;
    color: #1abc9c;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 20px;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #e0e6ed;
}

.btn-block {
    display: block;
    width: 100%;
}

.tv-pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.tv-pricing-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tv-pricing-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.tv-pricing-grid.columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tv-pricing-grid.columns-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 900px;
    margin: 0 auto 60px;
}

.tv-pricing-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tv-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tv-pricing-card.popular {
    border: 2px solid #1abc9c;
}

.tv-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1abc9c;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.tv-pricing-card .tv-pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.tv-pricing-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tv-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.tv-price .currency {
    font-size: 24px;
    color: #7f8c8d;
    margin-right: 5px;
    margin-top: 5px;
}

.tv-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
}

.tv-price-period {
    color: #7f8c8d;
    font-size: 14px;
}

.tv-pricing-features {
    margin-bottom: 30px;
}

.tv-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tv-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.tv-pricing-features li:last-child {
    border-bottom: none;
}

.tv-pricing-features i {
    color: #1abc9c;
    margin-right: 10px;
}

.tv-pricing-footer {
    text-align: center;
}

.tv-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tv-btn-primary {
    background: #1abc9c;
    color: #fff;
}

.tv-btn-primary:hover {
    background: #16a085;
    color: #fff;
}

.tv-btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.tv-btn-secondary:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

.tv-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tv-info-item {
    text-align: center;
}

.tv-info-item i {
    font-size: 48px;
    color: #1abc9c;
    margin-bottom: 15px;
}

.tv-info-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tv-pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

.tv-pricing-faq h3 {
    text-align: center;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.tv-faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tv-faq-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tv-faq-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .tv-pricing-grid {
        grid-template-columns: 1fr;
    }

    .tv-price .amount {
        font-size: 36px;
    }
}