/* PakPaisa FAQ Page */
@import url("index.css");

.PakPaisa-faq-hero {
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    position: relative;
    color: #fff;
}
.PakPaisa-faq-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.PakPaisa-faq-hero-content {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 40px; position: relative; z-index: 2;
}
.PakPaisa-faq-hero-text { flex: 1; min-width: 300px; }
.PakPaisa-faq-hero-text h1 { color: #fff; }
.PakPaisa-faq-hero-text p { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.PakPaisa-email { background: rgba(255,255,255,0.2); padding: 4px 10px; border-radius: 6px; }

.PakPaisa-faq-hero-image {
    flex: 1; min-width: 280px;
    display: flex; justify-content: center;
    color: #fff;
    font-size: 12rem;
    opacity: 0.9;
    text-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* FAQ section */
.PakPaisa-faq-section { padding: 80px 0; background: var(--background-light); }
.PakPaisa-faq-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.PakPaisa-faq-categories { display: flex; flex-direction: column; gap: 10px; }
.PakPaisa-category-btn {
    background: #fff;
    border: 2px solid transparent;
    padding: 14px 20px;
    text-align: left;
    border-radius: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    font-size: 0.95rem;
}
.PakPaisa-category-btn:hover { background: var(--background-gray); }
.PakPaisa-category-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(5,183,109,0.3);
}

.PakPaisa-faq-items { display: flex; flex-direction: column; gap: 15px; }
.PakPaisa-faq-category { display: none; flex-direction: column; gap: 15px; }
.PakPaisa-faq-category.active { display: flex; }

.PakPaisa-faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all var(--transition-speed) ease;
    border-left: 4px solid transparent;
}
.PakPaisa-faq-item.active {
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.PakPaisa-faq-question {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
}
.PakPaisa-faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    flex: 1;
    padding-right: 12px;
}
.PakPaisa-faq-icon {
    width: 32px; height: 32px;
    background: var(--background-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all var(--transition-speed) ease;
    flex-shrink: 0;
}
.PakPaisa-faq-item.active .PakPaisa-faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}
.PakPaisa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.PakPaisa-faq-item.active .PakPaisa-faq-answer {
    max-height: 500px;
    padding-top: 15px;
}
.PakPaisa-faq-answer p { color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

@media screen and (max-width: 900px) {
    .PakPaisa-faq-wrapper { grid-template-columns: 1fr; }
    .PakPaisa-faq-categories { flex-direction: row; overflow-x: auto; padding-bottom: 5px; }
    .PakPaisa-category-btn { white-space: nowrap; }
    .PakPaisa-faq-hero-image { font-size: 7rem; }
}
