/* ==========================
   Modern Pricing Teaser Section
========================== */
.pricing-teaser-section {
    padding: 80px 0;
    padding-top: 0px;
   
}
section.pricing-tiers {
    padding-top: 0px;
}
.pricing-teaser-section .section-header {
    margin-bottom: 50px;
}

.pricing-teaser-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}
button.tab-btn {
    font-family: 'Montserrat';
    border-radius: 6px;
}
.pricing-teaser-section p {
    font-size: 16px;
    color: #555;
}

/* Grid for pricing cards */
.pricing-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual card */
.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    flex: 0 0 30%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Card Icon */
.pricing-card .icon {
    margin-bottom: 20px;
}

.pricing-card .icon svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-color); /* Highlight color */
}

/* Card titles and price */
.pricing-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.pricing-card .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Features list */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

/* CTA Button */
.btn-primary {
    display: inline-block;
    padding: 12px 36px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55b00;
}
.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.home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.pricing-card h3 {
    color: white;
}
.pricing-grid.home .price {
    color: white;
}
.pricing-card ul.features li {
    color: white;
}
/* Pricing Cards */
.pricing-tab-content .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;
}

.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: 6px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
	border: 1px solid #0073aa;
}
.btn-choose:hover{
	background: transparent !important;
    color: white !important;
	border-color:white !important;
}
.pricing-card.featured .btn-choose:hover{
	background: transparent !important;
    color: white !important;
	border-color:white !important;
}

/* ===== PRICING TABS ===== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px 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;
}
button.tab-btn:hover {
    background: #0073aa;
    color: white;
}
.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;
}
/* Responsive */
@media (max-width: 992px) {
    .pricing-card {
        flex: 0 0 45%;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        flex: 0 0 100%;
    }
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
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-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;
}