/* Hero Section */
.pricing-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 100%;

}
section.pricing-tiers {
    padding-top: 50px;
}
h1,p {
    z-index: 999;
    position: relative;
    color: var(--white);
}

.pricing-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

/* Pricing Grid */
.pricing-tiers {
    padding: 80px 0;
}

.pricing-tab-content .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Pricing Cards */
.pricing-card {
    background: white !important;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #0073AA, #00A0E3);
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Card Content */
.pricing-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}
.pricing-card.featured h3 {
    color: white;
}

.pricing-card.featured p {
    color: white;
}
.pricing-card.featured ul.features li {
    color: white;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
	color: #0073aa;
}
.subscription-cards h5 {
    font-size: 28px !important;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
}

.pricing-card ul.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul.features li {
    margin-bottom: 12px;
    font-size: 14px;
}

/* Buttons */
.btn-choose {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
/* ===== PRICING TABS ===== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== BILLING TOGGLE ===== */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.billing-btn {
    padding: 10px 22px;
    border-radius: 20px;
    background: var(--light-gray);
    border: 1px solid var(--gray);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.billing-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== TAB CONTENT ===== */
.pricing-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pricing-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-card.featured .btn-choose {
    background: #fff;
    color: var(--primary-color);
}

.btn-choose:hover {
    background: var(--primary-hover);
    color: #fff;
}

.pricing-faq {
    padding: 80px 0;
    background-color: var(--primary-color);
    width: 100%;
    max-width: 100%;
}

.pricing-faq .faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.pricing-faq .faq-header p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 50px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 15px 25px 25px 25px;
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}


/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
	.subscription-cards {
    display: grid !important;
    padding: 10px;
    padding-top: 0px;
}
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
	.subscription-cards {
    display: grid !important;
    padding: 10px;
    padding-top: 0px;
}
}
a.btn-login {
    padding: 12px 30px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid #0073aa;
}
a.btn-login:hover {
    background: white !important;
    color: #0073aa;
}
a.btn-primary.select-subscription{
	padding: 12px 30px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid #0073aa;
}
a.btn-login:hover , a.btn-primary.select-subscription:hover {
    background: white !important;
    color: #0073aa;
}