/* Pricing Page Styles */


/* Pricing toggle */
.pricing-plans {
    padding: 60px 0;
    background-color: #ffffff;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.pricing-toggle-option {
    font-weight: 500;
    color: #4a4a6a;
    margin: 0 15px;
}

.pricing-toggle-option.active {
    color: #303163;
    font-weight: 600;
}

.discount {
    font-size: 0.8rem;
    color: #DA0032;
    background-color: rgba(218, 0, 50, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 500;
}

/* Switch styles */
.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eaeaea;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #DA0032;
}

input:focus + .slider {
    box-shadow: 0 0 1px #DA0032;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing cards */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.popular {
    border: 2px solid #DA0032;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #DA0032;
    color: white;
    font-size: 0.8rem;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 500;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #303163;
}

.pricing-price {
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #303163;
}

.period {
    font-size: 1rem;
    color: #777;
}

.pricing-card-header p {
    font-size: 0.9rem;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: start;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #4a4a6a;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    color: #DA0032;
}

.feature-disabled {
    color: #aaa !important;
}

.feature-disabled i {
    color: #ccc;
}

.pricing-cta {
    margin-top: 30px;
}

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

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Add-ons section */
.pricing-addons {
    padding: 60px 0;
    background-color: #f9f9fd;
    text-align: center;
}

.addons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.addon-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-icon {
    font-size: 2rem;
    color: #DA0032;
    margin-bottom: 20px;
}

.addon-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #303163;
}

.addon-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.addon-price {
    display: inline-block;
    font-weight: 600;
    color: #303163;
    font-size: 1.1rem;
}

/* FAQ section */
.pricing-faq {
    padding: 60px 0;
    background-color: #ffffff;
}

.pricing-faq .section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9fd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #303163;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #4a4a6a;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #303163 0%, #1A1A36 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    font-size: 0.9rem !important;
    opacity: 0.8;
    margin-top: 15px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 60px 0 40px;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .addons-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .addon-card {
        width: 100%;
        max-width: 300px;
    }
} 