/* Premium Page Styles */

.premium-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Hero Section */
.premium-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f3e5f5;
    border-radius: 8px;
    margin-bottom: 50px;
}

.premium-hero h1 {
    color: #9b59b6;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.premium-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Features Section */
.premium-features {
    margin-bottom: 50px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
}

/* Comparison Section */
.premium-comparison {
    margin-bottom: 50px;
}

.premium-comparison h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.premium-comparison h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #9b59b6;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.checkmark {
    color: #2ecc71;
    font-weight: bold;
}

.x-mark {
    color: #e74c3c;
}

/* Pricing Section */
.premium-pricing {
    margin-bottom: 50px;
}

.premium-pricing h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.premium-pricing h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #9b59b6;
}

.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.recommended {
    border: 2px solid #9b59b6;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9b59b6;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.savings {
    background-color: #e8f5e9;
    color: #2ecc71;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 10px;
    color: #666;
}

.btn-premium {
    display: inline-block;
    padding: 12px 25px;
    background-color: #9b59b6;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    background-color: #8e44ad;
    color: #fff;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.premium-testimonials {
    margin-bottom: 50px;
}

.premium-testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.premium-testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #9b59b6;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #9b59b6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.author-info p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

/* FAQ Section */
.premium-faq {
    margin-bottom: 50px;
}

.premium-faq h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.premium-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #9b59b6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f9f9f9;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #333;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #9b59b6;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Call to Action Section */
.premium-cta {
    text-align: center;
    padding: 60px 20px;
    background-color: #f3e5f5;
    border-radius: 8px;
}

.premium-cta h2 {
    color: #9b59b6;
    margin-bottom: 15px;
    font-size: 2rem;
}

.premium-cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-card.recommended {
        transform: none;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .premium-hero h1 {
        font-size: 2rem;
    }
    
    .premium-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .premium-hero {
        padding: 40px 15px;
    }
    
    .premium-cta {
        padding: 40px 15px;
    }
}