/* ============================================
   PRICING TABLE - NO ANIMATIONS
============================================ */
.nab_ea__pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.nab_ea__pricing-header {
    margin-bottom: 50px;
    text-align: center;
}

.nab_ea__pricing-title {
    color: #765154;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.nab_ea__pricing-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* FIX: Pricing Container - 3 columns */
.nab_ea__pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* FIX: 3-column layout */
.nab_ea__pricing-plans.nab_ea__col-3 {
    justify-content: center;
}

.nab_ea__pricing-plans.nab_ea__col-3 .nab_ea__pricing-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

/* Other column layouts */
.nab_ea__pricing-plans.nab_ea__col-1 .nab_ea__pricing-card {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto;
}

.nab_ea__pricing-plans.nab_ea__col-2 .nab_ea__pricing-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.nab_ea__pricing-plans.nab_ea__col-4 .nab_ea__pricing-card {
    flex: 0 0 calc(25% - 23px);
    max-width: calc(25% - 23px);
}

/* FIX: Pricing Card - NO TRANSITIONS */
.nab_ea__pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* FIX: Card Header */
.nab_ea__card-header {
    padding: 75px 30px 25px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}
/* FIX: Plan Type Colors */
.nab_ea__pr-plan .nab_ea__card-header {
    background: #765154;
}

.nab_ea__social-plan .nab_ea__card-header {
    background: #9b7a7d;
}

.nab_ea__comms-plan .nab_ea__card-header {
    background: #b89296;
}

.nab_ea__events-plan .nab_ea__card-header {
    background: #8a6d70;
}

.nab_ea__custom-plan .nab_ea__card-header {
    background: var(--card-color, #765154);
}

.nab_ea__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;margin-top: 15px;
}

.nab_ea__card-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
}

.nab_ea__price-period {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 8px;
    color: #fff;
}

