/* Pricing Page Specific Styles */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}
.pricing-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    border: none;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.pricing-card.popular {
    border: 2px solid #4e73df;
    position: relative;
}
.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #4e73df;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}
.pricing-card .card-header {
    background: #f8f9fc;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e3e6f0;
}
.pricing-card.popular .card-header {
    background: #4e73df;
    color: white;
}
.pricing-card .card-body {
    padding: 40px 30px;
}
.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}
.pricing-card.popular .price {
    color: white;
}
.price-period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 5px;
}
.pricing-card.popular .price-period {
    color: rgba(255,255,255,0.8);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features i {
    color: #4e73df;
    margin-right: 10px;
}
.pricing-card.popular .pricing-features i {
    color: #fff;
}
.btn-pricing {
    display: block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.faq-section {
    padding: 80px 0;
    background: white;
}
.faq-item {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.faq-header {
    background: #f8f9fc;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
}
.faq-header h5 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}
.faq-body {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    display: none;
}
.faq-item.active .faq-body {
    display: block;
}
.cta-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}
.btn-cta {
    background: white;
    color: #4e73df;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.pricing-plan h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    color: #4e73df;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    color: #6c757d;
    display: block;
    font-weight: 400;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #6c757d;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.pricing-features li:before {
    content: '✓';
    color: #4e73df;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.pricing-button {
    display: inline-block;
    background: #4e73df;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4e73df;
    font-size: 1rem;
    margin-top: 10px;
}

.pricing-button:hover {
    background: transparent;
    color: #4e73df;
    transform: translateY(-2px);
    text-decoration: none;
}

.pricing-button.outline {
    background: transparent;
    color: #4e73df;
}

.pricing-button.outline:hover {
    background: #4e73df;
    color: white;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.faq-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e9ecef;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-card .card-body {
    padding: 25px;
}

.faq-card .card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-card .card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .pricing-plan {
        margin-bottom: 30px;
    }
    
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-plan {
        padding: 30px 20px;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
    }
    
    .pricing-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}
