/* =====================================
   Pricing Cards Custom CSS
========================================*/

/* Compact layout for pricing section */
.home6-faq-section .tab-content {
    margin-top: 35px;
}

.home6-faq-section .nav-pills {
    margin-bottom: 15px;
}

.home6-faq-section .section-title.five h2 {
    margin-bottom: 10px;
}

.home6-faq-section .section-title.five p {
    margin-bottom: 0;
}

.home6-faq-section .section-title.five span {
    margin-bottom: 10px;
}

.pricing-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(var(--black-color-opc), 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color5);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.enterprise {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border: 2px solid var(--primary-color5);
}

/* Pricing Header */
.pricing-header {
    margin-bottom: 20px;
}

.plan-name h5 {
    color: var(--title-color);
    font-family: var(--font-manrope);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-badge {
    display: inline-block;
    background: rgba(var(--primary-color5-opc), 0.15);
    color: var(--primary-color5);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.plan-badge.featured-badge {
    background: var(--primary-color5);
    color: var(--white-color);
}

.plan-badge.enterprise-badge {
    background: linear-gradient(135deg, var(--primary-color5), var(--primary-color1));
    color: var(--white-color);
}

/* Pricing */
.pricing {
    margin-bottom: 5px;
}

.pricing .price {
    color: var(--title-color);
    font-family: var(--font-manrope);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    display: block;
}

.pricing .old-price {
    color: #999;
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    margin-left: 8px;
}

.pricing .period {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}

.pricing-subtitle {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    margin-top: 5px;
}

/* Pricing Features */
.pricing-features {
    flex: 1;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 6px 0;
    color: var(--title-color);
    font-family: var(--font-dmsans);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    border-bottom: 1px solid rgba(var(--black-color-opc), 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    margin-right: 10px;
    font-size: 16px;
    width: 18px;
    flex-shrink: 0;
}

.features-list li i.bx-check {
    color: #4CAF50;
}

.features-list li i.bx-x {
    color: #f44336;
}

.features-list li i.bx-info-circle {
    color: #2196F3;
}

/* Pricing Footer */
.pricing-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 5px;
}

.pricing-btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.primary-btn6.enterprise-btn {
    background: linear-gradient(135deg, var(--primary-color5), var(--primary-color1));
    border-color: transparent;
}

.primary-btn6.enterprise-btn:hover {
    background: linear-gradient(135deg, var(--primary-color1), var(--primary-color5));
}

.primary-btn6.white-bg {
    background: var(--white-color);
    color: var(--primary-color5);
    border: 2px solid var(--primary-color5);
}

.primary-btn6.white-bg:hover {
    background: var(--primary-color5);
    color: var(--white-color);
}

/* Enterprise Contact Card */
.enterprise-contact-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.enterprise-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enterprise-description {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.enterprise-feature-item {
    text-align: center;
    margin-bottom: 20px;
}

.enterprise-feature-item .feature-icon {
    margin-bottom: 10px;
}

.enterprise-feature-item h6 {
    color: var(--title-color);
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.enterprise-feature-item p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

.contact-option {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(var(--primary-color5-opc), 0.05);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(var(--primary-color5-opc), 0.1);
    transform: translateY(-2px);
}

.contact-option h6 {
    color: var(--title-color);
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-option p {
    margin: 0;
    font-size: 14px;
}

.contact-option a {
    color: var(--primary-color5);
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .pricing-card {
        padding: 20px 18px;
    }
    
    .plan-name h5 {
        font-size: 20px;
    }
    
    .pricing .price {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .enterprise-contact-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .plan-name h5 {
        font-size: 18px;
    }
    
    .pricing .price {
        font-size: 26px;
    }
    
    .features-list li {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .enterprise-contact-card {
        padding: 30px 20px;
    }
    
    .enterprise-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 18px 12px;
    }
    
    .pricing .price {
        font-size: 22px;
    }
    
    .plan-badge {
        padding: 3px 10px;
        font-size: 10px;
    }
    
    .contact-option {
        padding: 15px;
    }
    
    .enterprise-cta a {
        display: block;
        margin: 10px 0 !important;
        text-align: center;
    }
    
    .pricing-btn {
        max-width: 100%;
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
}