.nab_ea__card-description {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

/* FIX: Card Body */
.nab_ea__card-body {
    padding: 30px;
    flex-grow: 1;
}

.nab_ea__features-title {
    color: #765154;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.nab_ea__features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nab_ea__features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 32px;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

.nab_ea__features-list li:last-child {
    border-bottom: none;
}

.nab_ea__features-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #765154;
    font-size: 16px;
}

/* Plan-specific icon colors */
.nab_ea__pr-plan .nab_ea__features-list li i {
    color: #765154;
}

.nab_ea__social-plan .nab_ea__features-list li i {
    color: #9b7a7d;
}

.nab_ea__comms-plan .nab_ea__features-list li i {
    color: #b89296;
}

.nab_ea__events-plan .nab_ea__features-list li i {
    color: #8a6d70;
}

.nab_ea__custom-plan .nab_ea__features-list li i {
    color: var(--card-color, #765154);
}

/* FIX: Card Footer */
.nab_ea__card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* Button Styles */
.nab_ea__btn {
    display: inline-block;
    padding: 15px 35px;
    background: #765154;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Plan-specific button colors */
.nab_ea__pr-plan .nab_ea__btn {
    background: #765154;
}

.nab_ea__social-plan .nab_ea__btn {
    background: #9b7a7d;
}

.nab_ea__comms-plan .nab_ea__btn {
    background: #b89296;
}

.nab_ea__events-plan .nab_ea__btn {
    background: #8a6d70;
}

.nab_ea__custom-plan .nab_ea__btn {
    background: var(--card-color, #765154);
}

/* FIX: Popular Badge */
.nab_ea__popular-badge {
    position: absolute;
    top: 28px;
    right: -117px;
    background: #b89296;
    color: #fff;
    padding: 8px 45px;
    font-weight: 400;
    font-size: 0.85rem;
    transform: rotate(
34deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    /* left: 0; */
    text-align: center;
}

/* FIX: Footer Note */
.nab_ea__footer-note {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

/* ============================================
   FAQ - FIXED TOGGLE ISSUE
============================================ */
.nab_ea__faq-container {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 40px 30px;
    margin: 30px auto;
    max-width: 1200px;
}

.nab_ea__faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.nab_ea__faq-title {
    color: #765154;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.nab_ea__faq-description {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.nab_ea__faq-count {
    display: inline-block;
    background: #f9f0f1;
    color: #765154;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

.nab_ea__faq-count-number {
    background: #765154;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 0.8rem;
}

/* FAQ Search */
.nab_ea__faq-search {
    position: relative;
    margin-bottom: 30px;
}

.nab_ea__faq-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.nab_ea__faq-search input:focus {
    outline: none;
    border-color: #765154;
}

.nab_ea__search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #bdc3c7;
    font-size: 1.1rem;
}

/* FAQ Items */
.nab_ea__faq-items {
    margin-bottom: 20px;
}

/* FAQ Item */
.nab_ea__faq-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.nab_ea__faq-item.active {
    border-color: #b89296;
}

/* FAQ Question - Clickable Area */
.nab_ea__faq-question {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: white;
    position: relative;
    user-select: none;
}

.nab_ea__faq-question:hover {
    background: #f9f0f1;
}

.nab_ea__faq-item.active .nab_ea__faq-question {
    background: #f9f0f1;
}

.nab_ea__question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.nab_ea__faq-item.active .nab_ea__question-text {
    color: #765154;
}

/* FAQ Icons */
.nab_ea__faq-question-icon {
    color: #765154;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.nab_ea__faq-item.active .nab_ea__faq-question-icon {
    color: #b89296;
}

/* Toggle Icon - SIMPLE SHOW/HIDE */
.nab_ea__toggle-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

/* IMPORTANT: Hide both icons initially */
.nab_ea__toggle-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

/* Plus icon - show by default */
.nab_ea__toggle-icon .fa-plus {
    display: block;
    color: #7f8c8d;
}

.nab_ea__toggle-icon .fa-minus {
    display: none;
    color: #b89296;
}

/* Active state: show minus, hide plus */
.nab_ea__faq-item.active .nab_ea__toggle-icon .fa-plus {
    display: none !important;
}

.nab_ea__faq-item.active .nab_ea__toggle-icon .fa-minus {
    display: block !important;
}

/* FAQ Answer - CRITICAL FIX */
.nab_ea__faq-answer {
    display: none;
    padding: 0 25px;
    background: white;
}

.nab_ea__faq-item.active .nab_ea__faq-answer {
    display: block !important;
    padding: 25px;
    border-top: 1px solid #eee;
}

.nab_ea__faq-answer * {
    margin-bottom: 15px;
}

.nab_ea__faq-answer *:last-child {
    margin-bottom: 0;
}

.nab_ea__faq-answer p {
    line-height: 1.7;
    color: #555;
}

.nab_ea__faq-answer ul,
.nab_ea__faq-answer ol {
    padding-left: 20px;
    margin: 15px 0;
}

.nab_ea__faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* No Results */
.nab_ea__no-results {
    text-align: center;
    padding: 40px 30px;
    color: #7f8c8d;
    font-size: 1.1rem;
    display: none;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1024px) {
    /* Pricing Table */
    .nab_ea__pricing-plans.nab_ea__col-3 .nab_ea__pricing-card,
    .nab_ea__pricing-plans.nab_ea__col-4 .nab_ea__pricing-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .nab_ea__pricing-title,
    .nab_ea__faq-title {
        font-size: 2.2rem;
    }
.nab_ea__popular-badge {
    position: absolute;
    top: 37px;
    right: -165px;
    background: #b89296;
    color: #fff;
    padding: 8px 45px;
    font-weight: 400;
    font-size: 0.85rem;
    transform: rotate(
34deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    /* left: 0; */
    text-align: center;
}
	
}

@media (max-width: 768px) {
    /* Pricing Table */
    .nab_ea__pricing-plans.nab_ea__col-2 .nab_ea__pricing-card,
    .nab_ea__pricing-plans.nab_ea__col-3 .nab_ea__pricing-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .nab_ea__pricing-title,
    .nab_ea__faq-title {
        font-size: 2rem;
    }
    
    .nab_ea__pricing-subtitle,
    .nab_ea__faq-description {
        font-size: 1rem;
    }
    
    .nab_ea__card-header {
        padding: 30px 25px 20px;
    }
    
    .nab_ea__card-title {
        font-size: 1.6rem;
    }
    
    .nab_ea__card-price {
        font-size: 2.4rem;
    }
    
    /* FAQ */
    .nab_ea__faq-container {
        padding: 30px 25px;
    }
    
    .nab_ea__faq-question {
        padding: 18px 20px;
    }
    
    .nab_ea__question-text {
        font-size: 1rem;
        padding-right: 25px;
    }
    
    .nab_ea__faq-answer {
        padding: 0 20px;
    }
    
    .nab_ea__faq-item.active .nab_ea__faq-answer {
        padding: 20px;
    }
	.nab_ea__popular-badge {
    position: absolute;
    top: 50px;
    right: -254px;
  
}
}

@media (max-width: 767px) {
    .nab_ea__pricing-container,
    .nab_ea__faq-container {
        padding: 20px 15px;
    }
    
    .nab_ea__pricing-title,
    .nab_ea__faq-title {
        font-size: 1.8rem;
    }
    
.nab_ea__popular-badge {
    top: 22px;
    right: -150px;
    padding: 6px 40px;
    font-size: 0.75rem;
}
    
    .nab_ea__faq-question {
        padding: 15px 18px;
        flex-wrap: wrap;
    }
    
    .nab_ea__question-text {
        order: 1;
        flex: 1 0 100%;
        margin-bottom: 10px;
        padding-right: 0;
    }
    
    .nab_ea__faq-question-icon {
        order: 2;
        margin-right: auto;
    }
    
    .nab_ea__toggle-icon {
        order: 3;
    }
}

/* ============================================
   NO INTERFERENCE OVERRIDES
============================================ */
/* Remove any potential conflicts */
.nab_ea__pricing-card,
.nab_ea__btn,
.nab_ea__faq-item,
.nab_ea__faq-question,
.nab_ea__faq-answer,
.nab_ea__toggle-icon,
.nab_ea__toggle-icon i {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* No hover effects that might conflict */
.nab_ea__pricing-card:hover {
    transform: none !important;
}

.nab_ea__btn:hover {
    transform: none !important;
}

/* ============================================
   ACCESSIBILITY
============================================ */
.nab_ea__faq-question:focus {
    outline: 2px solid #765154;
    outline-offset: 2px;
}

.nab_ea__btn:focus {
    outline: 2px solid #765154;
    outline-offset: 2px;
}

.nab_ea__faq-search input:focus {
    outline: 2px solid #765154;
    outline-offset: 0;
}

/* ============================================
   FORCE SHOW ACTIVE FAQ ANSWERS
============================================ */
/* This ensures active FAQ answers are always visible */
.nab_ea__faq-item.active .nab_ea__faq-answer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
}

/* Ensure inline styles from PHP don't override our CSS */
.nab_ea__faq-answer[style*="display: block"],
.nab_ea__faq-answer[style*="display:block"] {
    display: block !important;
}