/* ==========================================================
   PROGOTI BAZAR — GENERAL & POLICY PAGES ARCHITECTURE (V3.2)
   Asset: public/frontEnd/css/page.css
   Standards: Anti-Gravity Solidism, Structured Geometry, Zero Pills
   ========================================================== */

.pb-page-wrapper {
    background-color: #f8fafc;
    padding: 36px 0 64px;
    font-family: 'Hind Siliguri', 'Roboto', sans-serif;
}

/* সাইডবার কুইক লিঙ্কস */
.pb-page-sidebar {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 0;
    overflow: hidden;
    margin-bottom: 24px;
}
.pb-sidebar-title {
    background-color: #0d5c3a;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    border: 0;
}
.pb-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pb-sidebar-menu li {
    border-bottom: 1px solid #f1f5f9;
}
.pb-sidebar-menu li:last-child {
    border-bottom: none;
}
.pb-sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}
.pb-sidebar-menu a:hover {
    background-color: #f8fafc;
    color: #0d5c3a;
    padding-left: 22px;
}
.pb-sidebar-menu a.active {
    background-color: #f0fdf4;
    color: #0d5c3a;
    font-weight: 700;
    border-left: 4px solid #0d5c3a;
}
.pb-sidebar-menu a.active i {
    color: #0d5c3a;
}

/* হেল্পলাইন সাপোর্ট বক্স */
.pb-support-card {
    background: #ffffff;
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 24px 20px;
    text-align: center;
}
.pb-support-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: #0d5c3a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(13, 92, 58, 0.25);
}
.pb-support-card h6 {
    font-weight: 800;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 4px;
}
.pb-support-card p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 14px;
}
.pb-support-btn {
    background-color: #0d5c3a;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    width: 100%;
    transition: transform 0.1s ease, background-color 0.15s ease;
    border: 0;
    box-shadow: 0 2px 8px rgba(13, 92, 58, 0.25);
}
.pb-support-btn:hover {
    background-color: #09462b;
}
.pb-support-btn:active {
    transform: translateY(1px);
}

/* মূল কন্টেন্ট কার্ড */
.pb-content-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 0;
    padding: 36px 36px;
    min-height: 520px;
}
.pb-content-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 18px;
    margin-bottom: 28px;
}
.pb-content-title {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Oswald', 'Hind Siliguri', sans-serif;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    letter-spacing: 0.3px;
}
.pb-title-bar {
    width: 5px;
    height: 26px;
    background-color: #0d5c3a;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

/* কন্টেন্ট বডি ফরম্যাটিং */
.pb-content-body {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}

.pb-content-body p.intro-lead {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* পলিসি তথ্য গ্রিড / কার্ডস */
.policy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}

.policy-info-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 6px 0px;
    border-left: 4px solid #0d5c3a;
    transition: transform 0.15s ease;
}
.policy-info-card:hover {
    transform: translateY(-2px);
}
.policy-info-card.accent-gold {
    border-left-color: #e5a912;
}
.policy-info-card.accent-navy {
    border-left-color: #0f172a;
}
.policy-card-icon {
    font-size: 22px;
    color: #0d5c3a;
    margin-bottom: 8px;
}
.policy-info-card.accent-gold .policy-card-icon {
    color: #d97706;
}
.policy-info-card.accent-navy .policy-card-icon {
    color: #0f172a;
}
.policy-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.policy-card-value {
    font-size: 18px;
    font-weight: 800;
    color: #0d5c3a;
    margin: 0;
}
.policy-info-card.accent-gold .policy-card-value {
    color: #b45309;
}
.policy-info-card.accent-navy .policy-card-value {
    color: #0f172a;
    font-size: 16px;
}

/* রুলস ও বুলেট লিস্ট ফরম্যাটিং */
.policy-rules-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}
.policy-rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background-color: #f8fafc;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.policy-rules-list li i {
    color: #0d5c3a;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}
.policy-rules-list li strong {
    color: #0f172a;
}

/* কন্টাক্ট কলআউট বক্স */
.policy-callout-box {
    background-color: #f0fdf4;
    border-left: 4px solid #0d5c3a;
    border-radius: 6px;
    padding: 20px 24px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.policy-callout-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.policy-callout-text p {
    font-size: 13.5px;
    color: #475569;
    margin: 0;
}

@media (max-width: 768px) {
    .pb-content-card {
        padding: 24px 18px;
    }
    .pb-content-title {
        font-size: 20px;
    }
    .policy-cards-grid {
        grid-template-columns: 1fr;
    }
    .policy-callout-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
