/* =============================================
   ByteePal FAQ & Why ByteePal - CSS
   ============================================= */

/* ---- FAQ PAGE ---- */
.bp-faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

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

.bp-faq-main-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.bp-faq-subtitle {
    color: #b0b0b0;
    font-size: 18px;
}

.bp-faq-category {
    margin-bottom: 35px;
}

.bp-faq-category-title {
    font-size: 22px;
    color: #25d366;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(37, 211, 102, 0.2);
}

.bp-faq-cat-icon {
    font-size: 28px;
}

.bp-faq-item {
    margin-bottom: 8px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.bp-faq-item:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.bp-faq-item.active {
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.05);
}

.bp-faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.bp-faq-question:hover {
    color: #25d366;
}

.bp-faq-arrow {
    font-size: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: #25d366;
}

.bp-faq-item.active .bp-faq-arrow {
    transform: rotate(180deg);
}

.bp-faq-answer {
    display: none;
    padding: 0 20px 18px;
}

.bp-faq-answer p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.bp-faq-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.bp-faq-cta h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.bp-faq-cta p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.bp-faq-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.bp-faq-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff !important;
}

/* ---- WHY BYTEEPAL PAGE ---- */
.bp-why-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

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

.bp-why-main-title {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.bp-why-subtitle {
    color: #b0b0b0;
    font-size: 18px;
}

.bp-why-section-title {
    text-align: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.bp-why-section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Features Grid */
.bp-why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.bp-why-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.bp-why-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bp-why-feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.bp-why-feature h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.bp-why-feature p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* Comparison Table */
.bp-why-comparison {
    margin-bottom: 60px;
}

.bp-comparison-table-wrapper {
    overflow-x: auto;
}

.bp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.bp-comparison-table th {
    background: rgba(37, 211, 102, 0.2);
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
}

.bp-comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d0d0d0;
    text-align: center;
    font-size: 15px;
}

.bp-comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.bp-price-official {
    color: #ff6b6b !important;
    text-decoration: line-through;
    font-weight: 600;
}

.bp-price-ours {
    color: #25d366 !important;
    font-weight: 800;
    font-size: 18px !important;
}

.bp-savings {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    font-weight: 800;
    border-radius: 20px;
    padding: 4px 12px;
    display: inline-block;
}

/* Stats */
.bp-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.bp-why-stat {
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.bp-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #25d366;
    line-height: 1.2;
}

.bp-stat-label {
    color: #b0b0b0;
    font-size: 14px;
    margin-top: 5px;
}

/* Testimonials */
.bp-why-testimonials {
    margin-bottom: 60px;
}

.bp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.bp-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.bp-testimonial:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.bp-testimonial-stars {
    font-size: 16px;
    margin-bottom: 12px;
}

.bp-testimonial p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.bp-testimonial-author {
    color: #25d366;
    font-size: 13px;
}

/* VS Table */
.bp-why-vs {
    margin-bottom: 60px;
}

.bp-vs-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.bp-vs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.bp-vs-table th {
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.bp-vs-table th.bp-vs-us {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.bp-vs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d0d0d0;
    text-align: center;
    font-size: 14px;
}

.bp-vs-table td.bp-vs-us {
    color: #25d366;
    font-weight: 600;
    background: rgba(37, 211, 102, 0.03);
}

/* CTA Section */
.bp-why-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.bp-why-cta h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.bp-why-cta p {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 25px;
}

.bp-why-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bp-why-shop-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
}

.bp-why-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: #fff !important;
}

.bp-why-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
}

.bp-why-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

/* ---- HOMEPAGE WHY SECTION ---- */
.bp-why-homepage-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(37, 211, 102, 0.2);
}

.bp-why-homepage-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bp-why-homepage-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 35px;
}

.bp-why-homepage-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.bp-why-hp-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 10px;
    transition: all 0.3s;
}

.bp-why-hp-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 211, 102, 0.3);
}

.bp-why-hp-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.bp-why-hp-feature h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}

.bp-why-hp-feature p {
    color: #b0b0b0;
    font-size: 12px;
}

.bp-why-hp-link {
    display: inline-block;
    color: #25d366 !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.bp-why-hp-link:hover {
    color: #fff !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .bp-why-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-why-homepage-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bp-faq-main-title,
    .bp-why-main-title {
        font-size: 28px;
    }
    
    .bp-stat-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .bp-why-features {
        grid-template-columns: 1fr;
    }
    
    .bp-why-homepage-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-why-cta-buttons {
        flex-direction: column;
    }
}
