/**
 * public-modern.css — Unified Design System v2.0
 * ====================================================
 * Global polish: fonts, spacing, colors, forms, cards,
 * icons, section headers, footer — sabai uniform.
 * Logic touch gardaina — CSS override layer matra.
 * ────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════
   1. BASE — Smooth, box-sizing, font rendering
   ═══════════════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Mukta', 'Noto Sans Devanagari', 'Segoe UI', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: #1f2937 !important;
    background: #f8faf9 !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
}

/* Heading scale — uniform */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #111827 !important;
    letter-spacing: -0.01em !important;
}
h1 { font-size: clamp(1.6rem, 4vw, 2.25rem) !important; }
h2 { font-size: clamp(1.35rem, 3vw, 1.8rem) !important; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important; }
h4 { font-size: clamp(1rem, 2vw, 1.15rem) !important; }
h5 { font-size: 1rem !important; }
h6 { font-size: .9rem !important; }

p { line-height: 1.8 !important; color: #374151 !important; }
a { color: var(--primary-color, #1a5f2a); transition: color .18s; }
a:hover { color: var(--primary-dark, #144a21); }

/* ═══════════════════════════════════════════════════
   2. SCROLLBAR — Subtle brand-colored
   ═══════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f1; }
::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb,26,95,42), .35);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-rgb,26,95,42), .6);
}

/* ═══════════════════════════════════════════════════
   3. SECTION HEADERS — Uniform across all pages
   ═══════════════════════════════════════════════════ */
.section-header,
.section-header-unified {
    margin-bottom: 2.25rem !important;
    text-align: center !important;
}
.section-header h2,
.section-header h3,
.section-header-unified h2 {
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: .4rem !important;
}
.section-header p,
.section-header-unified p {
    color: #6b7280 !important;
    font-size: .97rem !important;
    max-width: 560px !important;
    margin: 0 auto !important;
}

/* Section badge pill */
.section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: rgba(var(--primary-rgb,26,95,42), .09) !important;
    color: var(--primary-color, #1a5f2a) !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    margin-bottom: .6rem !important;
}
.section-badge-wrap { margin-bottom: .35rem !important; }

/* Section divider line */
.section-divider {
    width: 48px !important;
    height: 3px !important;
    background: var(--primary-color, #1a5f2a) !important;
    border-radius: 2px !important;
    margin: .65rem auto 1rem !important;
}

/* Section padding uniform */
.section-padding,
.section-py {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

/* ═══════════════════════════════════════════════════
   4. CARDS — Clean, consistent shadow & hover
   ═══════════════════════════════════════════════════ */
.card {
    border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 6px rgba(0,0,0,.05) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
    overflow: hidden !important;
    background: #fff !important;
}
.card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(var(--primary-rgb,26,95,42),.11) !important;
    border-color: rgba(var(--primary-rgb,26,95,42),.2) !important;
}
.card-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #111827 !important;
}
.card-header {
    background: #f9fafb !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-weight: 600 !important;
    padding: .85rem 1.25rem !important;
}
.card-body { padding: 1.4rem !important; }
.card-footer {
    background: #f9fafb !important;
    border-top: 1px solid #f0f0f0 !important;
}

/* Service cards */
.service-card,
.service-card-modern {
    border-radius: 14px !important;
    transition: transform .22s, box-shadow .22s !important;
}
.service-card:hover,
.service-card-modern:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb,26,95,42),.14) !important;
}

/* Form cards */
.form-card {
    border-radius: 14px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
    border: 1px solid #e5e7eb !important;
    padding: 1.75rem !important;
}
.form-card-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark, #144a21) !important;
    border-bottom: 2px solid #f0f8f2 !important;
    padding-bottom: .65rem !important;
    margin-bottom: 1.25rem !important;
}

/* ═══════════════════════════════════════════════════
   5. BUTTONS — Professional, consistent
   ═══════════════════════════════════════════════════ */
.btn {
    font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 9px !important;
    letter-spacing: .01em !important;
    transition: all .2s ease !important;
}
.btn-lg { padding: .65rem 1.75rem !important; font-size: 1rem !important; }
.btn-sm { padding: .28rem .8rem !important; font-size: .82rem !important; }

.btn-primary {
    background: var(--primary-color, #1a5f2a) !important;
    border-color: var(--primary-color, #1a5f2a) !important;
    color: var(--text-on-primary, #fff) !important;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark, #144a21) !important;
    border-color: var(--primary-dark, #144a21) !important;
    color: var(--text-on-primary, #fff) !important;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.28) !important;
    transform: translateY(-1px) !important;
}
.btn-outline-primary {
    color: var(--primary-color, #1a5f2a) !important;
    border-color: var(--primary-color, #1a5f2a) !important;
    background: transparent !important;
}
.btn-outline-primary:hover {
    background: var(--primary-color, #1a5f2a) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.22) !important;
}

/* Home page specific btn overrides */
.home-btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-on-primary, #fff) !important;
}
.home-btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--text-on-primary, #fff) !important;
    transform: translateY(-1px) !important;
}

/* View-all buttons */
.view-all-btn {
    border-radius: 10px !important;
    padding: .6rem 1.6rem !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════
   6. FORMS — Clean, accessible, consistent
   ═══════════════════════════════════════════════════ */
.form-label {
    font-weight: 600 !important;
    font-size: .88rem !important;
    color: #374151 !important;
    margin-bottom: .35rem !important;
    letter-spacing: .01em !important;
}
.form-control,
.form-select {
    font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif !important;
    font-size: .96rem !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    min-height: 44px !important;
    color: #1f2937 !important;
    background: #fff !important;
    transition: border-color .18s, box-shadow .18s !important;
    line-height: 1.5 !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color, #1a5f2a) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.12) !important;
    outline: none !important;
    background: #fff !important;
}
.form-control::placeholder { color: #9ca3af !important; font-size: .9rem !important; }
textarea.form-control { min-height: 110px !important; resize: vertical !important; }

.input-group-text {
    background: #f5f7fa !important;
    border: 1.5px solid #d1d5db !important;
    color: #6b7280 !important;
    font-size: .88rem !important;
    border-radius: 10px 0 0 10px !important;
    min-height: 44px !important;
}

/* Required asterisk */
.req, .text-danger.req { color: #dc3545 !important; font-size: .72em !important; }

/* Form section heading */
.form-section-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark, #144a21) !important;
    border-left: 3px solid var(--primary-color) !important;
    padding-left: .75rem !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
}

/* ═══════════════════════════════════════════════════
   7. TABLES — Clean professional
   ═══════════════════════════════════════════════════ */
.table {
    font-size: .91rem !important;
    color: #374151 !important;
}
.table thead th {
    background: rgba(var(--primary-rgb,26,95,42),.06) !important;
    color: #1a2e1f !important;
    font-weight: 700 !important;
    font-size: .8rem !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid rgba(var(--primary-rgb,26,95,42),.15) !important;
    padding: .7rem .9rem !important;
    white-space: nowrap !important;
}
.table td {
    padding: .65rem .9rem !important;
    vertical-align: middle !important;
    border-color: #f3f4f6 !important;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: rgba(var(--primary-rgb,26,95,42),.025) !important;
}
.table-hover > tbody > tr:hover > * {
    background: rgba(var(--primary-rgb,26,95,42),.055) !important;
}
.table-responsive { border-radius: 12px !important; overflow: hidden !important; }

/* ═══════════════════════════════════════════════════
   8. ALERTS & BADGES — Soft pill style
   ═══════════════════════════════════════════════════ */
.alert {
    border-radius: 10px !important;
    border-left-width: 4px !important;
    font-size: .92rem !important;
    padding: .85rem 1.1rem !important;
}
.alert i { margin-right: 6px !important; }

.badge {
    font-family: 'Mukta', sans-serif !important;
    font-weight: 600 !important;
    font-size: .73em !important;
    border-radius: 6px !important;
    padding: .28em .65em !important;
    letter-spacing: .02em !important;
}

/* New/latest badge on cards */
.new-badge, .new-badge-modern {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: .68rem !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 5px !important;
    letter-spacing: .03em !important;
}
.latest-badge {
    background: rgba(var(--primary-rgb,26,95,42),.12) !important;
    color: var(--primary-color) !important;
    font-size: .68rem !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 5px !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
}

/* ═══════════════════════════════════════════════════
   9. ICONS — Consistent size & alignment
   ═══════════════════════════════════════════════════ */
/* Section icon circles */
.service-icon,
.service-icon-modern {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    background: rgba(var(--primary-rgb,26,95,42),.09) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    transition: background .2s, color .2s !important;
}
.service-icon i,
.service-icon-modern i {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    transition: color .2s !important;
}
.service-card:hover .service-icon,
.service-card-modern:hover .service-icon-modern {
    background: var(--primary-color) !important;
}
.service-card:hover .service-icon i,
.service-card-modern:hover .service-icon-modern i {
    color: #fff !important;
}

/* Tools widget icons */
.tools-mini-link {
    border-radius: 12px !important;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s !important;
    min-height: 0 !important;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42), .10) !important;
}
.tools-mini-link:hover {
    transform: translateY(-2px) !important;
}
.tools-mini-link i {
    width: 44px !important; height: 44px !important;
    border-radius: 12px !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    font-size: 1.15rem !important;
    color: var(--primary-color) !important;
    background: rgba(var(--primary-rgb,26,95,42), .09) !important;
    transition: background .2s, color .2s, transform .18s !important;
    flex-shrink: 0 !important; margin-bottom: 0 !important; box-shadow: none !important;
}
.tools-mini-link:hover i {
    background: var(--primary-color) !important;
    color: var(--text-on-primary, #fff) !important;
    transform: scale(1.06) !important;
}

/* Footer contact icons */
.footer-contact li i {
    color: rgba(255,255,255,.75) !important;
    width: 18px !important;
    text-align: center !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
}

/* Inline text icons */
.btn i, a i {
    vertical-align: -1px !important;
}

/* ═══════════════════════════════════════════════════
   10. PAGE BANNER — Clean, consistent across pages
   ═══════════════════════════════════════════════════ */
.page-banner {
    padding: 26px 0 30px !important;
}
.page-banner h1 {
    font-size: clamp(1.15rem, 3vw, 1.6rem) !important;
    font-weight: 800 !important;
    letter-spacing: -.01em !important;
}
.page-banner p {
    color: rgba(255,255,255,.82) !important;
    font-size: .95rem !important;
}

/* ═══════════════════════════════════════════════════
   11. INTEREST RATES TABLE — Special styling
   ═══════════════════════════════════════════════════ */
.interest-rate-value {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    font-variant-numeric: tabular-nums !important;
}
.rate-row:hover { background: rgba(var(--primary-rgb,26,95,42),.04) !important; }

/* ═══════════════════════════════════════════════════
   12. NOTICES / NEWS — Card list style
   ═══════════════════════════════════════════════════ */
.notice-item, .news-item {
    border-left: 3px solid transparent !important;
    transition: border-color .18s, background .18s !important;
    border-radius: 0 8px 8px 0 !important;
}
.notice-item:hover, .news-item:hover {
    border-left-color: var(--primary-color) !important;
    background: rgba(var(--primary-rgb,26,95,42),.04) !important;
}

/* ═══════════════════════════════════════════════════
   13. FOOTER — Professional, clean
   ═══════════════════════════════════════════════════ */
.main-footer {
    font-size: .91rem !important;
    line-height: 1.75 !important;
}
.footer-top {
    padding: 52px 0 36px !important;
}
.footer-widget h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
    margin-bottom: 1.1rem !important;
    text-transform: uppercase !important;
}
.footer-links { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-links li { margin-bottom: .45rem !important; }
.footer-links a {
    font-size: .9rem !important;
    opacity: .82 !important;
    transition: opacity .15s, padding-left .15s !important;
    text-decoration: none !important;
}
.footer-links a:hover {
    opacity: 1 !important;
    padding-left: 4px !important;
}
.footer-contact { list-style: none !important; padding: 0 !important; }
.footer-contact li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0 !important;
    margin-bottom: .6rem !important;
    font-size: .9rem !important;
    opacity: .88 !important;
    line-height: 1.5 !important;
}
.footer-social {
    display: flex !important;
    gap: 8px !important;
    margin-top: 1rem !important;
}
.footer-social a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.14) !important;
    transition: background .18s, transform .18s !important;
    text-decoration: none !important;
}
.footer-social a:hover {
    background: rgba(255,255,255,.28) !important;
    transform: translateY(-2px) !important;
}
.footer-bottom {
    padding: 14px 0 !important;
    font-size: .8rem !important;
}
.footer-bottom .container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: space-between !important;
}
.footer-policy-links {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    font-size: .78rem !important;
}
.footer-policy-links a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    opacity: .75 !important;
    text-decoration: none !important;
    transition: opacity .15s !important;
}
.footer-policy-links a:hover { opacity: 1 !important; }
.visitor-counter {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    font-size: .78rem !important;
    opacity: .72 !important;
}
.visitor-item {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}
.developer {
    font-size: .78rem !important;
    opacity: .72 !important;
    margin: 0 !important;
}
.developer a { opacity: 1 !important; text-decoration: underline !important; }

/* ═══════════════════════════════════════════════════
   14. FLOATING ELEMENTS — WhatsApp, Useful Links
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
    right: 18px !important;
    bottom: 80px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
}

/* ═══════════════════════════════════════════════════
   15. EMPTY STATE — Uniform across all pages
   ═══════════════════════════════════════════════════ */
.empty-state {
    text-align: center !important;
    padding: 3.5rem 1.5rem !important;
    color: #9ca3af !important;
}
.empty-state i {
    font-size: 2.75rem !important;
    opacity: .3 !important;
    display: block !important;
    margin-bottom: .85rem !important;
}

/* ═══════════════════════════════════════════════════
   16. ACCESSIBILITY — Focus visible
   ═══════════════════════════════════════════════════ */
*:focus:not(:focus-visible) { outline: none; }
*:focus-visible {
    outline: 2px solid var(--primary-color, #1a5f2a);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   17. MOBILE — Touch-friendly, readable
   ═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .btn { min-height: 44px; padding: 10px 18px !important; }
    .form-control, .form-select { font-size: 16px !important; }
    .section-padding, .section-py { padding-top: 48px !important; padding-bottom: 48px !important; }
    .card-body { padding: 1.1rem !important; }
    .form-card { padding: 1.1rem !important; }
    .footer-top { padding: 36px 0 24px !important; }
    .footer-bottom .container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    h1 { font-size: 1.45rem !important; }
    h2 { font-size: 1.25rem !important; }
}

@media (max-width: 480px) {
    .section-badge { font-size: .72rem !important; }
    .footer-policy-links { gap: 4px !important; font-size: .74rem !important; }
}

/* ═══════════════════════════════════════════════════
   18. HOME BUTTON/LINK UTILITIES (previously inline)
   ═══════════════════════════════════════════════════ */
.home-btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary, #fff);
}
.home-btn-primary:hover,
.home-btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-on-primary, #fff);
}
.home-link-primary { color: var(--primary-color) !important; }
.home-link-primary:hover { color: var(--primary-dark) !important; }
.home-btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.home-btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-on-primary, #fff);
}
.home-btn-outline-secondary {
    border-color: var(--text-muted, #9ca3af);
    color: var(--text-secondary, #6b7280);
    background: transparent;
}
.home-btn-outline-secondary:hover {
    background: var(--text-muted, #9ca3af);
    color: #fff;
}
.home-muted-icon { color: var(--text-muted, #9ca3af) !important; }

/* ═══════════════════════════════════════════════════
   19. HERO SLIDER — index.php inline styles moved here
   ═══════════════════════════════════════════════════ */
.hero-carousel-modern {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(var(--primary-rgb,26,95,42), .15);
}
.hero-inner-modern,
.hero-slide-modern { height: 500px; }
.hero-slide-modern { position: relative; overflow: hidden; }

.hero-bg-modern {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute; inset: 0;
}
.hero-bg-modern::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.32), rgba(0,0,0,.10));
    z-index: 1;
}
.hero-overlay-modern {
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb,26,95,42), .68),
        rgba(var(--primary-rgb,26,95,42), .28));
    z-index: 2;
}
.hero-content-modern {
    z-index: 3; position: relative; height: 100%;
    display: flex; align-items: center; justify-content: flex-start;
    text-align: left; padding: 2rem;
}
.hero-text-wrapper {
    max-width: 600px;
    display: flex; flex-direction: column; align-items: flex-start;
    animation: heroTextSlide .9s ease-out both;
}
@keyframes heroTextSlide {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-title-modern {
    font-size: clamp(1.6rem, 4vw, 2.5rem) !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: .9rem;
    text-shadow: 0 3px 10px rgba(0,0,0,.28);
    line-height: 1.4 !important;
}
.hero-subtitle-modern {
    font-size: clamp(.95rem, 2vw, 1.2rem) !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,.9) !important;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 6px rgba(0,0,0,.24);
    line-height: 1.7 !important;
}
.hero-actions-modern {
    animation: heroTextSlide .9s ease-out .25s both;
}
.hero-btn-modern {
    background: var(--primary-color);
    color: var(--text-on-primary, #fff);
    padding: .85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .5rem;
    position: relative; overflow: hidden;
    transition: all .28s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb,26,95,42), .32);
    border: none;
}
.hero-btn-modern::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: left .45s ease;
}
.hero-btn-modern:hover::before { left: 100%; }
.hero-btn-modern:hover {
    background: var(--primary-dark);
    color: var(--text-on-primary, #fff);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb,26,95,42), .4);
    text-decoration: none;
}
.hero-btn-modern .btn-icon { transition: transform .28s ease; }
.hero-btn-modern:hover .btn-icon { transform: translateX(4px); }
.btn-shine {
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transition: left .45s ease;
}
.hero-btn-modern:hover .btn-shine { left: 100%; }

/* Carousel indicators */
.hero-indicators-modern { bottom: 28px; z-index: 10; }
.hero-indicator-btn {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 2px solid rgba(255,255,255,.5);
    margin: 0 5px;
    transition: all .25s ease; position: relative; overflow: hidden;
}
.hero-indicator-btn:hover { background: rgba(255,255,255,.6); transform: scale(1.2); }
.hero-indicator-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.25);
}
.indicator-dot {
    display: block; width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.8); transition: all .25s ease;
}
.hero-indicator-btn.active .indicator-dot { background: #fff; }

@media (max-width: 768px) {
    .hero-inner-modern, .hero-slide-modern { height: 380px; }
    .hero-content-modern { padding: 1.5rem; }
    .hero-indicators-modern { bottom: 14px; }
}
@media (max-width: 480px) {
    .hero-inner-modern, .hero-slide-modern { height: 320px; }
    .hero-content-modern { padding: 1rem; }
}

/* ═══════════════════════════════════════════════════
   19. INSTITUTIONAL PROFILE BAR
   ═══════════════════════════════════════════════════ */
.institutional-profile-section { padding: 0; }
.institutional-profile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--bg-card, #fff);
    border-radius: 14px;
    padding: 16px 24px;
    margin: 20px 0;
    box-shadow: 0 2px 12px rgba(var(--primary-rgb,26,95,42), .08);
    border: 1px solid rgba(var(--primary-rgb,26,95,42), .1);
}
.profile-title {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1rem;
    color: var(--primary-dark, #144a21);
    text-decoration: none;
    transition: color .18s;
}
.profile-title:hover { color: var(--primary-color); }
.profile-title i { font-size: 1.2rem; color: var(--primary-color); }
.profile-reports {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.report-quick-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: .85rem; font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    border: 1.5px solid var(--border-color, #e5e7eb);
    color: var(--text-secondary, #4a5568);
    background: #fff;
}
.report-quick-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(var(--primary-rgb,26,95,42), .05);
}
.report-quick-link i { font-size: .9rem; }
@media (max-width: 575px) {
    .institutional-profile-bar { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
}

/* ═══════════════════════════════════════════════════
   20. SERVICE CARDS — homepage
   ═══════════════════════════════════════════════════ */
.service-card-modern {
    background: #fff;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42), .1);
    border-radius: 16px;
    padding: 2rem;
    transition: all .28s cubic-bezier(.4,0,.2,1);
    position: relative; overflow: hidden;
    box-shadow: 0 2px 12px rgba(var(--primary-rgb,26,95,42), .07);
    height: 100%;
}
.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb,26,95,42), .14);
    border-color: rgba(var(--primary-rgb,26,95,42), .25);
}
.service-title-modern {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: .6rem;
}
.service-description-modern {
    font-size: .92rem !important;
    color: #6b7280 !important;
    line-height: 1.7 !important;
    margin-bottom: 1.25rem;
}
.service-link-modern {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .88rem; font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap .2s ease, color .2s ease;
}
.service-link-modern:hover {
    color: var(--primary-dark);
    gap: 10px;
}
.service-link-modern .link-icon { font-size: .8rem; transition: transform .2s; }
.service-link-modern:hover .link-icon { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════
   21. TOOLS WIDGET — Digital services section
   ═══════════════════════════════════════════════════ */
.tools-widget-section { padding: 60px 0; background: var(--bg-soft, #f5faf6); }

.tools-category-card {
    background: var(--white, #fff);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(var(--primary-rgb,26,95,42), .07);
    border: 1px solid rgba(var(--primary-rgb,26,95,42), .1);
    height: 100%;
}
.tools-category-card h5 {
    font-size: .9rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark, #144a21) !important;
    margin: 0 0 .9rem !important;
    padding: 8px 10px !important;
    background: rgba(var(--primary-rgb,26,95,42), .07) !important;
    border-radius: 8px !important;
    border-bottom: none !important;
    animation: none !important;
}
.tools-category-card h5 i {
    background: var(--primary-color) !important;
    color: var(--text-on-primary, #fff) !important;
    border-radius: 6px !important;
    width: 22px !important; height: 22px !important;
    font-size: .75rem !important;
}
.tools-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.tools-mini-link {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 7px;
    padding: 14px 8px;
    border-radius: 12px;
    background: var(--white, #fff);
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42), .10);
    text-align: center; position: relative;
    min-height: 0;
}
.tools-mini-link:hover {
    background: rgba(var(--primary-rgb,26,95,42), .05);
    border-color: rgba(var(--primary-rgb,26,95,42), .2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb,26,95,42), .1);
}
.tools-mini-link i {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: var(--primary-color);
    background: rgba(var(--primary-rgb,26,95,42), .09);
    transition: background .2s, color .2s, transform .18s;
    flex-shrink: 0;
    margin-bottom: 0;
}
.tools-mini-link:hover i {
    background: var(--primary-color);
    color: var(--text-on-primary, #fff);
    transform: scale(1.06);
}
.tools-mini-link span {
    font-size: .8rem; font-weight: 700;
    color: var(--text-color, #333); line-height: 1.25;
}
.tools-mini-link:hover span { color: var(--primary-dark); }
.tools-mini-link .tools-mini-more {
    font-size: .68rem; color: var(--text-muted, #9ca3af); display: block; line-height: 1.2;
}
.tools-mini-link:hover .tools-mini-more { color: var(--primary-color); }
.tools-link-badge {
    position: absolute; top: 5px; right: 5px;
    background: var(--primary-color);
    color: var(--text-on-primary, #fff);
    font-size: .56rem; font-weight: 700;
    padding: 2px 5px; border-radius: 4px;
    letter-spacing: .03em; z-index: 2;
}

/* ═══════════════════════════════════════════════════
   22. INTEREST RATES + NOTICES BOX
   ═══════════════════════════════════════════════════ */
.rates-notices-section { background: #f8faf9; }

.rates-box-enhanced,
.notices-box-enhanced {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 100%;
    display: flex; flex-direction: column;
}
.rates-header,
.notices-header {
    background: linear-gradient(135deg,
        var(--primary-dark, #144a21),
        var(--primary-color, #1a5f2a));
    padding: 14px 20px;
    color: #fff;
}
.rates-header h3,
.notices-header h3 {
    margin: 0;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    display: flex; align-items: center; gap: 8px;
}
.rates-header h3 i,
.notices-header h3 i { font-size: .95rem; }

.rates-body, .notices-body { padding: 1.25rem; flex: 1; }
.notices-footer { padding: 12px 20px; border-top: 1px solid #f0f0f0; }

.rate-card-enhanced {
    background: var(--bg-soft, #f5faf6);
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
}
.rate-card-enhanced h5 {
    font-size: .88rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark, #144a21) !important;
    margin-bottom: .75rem;
    display: flex; align-items: center; gap: 6px;
}
.rate-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42), .07);
    font-size: .88rem;
}
.rate-item:last-child { border-bottom: none; }
.rate-name { color: #374151; flex: 1; }
.rate-value {
    font-weight: 800; font-size: 1rem;
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

/* Notices list */
.notice-item-enhanced {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background .18s;
}
.notice-item-enhanced:last-child { border-bottom: none; }
.notice-date-box {
    flex-shrink: 0;
    width: 42px; height: 48px;
    background: rgba(var(--primary-rgb,26,95,42), .08);
    border-radius: 8px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
}
.notice-date-box .day {
    font-size: 1.1rem; font-weight: 800;
    color: var(--primary-color); line-height: 1;
}
.notice-date-box .month {
    font-size: .65rem; font-weight: 600;
    color: var(--text-muted, #6b7280); text-transform: uppercase;
}
.notice-content { flex: 1; min-width: 0; }
.notice-content h6 {
    font-size: .88rem !important; font-weight: 600 !important;
    margin-bottom: 2px; line-height: 1.4 !important;
    color: #111827 !important;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
}
.notice-content h6 a { color: inherit; text-decoration: none; }
.notice-content h6 a:hover { color: var(--primary-color); }
.notice-meta { font-size: .72rem; color: #9ca3af; display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════════
   23. WHY CHOOSE US — feature boxes
   ═══════════════════════════════════════════════════ */
.why-us-section { background: #fff; }
.feature-box {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: all .25s ease;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb,26,95,42), .12);
    border-color: rgba(var(--primary-rgb,26,95,42), .2);
}
.feature-icon {
    width: 60px; height: 60px;
    background: rgba(var(--primary-rgb,26,95,42), .09);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.1rem;
    transition: background .25s;
}
.feature-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: color .25s;
}
.feature-box:hover .feature-icon { background: var(--primary-color); }
.feature-box:hover .feature-icon i { color: #fff; }
.feature-box h5 {
    font-size: 1rem !important; font-weight: 700 !important;
    color: #111827 !important; margin-bottom: .5rem;
}
.feature-box p { font-size: .9rem !important; color: #6b7280 !important; margin: 0; }

/* ═══════════════════════════════════════════════════
   24. LEADERSHIP PROFILE CARDS
   ═══════════════════════════════════════════════════ */
.leadership-messages-section { background: var(--bg-soft, #f5faf6); }
.leadership-profile-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}
.leadership-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb,26,95,42), .12);
}
.profile-photo {
    width: 100%; height: 200px; overflow: hidden;
    background: rgba(var(--primary-rgb,26,95,42), .07);
    position: relative;
}
.profile-photo img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: top;
}
.photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.photo-placeholder i { font-size: 3.5rem; color: rgba(var(--primary-rgb,26,95,42), .25); }
.profile-info { padding: 1.1rem 1.1rem .5rem; flex: 1; }
.profile-info h4 {
    font-size: .97rem !important; font-weight: 700 !important;
    color: #111827 !important; margin-bottom: .2rem;
}
.profile-position {
    display: inline-block;
    font-size: .75rem; font-weight: 600;
    background: rgba(var(--primary-rgb,26,95,42), .09);
    color: var(--primary-color);
    padding: 2px 10px; border-radius: 20px;
    margin-bottom: .6rem;
}
.profile-message {
    font-size: .86rem !important; color: #6b7280 !important;
    line-height: 1.65 !important; margin: 0;
}
.profile-btn {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 1.1rem;
    font-size: .82rem; font-weight: 600;
    color: var(--primary-color);
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background .18s, color .18s;
}
.profile-btn:hover {
    background: rgba(var(--primary-rgb,26,95,42), .05);
    color: var(--primary-dark);
}
.officer-badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 28px; height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.officer-badge i { font-size: .75rem; color: #fff; }
.officer-badge.grievance { background: var(--secondary-color, #c0392b); }
.officer-contact-info { margin-top: .5rem; display: flex; flex-direction: column; gap: 4px; }
.officer-contact-info a {
    font-size: .78rem; color: #6b7280; text-decoration: none;
    display: flex; align-items: center; gap: 5px;
    transition: color .18s;
}
.officer-contact-info a:hover { color: var(--primary-color); }

/* ═══════════════════════════════════════════════════
   25. MOBILE APP SECTION
   ═══════════════════════════════════════════════════ */
.mobile-app-section {
    padding: 72px 0;
    background: linear-gradient(135deg,
        var(--primary-dark, #144a21) 0%,
        var(--primary-color, #1a5f2a) 100%);
    position: relative; overflow: hidden;
}
.mobile-app-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.app-content { position: relative; z-index: 1; }
.home-heading-unified {
    color: #fff !important;
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    font-weight: 800 !important;
    margin-bottom: .4rem;
}
.app-content h3 { color: rgba(255,255,255,.85) !important; font-size: 1.1rem !important; font-weight: 500 !important; }
.app-tagline { color: rgba(255,255,255,.9) !important; font-weight: 600; margin-bottom: .35rem; }
.app-description { color: rgba(255,255,255,.75) !important; font-size: .95rem !important; }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }
.app-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 12px;
    padding: .7rem 1.3rem;
    color: #fff; text-decoration: none;
    transition: all .22s ease;
    backdrop-filter: blur(4px);
}
.app-btn:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.5);
    color: #fff;
    transform: translateY(-2px);
}
.app-btn i { font-size: 1.5rem; }
.app-btn span { display: flex; flex-direction: column; }
.app-btn span small { font-size: .68rem; opacity: .8; text-transform: uppercase; letter-spacing: .04em; }
.app-btn span { font-size: .95rem; font-weight: 700; }
.app-phone-img { max-width: 280px; filter: drop-shadow(0 16px 32px rgba(0,0,0,.28)); position: relative; z-index: 1; }
.app-mockup-default {
    display: flex; justify-content: center; align-items: center; position: relative; z-index: 1;
}
.phone-frame {
    width: 180px; height: 320px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 28px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.phone-screen {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,.7);
}
.phone-screen i { font-size: 3rem; }
.phone-screen span { font-size: .85rem; font-weight: 600; }
@media (max-width: 767px) {
    .mobile-app-section { padding: 48px 0; }
    .app-image { margin-top: 2rem; }
}

/* ═══════════════════════════════════════════════════
   27. PAGE BANNER MODERN (about.php + shared inner pages)
   ═══════════════════════════════════════════════════ */
.page-banner-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-banner-modern::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
    animation: bannerShimmer 4s infinite;
}
@keyframes bannerShimmer {
    0%   { left: -100%; }
    100% { left: 100%; }
}
.banner-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-title-modern {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .9rem;
    text-shadow: 0 3px 12px rgba(0,0,0,.25);
}
.breadcrumb-modern {
    background: rgba(255,255,255,.12);
    border-radius: 25px;
    padding: .45rem .9rem;
    display: inline-flex;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.breadcrumb-modern .breadcrumb-item { color: rgba(255,255,255,.82); font-weight: 600; }
.breadcrumb-modern .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    padding: .2rem .45rem;
    border-radius: 10px;
    transition: background .18s;
}
.breadcrumb-modern .breadcrumb-item a:hover { background: rgba(255,255,255,.2); }
.breadcrumb-modern .breadcrumb-item.active { color: #fff; font-weight: 700; }
.breadcrumb-link-modern { color: rgba(255,255,255,.9); transition: color .18s; }
.breadcrumb-link-modern:hover { color: #fff; }

/* ── About content box ── */
.about-content-box {
    background: var(--bg-card, #fff);
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42), .1);
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 6px 28px rgba(var(--primary-rgb,26,95,42), .1);
    transition: transform .28s, box-shadow .28s;
    position: relative;
    overflow: hidden;
}
.about-content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb,26,95,42), .16);
    border-color: rgba(var(--primary-rgb,26,95,42), .22);
}
.about-content-box .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-on-primary, #fff);
    padding: 7px 18px;
    border-radius: 25px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.about-content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.about-divider, .history-divider {
    width: 72px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 22px;
}
.intro-text { color: var(--text-color, #333); line-height: 1.85; font-size: 1rem; }
.intro-text p { margin-bottom: 14px; }
.history-empty-photo { text-align: center; color: var(--text-muted, #999); padding: 20px; }
.history-empty-photo-icon { opacity: .4; }
.history-empty-photo-note { opacity: .5; font-size: .8rem; }
.history-photo-cover { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; }

/* ── About image side box ── */
.about-image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(var(--primary-rgb,26,95,42), .13);
}
.about-image-box-side {
    min-height: 100%;
    background: rgba(var(--primary-rgb,26,95,42), .05);
}
.about-side-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-on-primary, #fff);
    background: rgba(var(--primary-rgb,26,95,42), .88);
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.about-image-box img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    transition: transform .45s ease;
}
.about-image-box:hover img { transform: scale(1.03); }
.about-year-badge {
    position: absolute;
    bottom: 18px; right: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-on-primary, #fff);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb,26,95,42), .28);
}
.about-year-badge .year { display: block; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.about-year-badge .text { font-size: .78rem; opacity: .9; }

/* ── Section tag (shared) ── */
.section-tag {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-on-primary, #fff);
    padding: .45rem .9rem;
    border-radius: 25px;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

/* ── Notices inline utilities (notices.php) ── */
.nts-btn-primary { background: var(--primary-color); border-color: var(--primary-color); color: var(--text-on-primary, #fff); }
.nts-btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--text-on-primary, #fff); }
.nts-empty-icon { color: var(--text-muted, #999); }
.nts-muted { color: var(--text-muted, #999) !important; }

/* ── History section v2 ── */
.history-section-v2 {
    background: linear-gradient(135deg, rgba(var(--primary-rgb,26,95,42),.06) 0%, rgba(var(--primary-rgb,26,95,42),.12) 100%);
    position: relative;
    overflow: hidden;
}
.history-section-v2::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb,26,95,42),.07), transparent 70%);
    border-radius: 50%;
}
.history-image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(var(--primary-rgb,26,95,42),.18);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    min-height: 320px;
}
.history-image-box img { width: 100%; height: 100%; object-fit: cover; }
.history-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
}
.history-icon-float {
    width: 72px; height: 72px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.history-icon-float i { font-size: 30px; color: var(--text-on-primary, #fff); }
.history-image-box.history-icon-only { display: flex; align-items: center; justify-content: center; min-height: 360px; }
.history-icon-center {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 100px; height: 100px;
    animation: floatIcon 3s ease-in-out infinite;
}
.history-icon-center i {
    font-size: 46px;
    color: rgba(255,255,255,.9);
    position: relative; z-index: 2;
}
.history-icon-ring {
    position: absolute;
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.22);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: pulseRing 2.5s ease-in-out infinite;
}
@keyframes pulseRing {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .5; }
    50%       { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}
.history-badge {
    position: absolute;
    top: 14px; left: 14px;
    width: 40px; height: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-on-primary, #fff);
    font-size: 15px; z-index: 2;
    box-shadow: 0 5px 16px rgba(var(--primary-rgb,26,95,42),.25);
}
.history-year-badge {
    position: absolute;
    bottom: 18px; right: 18px;
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 28px;
    font-size: 1.1rem; font-weight: 700; z-index: 2;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.history-content-v2 .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-on-primary, #fff);
    padding: 7px 18px; border-radius: 25px;
    font-size: .875rem; font-weight: 600; margin-bottom: 18px;
}
.history-content-v2 h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.history-text { color: var(--text-light, #666); line-height: 1.9; font-size: 1rem; }

/* ── Vision & Mission cards v2 ── */
.vision-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    position: relative; overflow: hidden;
    box-shadow: 0 12px 48px rgba(var(--primary-rgb,26,95,42),.1);
    transition: transform .35s, box-shadow .35s;
    height: 100%;
}
.vision-card-v2:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(var(--primary-rgb,26,95,42),.16); }
.vision-card-v2::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}
.vision-card-v2.mission::before { background: linear-gradient(90deg, var(--secondary-color), var(--primary-color)); }
.vision-card-glow {
    position: absolute; top: -90px; right: -90px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(var(--primary-rgb,26,95,42),.08), transparent 70%);
    border-radius: 50%;
}
.vision-card-v2.mission .vision-card-glow { background: radial-gradient(circle, rgba(var(--primary-rgb,26,95,42),.06), transparent 70%); }
.vision-icon-v2 {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 12px 32px rgba(var(--primary-rgb,26,95,42),.22);
    position: relative; z-index: 1;
}
.vision-card-v2.mission .vision-icon-v2 { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); }
.vision-icon-v2 i { font-size: 28px; color: var(--text-on-primary, #fff); }
.vision-card-content { position: relative; z-index: 1; }
.vision-card-content h4 { font-size: 1.4rem; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.vision-card-v2.mission .vision-card-content h4 { color: var(--secondary-color); }
.vision-card-content p { color: var(--text-light, #666); line-height: 1.8; font-size: 1rem; margin: 0; }
.vision-card-content.coop-prose p { margin-bottom: .85em; }
.vision-card-content.coop-prose p:last-child { margin-bottom: 0; }
.vision-card-decoration {
    position: absolute; bottom: -28px; left: -28px;
    width: 90px; height: 90px;
    border: 3px solid rgba(var(--primary-rgb,26,95,42),.12);
    border-radius: 50%;
}
.vision-card-v2.mission .vision-card-decoration { border-color: rgba(var(--primary-rgb,26,95,42),.1); }

/* ── Value cards ── */
.value-card {
    background: var(--white, #fff);
    padding: 28px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb,26,95,42),.1);
    transition: transform .28s, box-shadow .28s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(var(--primary-rgb,26,95,42),.16); }
.value-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.value-icon i { font-size: 22px; color: var(--text-on-primary, #fff); }
.value-card h5 { margin: 0; font-weight: 600; color: var(--text-color, #333); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .about-content-box h2, .history-content-v2 h2 { font-size: 1.7rem; }
    .history-image-box { min-height: 260px; }
}
@media (max-width: 768px) {
    .page-banner-modern { padding: 2.5rem 0; }
    .page-title-modern { font-size: 1.75rem; }
    .about-content-box { padding: 1.6rem; }
    .history-content-v2 h2 { font-size: 1.6rem; }
    .vision-card-v2 { padding: 28px 22px; }
}
@media (max-width: 480px) {
    .page-banner-modern { padding: 1.75rem 0; }
    .page-title-modern { font-size: 1.5rem; }
    .about-content-box { padding: 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   28. NEWS DETAIL PAGE (news-detail.php)
   ═══════════════════════════════════════════════════ */
.news-detail-article {
    background: var(--white, #fff);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
}
.news-detail-header { margin-bottom: 22px; }
.news-detail-header h1 { font-size: 1.75rem; color: var(--text-color, #333); margin-bottom: 14px; line-height: 1.4; }
.news-meta { display: flex; gap: 18px; color: var(--text-light, #777); font-size: .875rem; flex-wrap: wrap; }
.news-meta i { margin-right: 4px; color: var(--primary-color); }
.news-detail-image { margin-bottom: 22px; border-radius: 10px; overflow: hidden; }
.news-detail-image img { width: 100%; height: auto; }
.news-detail-content { color: var(--text-color, #333); margin-bottom: 28px; }
.news-share {
    display: flex; align-items: center; gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--border-color, #eee);
    border-bottom: 1px solid var(--border-color, #eee);
    margin-bottom: 18px;
}
.share-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white, #fff);
    transition: transform .2s;
}
.share-btn.facebook  { background: #3b5998; }
.share-btn.twitter   { background: #1da1f2; }
.share-btn.whatsapp  { background: #25d366; }
.share-btn:hover     { transform: scale(1.12); color: var(--white, #fff); }
.news-navigation     { text-align: center; }
.sidebar-widget {
    background: var(--white, #fff);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    margin-bottom: 22px;
}
.widget-title {
    font-size: 1.1rem; color: var(--primary-color);
    margin-bottom: 18px; padding-bottom: 9px;
    border-bottom: 2px solid var(--primary-color);
}
.related-news-item { display: flex; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--border-color, #eee); }
.related-news-item:last-child { border-bottom: none; }
.related-news-image { width: 68px; height: 68px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.related-news-image img { width: 100%; height: 100%; object-fit: cover; }
.related-placeholder {
    width: 100%; height: 100%;
    background: var(--bg-muted, #f0f0f0);
    display: flex; align-items: center; justify-content: center;
    color: var(--border-color, #ccc);
}
.related-news-info h5 { font-size: .875rem; margin-bottom: 4px; line-height: 1.4; }
.related-news-info h5 a { color: var(--text-color, #333); }
.related-news-info h5 a:hover { color: var(--primary-color); }
.related-news-info .date { font-size: .78rem; color: var(--text-light, #777); }
.quick-links { list-style: none; padding: 0; margin: 0; }
.quick-links li { padding: 9px 0; border-bottom: 1px solid var(--border-color, #eee); }
.quick-links li:last-child { border-bottom: none; }
.quick-links a { color: var(--text-color, #333); display: flex; align-items: center; gap: 10px; }
.quick-links a:hover { color: var(--primary-color); }
.quick-links a i { color: var(--primary-color); width: 20px; }
@media (max-width: 767px) {
    .news-detail-article { padding: 18px; }
    .news-detail-header h1 { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════
   29. CONTACT PAGE (contact.php)
   ═══════════════════════════════════════════════════ */
.ct-success-wrap { background: linear-gradient(135deg, rgba(var(--primary-rgb,26,95,42),.1), rgba(var(--primary-rgb,26,95,42),.05)); }
.ct-success-icon  { font-size: 3.5rem; color: var(--primary-light); }
.ct-success-title { color: var(--primary-dark); }
.ct-muted         { color: var(--text-muted, #999) !important; }
.ct-link-dark     { color: var(--text-color, #333); text-decoration: none; }
.ct-btn-primary, .ct-btn-success {
    background: var(--primary-color); border-color: var(--primary-color); color: var(--text-on-primary, #fff);
}
.ct-btn-primary:hover, .ct-btn-success:hover {
    background: var(--primary-dark); border-color: var(--primary-dark); color: var(--text-on-primary, #fff);
}
.ct-icon-lg       { font-size: 2.4rem; color: var(--primary-color); }
.ct-modal-head    { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary, #fff); }
.ct-success-block { display: none; }
.ct-success-bigicon { font-size: 4rem; color: var(--primary-color); }
.ct-map-frame     { border: 0; }
.ct-office-bg     { background: var(--bg-soft, #f5faf6); }
.ct-btn-light     { background: rgba(var(--primary-rgb,26,95,42),.07); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); color: var(--primary-dark); }
.contact-form-modern {
    background: var(--bg-soft, #f5faf6);
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.1);
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: 0 6px 28px rgba(var(--primary-rgb,26,95,42),.1);
    transition: transform .28s, box-shadow .28s;
    position: relative; overflow: hidden;
}
.contact-form-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb,26,95,42),.15);
    border-color: rgba(var(--primary-rgb,26,95,42),.2);
}
.contact-input-modern,
.contact-textarea-modern {
    background: var(--white, #fff);
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.1);
    border-radius: 10px;
    padding: .75rem .9rem;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.contact-input-modern:focus,
.contact-textarea-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.1);
    outline: none;
}
.contact-textarea-modern { min-height: 120px; resize: vertical; }
.contact-btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-on-primary, #fff);
    padding: .75rem 2rem;
    border-radius: 24px;
    font-size: 1.05rem; font-weight: 700;
    border: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 5px 18px rgba(var(--primary-rgb,26,95,42),.28);
}
.contact-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb,26,95,42),.36);
}
@media (max-width: 768px) {
    .contact-form-modern { padding: 1.6rem; }
    .contact-input-modern, .contact-textarea-modern { font-size: .95rem; }
    .contact-btn-modern { padding: .65rem 1.4rem; font-size: .95rem; }
}

/* ═══════════════════════════════════════════════════
   30. LOAN APPLY WIZARD (loan-apply.php)
   ═══════════════════════════════════════════════════ */
.loan-wizard-bar { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 2rem; flex-wrap: wrap; }
.loan-wiz-step  { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 80px; position: relative; }
.loan-wiz-circle {
    width: 48px; height: 48px; border-radius: 50%;
    border: 2.5px solid rgba(var(--primary-rgb,26,95,42),.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--text-muted, #aaa);
    background: #fff; transition: all .3s;
}
.loan-wiz-label { font-size: .75rem; color: var(--text-muted, #aaa); font-weight: 500; text-align: center; transition: color .3s; }
.loan-wiz-step.active .loan-wiz-circle { border-color: var(--primary-color); background: var(--primary-color); color: #fff; box-shadow: 0 4px 12px rgba(var(--primary-rgb,26,95,42),.25); }
.loan-wiz-step.active .loan-wiz-label  { color: var(--primary-color); font-weight: 700; }
.loan-wiz-step.done .loan-wiz-circle   { border-color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.12); color: var(--primary-color); }
.loan-wiz-step.done .loan-wiz-label    { color: var(--primary-color); }
.loan-wiz-connector { flex: 1; min-width: 28px; max-width: 60px; height: 2px; background: rgba(var(--primary-rgb,26,95,42),.14); margin-top: -24px; transition: background .3s; }
.loan-wiz-connector.done { background: var(--primary-color); }
.form-section-card {
    background: #fff;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.12);
    border-radius: 14px; padding: 20px 22px; margin-bottom: 0;
    transition: box-shadow .2s, border-color .2s;
}
.form-section-card:hover { border-color: rgba(var(--primary-rgb,26,95,42),.22); box-shadow: 0 4px 16px rgba(var(--primary-rgb,26,95,42),.1); }
.form-section-card-hdr { display: flex; align-items: center; gap: 10px; }
.form-section-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.bg-primary-soft   { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-color); }
.bg-success-soft   { background: rgba(40,167,69,.1); color: #28a745; }
.bg-warning-soft   { background: rgba(255,193,7,.14); color: #856404; }
.bg-info-soft      { background: rgba(13,202,240,.1); color: #0dcaf0; }
.bg-secondary-soft { background: rgba(108,117,125,.1); color: #6c757d; }
.form-success-card--token { border: 2px solid rgba(var(--primary-rgb,26,95,42),.2); }
.loan-wiz-nav { flex-wrap: wrap; }
@media (max-width: 576px) {
    .loan-wizard-bar { gap: 0 2px; }
    .loan-wiz-connector { min-width: 10px; }
    .loan-wiz-label { font-size: .65rem; }
    .loan-wiz-circle { width: 38px; height: 38px; font-size: .82rem; }
    .form-section-card { padding: 14px 12px; }
    #loanSubmitBtn, #loanNextBtn, #loanPrevBtn { width: 100%; }
    .loan-wiz-nav { gap: 8px; }
}

/* ═══════════════════════════════════════════════════
   31. DIGITAL SERVICES PAGE (digital-services.php)
   ═══════════════════════════════════════════════════ */
.ds-service-card {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 17px;
    background: #fff;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.12);
    border-radius: 13px; cursor: pointer;
    transition: all .22s ease;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb,26,95,42),.07);
}
.ds-service-card:hover, .ds-service-card:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 18px rgba(var(--primary-rgb,26,95,42),.13);
    transform: translateY(-2px); outline: none;
}
.ds-icon {
    width: 46px; height: 46px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    background: rgba(var(--primary-rgb,26,95,42),.1);
    color: var(--primary-color); flex-shrink: 0;
}
.ds-label { flex: 1; display: flex; flex-direction: column; text-align: left; }
.ds-label strong { font-size: .92rem; color: var(--text-color, #333); line-height: 1.3; }
.ds-label small  { font-size: .76rem; color: var(--text-light, #777); margin-top: 2px; }
.ds-arrow { color: var(--text-muted, #aaa); font-size: .82rem; flex-shrink: 0; }
.ds-service-card:hover .ds-arrow { color: var(--primary-color); }
.ds-conditional-box {
    background: rgba(var(--primary-rgb,26,95,42),.06);
    border: 1px solid rgba(var(--primary-rgb,26,95,42),.18);
    border-radius: 10px; padding: 15px; margin-bottom: 15px;
}
.ds-conditional-label { font-weight: 600; color: var(--primary-color); margin-bottom: 11px; font-size: .875rem; }
.req          { color: var(--secondary-color); margin-left: 2px; }
.form-card-title {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: .92rem; color: var(--primary-color);
    padding-bottom: 7px;
    border-bottom: 2px solid rgba(var(--primary-rgb,26,95,42),.12);
}
.font-monospace          { font-family: 'Courier New', monospace; letter-spacing: .08em; }
.ds-muted                { color: var(--text-muted, #999) !important; }
.ds-title-ok             { color: var(--primary-dark); }
.ds-btn-primary, .ds-btn-success {
    background: var(--primary-color); border-color: var(--primary-color); color: var(--text-on-primary, #fff);
}
.ds-btn-primary:hover, .ds-btn-success:hover {
    background: var(--primary-dark); border-color: var(--primary-dark); color: var(--text-on-primary, #fff);
}
.ds-track-copy           { font-size: 11px; line-height: 1.8; }
.ds-track-help-link      { color: var(--primary-color); text-decoration: none; font-weight: 700; }
.ds-step-icon            { font-size: 2rem; }
.ds-step-icon-primary    { color: var(--primary-color); }
.ds-step-icon-secondary  { color: var(--secondary-color); }
.ds-step-icon-light      { color: var(--primary-light); }
.ds-form-card-shell      { border-radius: 13px; overflow: hidden; }
.ds-form-card-head       { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.ds-form-card-sub        { font-size: .83rem; }
.ds-soft-bg              { background: rgba(var(--primary-rgb,26,95,42),.06); }
.ds-req-mark             { color: var(--secondary-color); }
.ds-mid-req              { display: none; }
.conditional-fields      { display: none; }

/* ═══════════════════════════════════════════════════
   32. INTEREST RATES PAGE (interest-rates.php)
   ═══════════════════════════════════════════════════ */
.ir-cta-btn { background: var(--bg-soft,#f5faf6); border: 1px solid rgba(var(--primary-rgb,26,95,42),.16); color: var(--primary-dark); }
.ir-cta-btn:hover { background: rgba(var(--primary-rgb,26,95,42),.08); border-color: rgba(var(--primary-rgb,26,95,42),.22); color: var(--primary-dark); }

/* ═══════════════════════════════════════════════════
   33. INSTITUTIONAL PROFILE PAGE (institutional-profile.php)
   ═══════════════════════════════════════════════════ */
.ip-profile-card {
    background: #fff; border-radius: 14px;
    box-shadow: 0 6px 22px rgba(var(--primary-rgb,26,95,42),.09);
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb,26,95,42),.07);
}
.ip-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-on-primary,#fff);
    padding: 12px 18px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.ip-fy-badge { font-size: 1rem; font-weight: 700; letter-spacing: .3px; }
.ip-date-info { font-size: .8rem; opacity: .88; }
.ip-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 0;
    border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.08);
}
.ip-stat-item {
    display: flex; align-items: center; gap: 11px;
    padding: 14px 12px;
    border-right: 1px solid rgba(var(--primary-rgb,26,95,42),.07);
    transition: background .18s;
}
.ip-stat-item:last-child { border-right: none; }
.ip-stat-item:hover { background: rgba(var(--primary-rgb,26,95,42),.03); }
.ip-stat-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ip-stat-primary .ip-stat-icon { background: rgba(var(--primary-rgb,26,95,42),.13); color: var(--primary-color); }
.ip-stat-success .ip-stat-icon { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-light); }
.ip-stat-info    .ip-stat-icon { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-light); }
.ip-stat-teal    .ip-stat-icon { background: rgba(var(--primary-rgb,26,95,42),.08); color: var(--primary-dark); }
.ip-stat-warning .ip-stat-icon { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--secondary-color); }
.ip-stat-purple  .ip-stat-icon { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-dark); }
.ip-stat-value { font-size: .93rem; font-weight: 800; color: var(--text-color,#1a1a1a); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ip-stat-label { font-size: .72rem; color: var(--text-light,#777); margin-top: 2px; font-weight: 500; }
.ip-stat-sub   { font-size: .66rem; color: var(--primary-light); font-weight: 600; margin-top: 2px; }
.ip-indicators-row {
    display: flex; flex-wrap: wrap; gap: 16px;
    background: rgba(var(--primary-rgb,26,95,42),.03);
    border-top: 1px solid rgba(var(--primary-rgb,26,95,42),.1);
    border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.1);
    padding: 11px 14px;
}
.ip-indicator     { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 170px; }
.ip-ind-label     { font-size: .74rem; color: var(--text-light,#555); white-space: nowrap; min-width: 94px; }
.ip-ind-bar-wrap  { flex: 1; height: 7px; background: rgba(var(--primary-rgb,26,95,42),.12); border-radius: 4px; overflow: hidden; min-width: 70px; }
.ip-ind-bar       { height: 100%; border-radius: 4px; transition: width .55s ease; }
.bar-good    { background: linear-gradient(90deg, var(--primary-color), var(--primary-light)); }
.bar-warning { background: linear-gradient(90deg, var(--secondary-color), var(--primary-color)); }
.bar-danger  { background: linear-gradient(90deg, var(--secondary-color), var(--primary-dark)); }
.bar-info    { background: linear-gradient(90deg, var(--primary-light), var(--secondary-color)); }
.bar-teal    { background: linear-gradient(90deg, var(--primary-dark), var(--primary-color)); }
.ip-ind-value       { font-size: .85rem; font-weight: 700; min-width: 40px; text-align: right; }
.bar-good ~ .ip-ind-value, .ip-ind-value.bar-good { color: var(--primary-dark); }
.bar-danger ~ .ip-ind-value { color: var(--secondary-color); }
.ip-ind-value-info  { color: var(--primary-color); }
.ip-ind-value-teal  { color: var(--primary-dark); }
.ip-reserve-row {
    padding: 11px 14px; font-size: .82rem; color: var(--text-color,#444);
    border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.08);
    background: rgba(var(--primary-rgb,26,95,42),.04);
}
.ip-reserve-pct { background: rgba(var(--primary-rgb,26,95,42),.12); color: var(--primary-color); padding: 2px 7px; border-radius: 7px; font-size: .78rem; font-weight: 600; margin-left: 5px; }
.ip-note { padding: 11px 14px; font-size: .8rem; color: var(--text-light,#666); background: rgba(var(--primary-rgb,26,95,42),.04); }
.ip-empty-icon-wrap { width: 72px; height: 72px; background: rgba(var(--primary-rgb,26,95,42),.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
@media (max-width: 768px) {
    .ip-stats-grid { grid-template-columns: repeat(2,1fr); }
    .ip-stat-item:nth-child(2n) { border-right: none; }
    .ip-indicators-row { flex-direction: column; gap: 10px; }
    .ip-card-header { padding: 10px 12px; }
}
@media (max-width: 480px) {
    .ip-stats-grid { grid-template-columns: 1fr; }
    .ip-stat-item { border-right: none; border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.07); }
}

/* ═══════════════════════════════════════════════════
   34. PARTNER FACILITIES PAGE (partner-facilities.php)
   ═══════════════════════════════════════════════════ */
.pf-filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pf-filter-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 18px;
    background: rgba(var(--primary-rgb,26,95,42),.08);
    color: var(--text-color,#374151);
    text-decoration: none; font-size: .82rem; font-weight: 600;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.16);
    transition: all .15s;
}
.pf-filter-pill:hover, .pf-filter-pill.active { background: var(--primary-color); color: var(--text-on-primary,#fff); border-color: var(--primary-color); }
.pf-pill-count { background: rgba(255,255,255,.25); border-radius: 9px; padding: 1px 6px; font-size: .73rem; }
.pf-filter-pill.active .pf-pill-count { background: rgba(255,255,255,.28); }
.pf-filter-pill:not(.active) .pf-pill-count { background: rgba(var(--primary-rgb,26,95,42),.12); color: var(--text-light,#6b7280); }
.pf-table-wrap { border-radius: 11px; overflow: hidden; border: 1px solid rgba(var(--primary-rgb,26,95,42),.12); box-shadow: 0 2px 10px rgba(var(--primary-rgb,26,95,42),.07); margin-bottom: 18px; }
.pf-table { width: 100%; border-collapse: collapse; background: #fff; }
.pf-table thead tr { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary,#fff); }
.pf-table th { padding: 11px 14px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.pf-table tbody tr { border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.07); transition: background .12s; }
.pf-table tbody tr:last-child { border-bottom: none; }
.pf-table tbody tr:hover { background: rgba(var(--primary-rgb,26,95,42),.04); }
.pf-table td { padding: 11px 14px; vertical-align: middle; font-size: .86rem; }
.pf-org-name    { font-weight: 700; color: var(--primary-color); font-size: .9rem; }
.pf-location    { color: var(--text-light,#6b7280); font-size: .82rem; }
.pf-location i  { color: var(--primary-color); margin-right: 4px; font-size: .76rem; }
.pf-type-badge  { background: rgba(var(--primary-rgb,26,95,42),.08); color: var(--primary-color); border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); border-radius: 18px; padding: 2px 9px; font-size: .76rem; font-weight: 700; }
.pf-discount-badge { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); color: var(--text-on-primary,#fff); border-radius: 18px; padding: 3px 11px; font-size: .83rem; font-weight: 800; display: inline-block; }
.pf-discount-badge small { font-size: .7rem; font-weight: 600; opacity: .9; }
.pf-note { background: rgba(var(--primary-rgb,26,95,42),.06); border: 1px solid rgba(var(--primary-rgb,26,95,42),.16); border-radius: 9px; padding: 11px 16px; font-size: .83rem; color: var(--primary-dark); display: flex; align-items: flex-start; gap: 9px; }
.pf-note i { margin-top: 2px; flex-shrink: 0; }
.pf-hero-icon-wrap { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--primary-color),var(--primary-light)); margin-bottom: 14px; }
.pf-hero-icon  { font-size: 1.5rem; color: var(--text-on-primary,#fff); }
.pf-hero-title { font-size: 1.6rem; font-weight: 700; color: var(--primary-color); margin-bottom: 7px; }
.pf-empty-icon { font-size: 3.5rem; color: var(--text-muted,#e9ecef); margin-bottom: 14px; }
.pf-empty-title { color: var(--text-light,#6c757d); }
.pf-search-wrap { position: relative; max-width: 300px; width: 100%; }
.pf-search-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--text-muted,#9ca3af); font-size: .83rem; }
.pf-search-input { width: 100%; padding: 8px 11px 8px 32px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); border-radius: 22px; font-size: .86rem; outline: none; background: rgba(var(--primary-rgb,26,95,42),.07); }
.pf-count        { font-size: .83rem; }
.pf-th-sn        { width: 46px; }
.pf-th-center    { text-align: center; }
.pf-td-sn        { color: var(--text-light,#6b7280); font-weight: 600; }
.pf-muted-dash   { color: var(--text-muted,#9ca3af); }
.pf-muted-dash-sm{ color: var(--text-muted,#9ca3af); font-size: .8rem; }
.pf-td-desc      { color: var(--text-color,#374151); font-size: .86rem; }
.pf-no-result    { text-align: center; padding: 36px; color: var(--text-light,#6b7280); }
.pf-no-result-icon { font-size: 1.9rem; opacity: .28; display: block; margin-bottom: 7px; }
@media (max-width: 768px) { .pf-table-wrap { overflow-x: auto; } .pf-table { min-width: 600px; } }

/* ═══════════════════════════════════════════════════
   35. CAREER PAGE (career.php)
   ═══════════════════════════════════════════════════ */
.cr-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%); padding: 2.5rem 0 2rem; color: var(--text-on-primary,#fff); }
.cr-hero-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cr-hero-text { flex: 1; min-width: 190px; }
.cr-hero-text h2 { font-size: 1.65rem; font-weight: 800; margin-bottom: .35rem; color: var(--text-on-primary,#fff); }
.cr-hero-text p  { color: rgba(255,255,255,.68); margin: 0; font-size: .93rem; }
.cr-stats        { display: flex; gap: 1rem; flex-wrap: wrap; }
.cr-stat-box { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 13px; padding: .8rem 1.2rem; text-align: center; min-width: 86px; }
.cr-stat-num { font-size: 1.55rem; font-weight: 800; line-height: 1; color: var(--text-on-primary,#fff); }
.cr-stat-lbl { font-size: .68rem; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .4px; margin-top: .2rem; }
.cr-layout   { padding: 2.5rem 0 3rem; }
.cr-filterbar { background: var(--bg-soft,#f5faf6); border-radius: 14px; box-shadow: 0 3px 16px rgba(var(--primary-rgb,26,95,42),.09); padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; border: 1px solid rgba(var(--primary-rgb,26,95,42),.1); }
.cr-search-row { display: flex; gap: .7rem; align-items: center; margin-bottom: .9rem; }
.cr-search-field { flex: 1; position: relative; }
.cr-search-field i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-muted,#aaa); font-size: .88rem; }
.cr-search-field input { width: 100%; padding: .65rem 1rem .65rem 2.4rem; border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.14); border-radius: 9px; font-size: .9rem; transition: border-color .2s, box-shadow .2s; outline: none; }
.cr-search-field input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.12); }
.cr-filter-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.cr-chip { padding: .35rem .9rem; border-radius: 18px; font-size: .78rem; font-weight: 600; cursor: pointer; border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.14); background: rgba(var(--primary-rgb,26,95,42),.05); color: var(--text-light,#6b7280); transition: all .18s; display: flex; align-items: center; gap: .4rem; user-select: none; }
.cr-chip:hover  { border-color: var(--primary-color); color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.1); }
.cr-chip.active { background: var(--primary-color); color: var(--text-on-primary,#fff); border-color: var(--primary-color); }
.cr-chip.active.grey { background: var(--text-muted,#aaa); border-color: var(--text-muted,#aaa); color: #fff; }
.cr-chip-count { background: rgba(255,255,255,.25); color: inherit; border-radius: 9px; padding: 0 .42rem; font-size: .7rem; min-width: 17px; text-align: center; }
.cr-chip:not(.active) .cr-chip-count { background: rgba(var(--primary-rgb,26,95,42),.12); }
.cr-result-count { font-size: .8rem; color: var(--text-light,#6b7280); margin-bottom: .9rem; display: flex; align-items: center; gap: .4rem; }
.cr-job-card { background: var(--bg-soft,#f5faf6); border-radius: 14px; box-shadow: 0 3px 16px rgba(var(--primary-rgb,26,95,42),.1); border: 2px solid rgba(var(--primary-rgb,26,95,42),.12); border-left: 5px solid var(--primary-color); margin-bottom: 1.4rem; overflow: hidden; transition: all .28s; position: relative; }
.cr-job-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(var(--primary-rgb,26,95,42),.18); border-color: rgba(var(--primary-rgb,26,95,42),.2); }
.cr-job-card.cr-closed { border-left-color: var(--text-muted,#ccc); opacity: .8; }
.cr-job-card.cr-closed:hover { transform: none; box-shadow: 0 3px 16px rgba(var(--primary-rgb,26,95,42),.1); }
.cr-job-card.cr-urgent { border-left-color: var(--secondary-color); border-color: rgba(var(--primary-rgb,26,95,42),.14); }
.cr-job-card.cr-urgent:hover { border-color: var(--secondary-color); box-shadow: 0 10px 32px rgba(var(--primary-rgb,26,95,42),.2); }
.cr-urgent-tag { position: absolute; top: 0; right: 0; background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); color: var(--text-on-primary,#fff); font-size: .7rem; font-weight: 800; padding: .28rem .8rem; border-radius: 0 0 0 11px; text-transform: uppercase; letter-spacing: .5px; display: flex; align-items: center; gap: .4rem; animation: pulse-urgent 2s infinite; }
@keyframes pulse-urgent { 0%,100%{opacity:1;} 50%{opacity:.84;} }
.cr-card-inner { padding: 1.4rem 1.5rem; }
.cr-card-top { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: .9rem; }
.cr-dept-avatar { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: rgba(var(--primary-rgb,26,95,42),.1); display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.3rem; box-shadow: 0 3px 10px rgba(var(--primary-rgb,26,95,42),.14); transition: all .28s; }
.cr-job-card:hover .cr-dept-avatar { transform: scale(1.04) rotate(4deg); }
.cr-job-card.cr-closed .cr-dept-avatar { background: rgba(var(--text-muted-rgb,.5),.1); color: var(--text-muted,#ccc); }
.cr-job-card.cr-urgent .cr-dept-avatar { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--secondary-color); }
.cr-card-heading { flex: 1; }
.cr-job-title { font-size: 1.1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: .35rem; line-height: 1.3; transition: color .25s; }
.cr-job-card:hover .cr-job-title { color: var(--primary-color); }
.cr-job-card.cr-closed .cr-job-title { text-decoration: line-through; color: var(--text-muted,#ccc); opacity: .7; }
.cr-badge-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.cr-tag { font-size: .7rem; font-weight: 800; padding: .2em .7em; border-radius: 20px; text-transform: uppercase; letter-spacing: .4px; border: 1px solid transparent; transition: all .25s; cursor: default; }
.cr-tag.type     { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-dark); border-color: rgba(var(--primary-rgb,26,95,42),.18); }
.cr-tag.dept     { background: rgba(var(--primary-rgb,26,95,42),.08); color: var(--primary-color); border-color: rgba(var(--primary-rgb,26,95,42),.14); }
.cr-tag.open     { background: rgba(var(--primary-rgb,26,95,42),.12); color: var(--primary-dark); border-color: rgba(var(--primary-rgb,26,95,42),.2); }
.cr-tag.closed-tag  { background: rgba(128,128,128,.1); color: var(--text-muted,#999); border-color: rgba(128,128,128,.18); }
.cr-tag.urgent-tag  { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--secondary-color); border-color: rgba(var(--primary-rgb,26,95,42),.14); animation: pulse-urgent 2s infinite; }
.cr-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-bottom: .9rem; }
.cr-meta-item { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--text-color,#444); background: rgba(var(--primary-rgb,26,95,42),.05); padding: .28rem .65rem; border-radius: 18px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.1); transition: all .25s; }
.cr-meta-item:hover { background: rgba(var(--primary-rgb,26,95,42),.1); border-color: rgba(var(--primary-rgb,26,95,42),.18); }
.cr-meta-item i { width: 13px; text-align: center; color: var(--primary-color); font-size: .8rem; flex-shrink: 0; }
.cr-meta-item.deadline-near { color: var(--secondary-color); font-weight: 600; background: rgba(var(--primary-rgb,26,95,42),.08); border-color: rgba(var(--primary-rgb,26,95,42),.16); }
.cr-meta-item.deadline-gone { color: var(--text-muted,#aaa); background: rgba(128,128,128,.07); border-color: rgba(128,128,128,.12); }
.cr-meta-deadline-strong { margin-left: .3rem; }
.cr-desc { font-size: .83rem; color: var(--text-light,#6b7280); line-height: 1.6; margin-bottom: .9rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cr-actions { display: flex; gap: .7rem; flex-wrap: wrap; padding-top: .9rem; border-top: 1.5px solid rgba(var(--primary-rgb,26,95,42),.1); align-items: center; }
.cr-btn-detail { padding: .55rem 1.2rem; border-radius: 9px; font-size: .84rem; font-weight: 600; border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: all .25s; }
.cr-btn-detail:hover { background: var(--primary-color); color: var(--text-on-primary,#fff); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(var(--primary-rgb,26,95,42),.28); }
.cr-btn-apply { padding: .6rem 1.3rem; border-radius: 9px; font-size: .84rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-on-primary,#fff); border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: all .25s; box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.32); }
.cr-btn-apply:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 7px 20px rgba(var(--primary-rgb,26,95,42),.42); color: var(--text-on-primary,#fff); }
.cr-btn-dl { padding: .55rem .95rem; border-radius: 9px; font-size: .84rem; font-weight: 600; border: 2px solid rgba(var(--primary-rgb,26,95,42),.16); color: var(--text-light,#666); background: rgba(var(--primary-rgb,26,95,42),.06); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: all .25s; }
.cr-btn-dl:hover { background: rgba(var(--primary-rgb,26,95,42),.14); color: var(--text-color,#333); transform: translateY(-2px); }
.cr-deadline-bar { height: 3px; background: rgba(var(--primary-rgb,26,95,42),.1); border-radius: 2px; margin-bottom: .65rem; overflow: hidden; }
.cr-deadline-fill { height: 100%; border-radius: 2px; transition: width .45s; }
.cr-deadline-fill.ok   { background: var(--primary-color); }
.cr-deadline-fill.near { background: var(--secondary-color); }
.cr-deadline-fill.gone { background: var(--text-muted,#ccc); }
.cr-empty { text-align: center; padding: 2.5rem 1.5rem; background: var(--bg-soft,#f5faf6); border-radius: 13px; box-shadow: 0 2px 10px rgba(var(--primary-rgb,26,95,42),.07); }
.cr-empty-icon { width: 68px; height: 68px; border-radius: 50%; background: rgba(var(--primary-rgb,26,95,42),.07); display: flex; align-items: center; justify-content: center; margin: 0 auto .9rem; font-size: 1.7rem; color: var(--text-muted,#ccc); }
.cr-sb-card { border-radius: 13px; margin-bottom: 1.1rem; overflow: hidden; box-shadow: 0 2px 12px rgba(var(--primary-rgb,26,95,42),.09); }
.cr-sb-card .cr-sb-head { padding: 1.1rem 1.3rem .9rem; border-bottom: 1px solid rgba(255,255,255,.18); }
.cr-sb-card .cr-sb-body { padding: 1.1rem 1.3rem; background: var(--bg-soft,#f5faf6); }
.cr-dept-chips { display: flex; gap: .4rem; flex-wrap: wrap; padding-top: .7rem; border-top: 1px solid rgba(var(--primary-rgb,26,95,42),.08); margin-top: .7rem; }
.cr-dept-chip { padding: .26rem .75rem; border-radius: 18px; font-size: .74rem; font-weight: 600; cursor: pointer; border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.14); background: rgba(var(--primary-rgb,26,95,42),.05); color: var(--text-light,#6b7280); transition: all .16s; display: inline-flex; align-items: center; gap: .3rem; }
.cr-dept-chip:hover { border-color: var(--primary-color); color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.1); }
.cr-dept-chip.active { background: var(--primary-color); color: var(--text-on-primary,#fff); border-color: var(--primary-color); }
.cr-dept-label { font-size: .7rem; font-weight: 700; color: var(--text-muted,#999); text-transform: uppercase; letter-spacing: .3px; display: flex; align-items: center; gap: .3rem; margin-right: .3rem; }
.cr-sidebar-toggle { display: none; width: 100%; background: var(--bg-soft,#f5faf6); border: 2px solid rgba(var(--primary-rgb,26,95,42),.13); border-radius: 13px; padding: .8rem 1.1rem; font-size: .9rem; font-weight: 700; color: var(--primary-dark); cursor: pointer; margin-bottom: .9rem; text-align: left; align-items: center; gap: .6rem; transition: all .25s; }
.cr-sidebar-toggle:hover { border-color: var(--primary-color); }
.cr-track-card { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.cr-track-card .cr-sb-head h4 { color: var(--text-on-primary,#fff); margin: 0 0 .3rem; font-size: .97rem; font-weight: 700; }
.cr-track-card .cr-sb-head p  { color: rgba(255,255,255,.66); font-size: .82rem; margin: 0; }
.cr-track-card .cr-sb-body { background: var(--primary-color); border-top: 1px solid rgba(255,255,255,.12); }
.cr-btn-track { display: flex; align-items: center; gap: .5rem; background: #fff; color: var(--primary-color); padding: .62rem 1.1rem; border-radius: 9px; font-weight: 700; font-size: .86rem; text-decoration: none; transition: all .2s; width: 100%; justify-content: center; }
.cr-btn-track:hover { background: rgba(255,255,255,.88); color: var(--primary-color); }
.cr-cv-card { background: var(--bg-soft,#f5faf6); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.1); }
.cr-cv-icon { width: 46px; height: 46px; border-radius: 11px; background: rgba(var(--primary-rgb,26,95,42),.1); display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.2rem; margin-bottom: .8rem; }
.cr-cv-card h4 { font-size: .97rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .38rem; }
.cr-cv-card p  { font-size: .82rem; color: var(--text-light,#6b7280); margin-bottom: .9rem; }
.cr-btn-cv { display: flex; align-items: center; gap: .5rem; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-on-primary,#fff); padding: .62rem 1.1rem; border-radius: 9px; font-weight: 700; font-size: .86rem; text-decoration: none; transition: opacity .2s; width: 100%; justify-content: center; }
.cr-btn-cv:hover { opacity: .9; color: var(--text-on-primary,#fff); }
.cr-muted       { color: var(--text-muted,#999) !important; }
.cr-btn-primary { background: var(--primary-color); border-color: var(--primary-color); color: var(--text-on-primary,#fff); }
.cr-btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--text-on-primary,#fff); }
.cr-why-card { background: var(--bg-soft,#f5faf6); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.1); }
.cr-why-card .cr-sb-body { padding: 1.3rem; }
.cr-why-card h4 { font-size: .97rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .9rem; }
.cr-benefits { display: flex; flex-direction: column; gap: .6rem; }
.cr-benefit-item { display: flex; align-items: center; gap: .7rem; font-size: .85rem; color: var(--text-color,#444); }
.cr-benefit-icon { width: 30px; height: 30px; border-radius: 7px; background: rgba(var(--primary-rgb,26,95,42),.1); display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: .78rem; flex-shrink: 0; }
.cr-novacancy { background: var(--bg-soft,#f5faf6); border-radius: 13px; padding: 2.5rem 1.5rem; text-align: center; box-shadow: 0 2px 12px rgba(var(--primary-rgb,26,95,42),.08); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.1); }
.cr-novacancy-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(var(--primary-rgb,26,95,42),.07); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 2rem; color: var(--text-muted,#ccc); }
.cr-inline-dot { font-size: .52em; }
.cr-no-results { display: none; }
@media (max-width: 991px) {
    .cr-sidebar-toggle { display: flex; }
    .cr-sidebar-content { display: none; }
    .cr-sidebar-content.open { display: block; }
    .cr-actions { flex-direction: column; align-items: stretch; }
    .cr-btn-detail, .cr-btn-apply, .cr-btn-dl { width: 100%; justify-content: center; }
    .cr-job-card { margin-bottom: 1.1rem; }
    .cr-card-inner { padding: 1.1rem 1.2rem; }
}
@media (min-width: 992px) { .cr-sidebar-content { display: block !important; } }

/* ═══════════════════════════════════════════════════
   36. CAREER DETAIL PAGE (career-detail.php)
   ═══════════════════════════════════════════════════ */
.job-detail-card { background: var(--white,#fff); border-radius: 12px; box-shadow: 0 2px 14px rgba(var(--primary-rgb,26,95,42),.11); overflow: hidden; margin-bottom: 28px; }
.job-detail-header { padding: 22px 28px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-on-primary,#fff); display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 14px; }
.job-detail-header h2 { margin: 0 0 9px; font-size: 1.45rem; color: var(--text-on-primary,#fff); }
.job-meta { display: flex; flex-wrap: wrap; gap: 13px; font-size: 14px; opacity: .9; }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-type-badge { background: rgba(255,255,255,.18); padding: 3px 11px; border-radius: 18px; font-size: 12px; }
.deadline-badge { background: rgba(255,255,255,.18); padding: 7px 13px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 7px; }
.deadline-badge.expired { background: rgba(var(--primary-rgb,26,95,42),.22); }
.job-detail-body { padding: 28px; }
.job-info-row { display: flex; padding: 11px 0; border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.1); }
.job-info-row .label { font-weight: 600; min-width: 170px; color: var(--text-color,#333); }
.job-info-row .value { color: var(--text-light,#666); }
.job-section { margin-top: 22px; }
.job-section h4 { color: var(--primary-color); font-size: 1.05rem; margin-bottom: 13px; padding-bottom: 9px; border-bottom: 2px solid var(--primary-light); }
.job-content { color: var(--text-light,#666); line-height: 1.8; }
.job-detail-footer { padding: 18px 28px; background: rgba(var(--primary-rgb,26,95,42),.04); display: flex; gap: 13px; flex-wrap: wrap; }
.application-form-section { background: var(--white,#fff); border-radius: 12px; box-shadow: 0 2px 14px rgba(var(--primary-rgb,26,95,42),.11); padding: 28px; margin-top: 28px; animation: slideDown .4s ease-out; }
.application-form-section h3 { color: var(--primary-color); margin-bottom: 9px; display: flex; align-items: center; gap: 9px; }
.form-subtitle { color: var(--text-light,#666); margin-bottom: 22px; }
.form-section { background: rgba(var(--primary-rgb,26,95,42),.05); padding: 18px; border-radius: 10px; margin-bottom: 18px; }
.form-section h5 { color: var(--text-color,#333); margin-bottom: 18px; padding-bottom: 9px; border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.14); }
.job-summary .summary-list { list-style: none; padding: 0; margin: 0; }
.job-summary .summary-list li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.1); }
.job-summary .summary-list li:last-child { border-bottom: none; }
.job-summary .summary-list i { color: var(--primary-color); width: 20px; margin-top: 3px; }
.job-summary .summary-list .label { display: block; font-size: 12px; color: var(--text-light,#777); margin-bottom: 2px; }
.job-summary .summary-list .value { font-weight: 600; color: var(--text-color,#333); }
.share-buttons { display: flex; gap: 9px; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .25s; }
.share-btn:hover { transform: scale(1.1); color: #fff; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter  { background: #1da1f2; }
.share-btn.linkedin { background: var(--primary-dark); }
.share-btn.whatsapp { background: var(--primary-color); }
.cd-success-wrap { background: linear-gradient(135deg, rgba(var(--primary-rgb,26,95,42),.1), rgba(var(--primary-rgb,26,95,42),.06)); border: 2px solid rgba(var(--primary-rgb,26,95,42),.22); }
.cd-success-icon { font-size: 2.8rem; color: var(--primary-light); }
.cd-success-track-wrap { background: rgba(var(--primary-rgb,26,95,42),.06); border: 2px dashed var(--primary-light); }
.cd-copy-btn { font-size: 11px; line-height: 1.8; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
    .job-detail-header { flex-direction: column; }
    .job-info-row { flex-direction: column; gap: 4px; }
    .job-info-row .label { min-width: auto; }
}

/* ═══════════════════════════════════════════════════
   37. MEMBER WELFARE PAGE (member-welfare.php)
   ═══════════════════════════════════════════════════ */
.claim-types-sidebar { background: var(--white,#fff); border-radius: 14px; padding: 18px; box-shadow: 0 4px 18px rgba(var(--primary-rgb,26,95,42),.08); position: sticky; top: 100px; }
.claim-types-sidebar h5 { font-weight: 600; margin-bottom: 13px; color: var(--primary-color); }
.claim-type-item { display: flex; align-items: center; gap: 11px; padding: 11px; border-radius: 10px; margin-bottom: 7px; cursor: pointer; transition: all .25s; border: 2px solid transparent; }
.claim-type-item:hover, .claim-type-item.active { background: var(--bg-soft,#f5faf6); border-color: var(--primary-color); }
.type-icon { width: 42px; height: 42px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; }
.type-icon i { font-size: 17px; }
.type-info h6 { margin: 0; font-size: 13px; font-weight: 600; }
.type-info small { color: var(--text-muted,#888); font-size: 11px; }
.track-claim-box { background: var(--bg-soft,#f8f9fa); border-radius: 10px; padding: 14px; }
.tracking-result { background: var(--white,#fff); border-radius: 8px; padding: 11px; }
.tracking-result .table { margin-bottom: 0; font-size: 13px; }
.claim-form .form-section h5 { font-weight: 600; margin-bottom: 13px; color: var(--text-color,#333); }
.claim-type-selector { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 11px; }
.type-option input { display: none; }
.type-box { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 13px 9px; border: 2px solid rgba(var(--primary-rgb,26,95,42),.14); border-radius: 10px; cursor: pointer; transition: all .25s; text-align: center; }
.type-box i { font-size: 22px; color: var(--type-color,var(--primary-color)); }
.type-box span { font-size: 12px; font-weight: 500; }
.type-option input:checked + .type-box { border-color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.05); box-shadow: 0 3px 10px rgba(var(--primary-rgb,26,95,42),.1); }
.form-actions { text-align: center; padding-top: 18px; position: relative; z-index: 3; }
.form-actions .btn { min-width: 210px; pointer-events: auto; }
.form-submit-hint { margin-top: 9px; color: var(--text-muted,#6c757d); font-size: 13px; }
.success-card { background: var(--white,#fff); border-radius: 18px; padding: 46px; box-shadow: 0 8px 36px rgba(var(--primary-rgb,26,95,42),.1); }
.success-icon { font-size: 72px; color: var(--primary-light); margin-bottom: 18px; }
.tracking-info { background: var(--bg-soft,#f8f9fa); padding: 18px; border-radius: 10px; margin: 18px 0; }
.tracking-id { color: var(--primary-color); font-family: monospace; letter-spacing: 2px; }
.action-buttons { display: flex; gap: 13px; justify-content: center; margin-top: 22px; }
@media (max-width: 767px) {
    .claim-type-selector { grid-template-columns: repeat(2,1fr); }
    .claim-types-sidebar { position: static; margin-bottom: 28px; }
    .action-buttons { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   38. PAGE (page.php — generic content pages)
   ═══════════════════════════════════════════════════ */
.page-content-box { background: var(--white,#fff); border-radius: 18px; padding: 38px; box-shadow: 0 8px 44px rgba(var(--primary-rgb,26,95,42),.07); }
.page-featured-image img { width: 100%; max-height: 400px; object-fit: cover; }
.page-tags .badge { padding: 7px 11px; font-size: .83rem; border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); }
.error-box { background: var(--white,#fff); border-radius: 18px; padding: 56px 38px; box-shadow: 0 8px 44px rgba(var(--primary-rgb,26,95,42),.07); }
@media (max-width: 767px) { .page-content-box { padding: 22px; } }

/* ═══════════════════════════════════════════════════
   39. COOPERATIVE PROGRAMS PAGE (cooperative-programs.php)
   ═══════════════════════════════════════════════════ */
.cp-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 60%); padding: 2.5rem 0 2rem; color: #fff; }
.cp-hero-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cp-hero-icon { width: 68px; height: 68px; border-radius: 16px; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; flex-shrink: 0; border: 1px solid rgba(255,255,255,.18); }
.cp-hero-text { flex: 1; min-width: 170px; }
.cp-hero-text h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: .28rem; }
.cp-hero-text p  { color: rgba(255,255,255,.72); margin: 0; font-size: .9rem; }
.cp-hero-stats { display: flex; gap: .72rem; flex-wrap: wrap; }
.cp-stat-box { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border-radius: 11px; padding: .68rem 1.05rem; text-align: center; min-width: 78px; }
.cp-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.cp-stat-num.accent { background: linear-gradient(135deg, var(--primary-light), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cp-stat-lbl { font-size: .65rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .4px; margin-top: .18rem; }
.cp-shell { background: var(--bg-soft,#f2f7f3); padding: 2.5rem 0 3.5rem; }
.cp-section-sub { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; gap: .72rem; flex-wrap: wrap; }
.cp-section-sub h3 { font-size: 1.02rem; font-weight: 700; color: var(--primary-dark); margin: 0; display: flex; align-items: center; gap: .5rem; }
.cp-section-sub h3 i { color: var(--primary-color); }
.cp-card { background: var(--white,#fff); border-radius: 15px; box-shadow: 0 3px 18px rgba(var(--primary-rgb,26,95,42),.07); border: 1px solid rgba(var(--primary-rgb,26,95,42),.12); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; height: 100%; }
.cp-card:hover { transform: translateY(-4px); box-shadow: 0 9px 32px rgba(var(--primary-rgb,26,95,42),.13); }
.cp-card-head { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); padding: .85rem 1.2rem; display: flex; align-items: flex-start; gap: .85rem; }
.cp-date-box { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); border-radius: 9px; padding: .32rem .58rem; text-align: center; min-width: 42px; flex-shrink: 0; }
.cp-date-box .dd { font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1; }
.cp-date-box .mm { font-size: .56rem; font-weight: 700; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .3px; }
.cp-head-right { flex: 1; }
.cp-head-right h5 { color: #fff; font-weight: 700; margin: 0 0 .38rem; font-size: .94rem; line-height: 1.35; }
.cp-open-badge { background: var(--white,#fff); color: var(--primary-dark); font-size: .63rem; font-weight: 800; padding: .18em .68em; border-radius: 18px; display: inline-flex; align-items: center; gap: .22rem; box-shadow: 0 2px 7px rgba(var(--primary-rgb,26,95,42),.15); animation: cp-blink 2s infinite; }
.cp-closed-badge { background: rgba(255,255,255,.16); color: rgba(255,255,255,.74); font-size: .63rem; font-weight: 700; padding: .18em .68em; border-radius: 18px; display: inline-flex; align-items: center; gap: .22rem; }
@keyframes cp-blink { 0%,100% { box-shadow: 0 2px 7px rgba(var(--primary-rgb,26,95,42),.15), 0 0 0 0 rgba(var(--primary-rgb,26,95,42),.22); } 50% { box-shadow: 0 2px 7px rgba(var(--primary-rgb,26,95,42),.15), 0 0 0 5px rgba(var(--primary-rgb,26,95,42),0); } }
.cp-card-body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.cp-meta-row { display: flex; flex-wrap: wrap; gap: .38rem; margin-bottom: .85rem; }
.cp-pill { display: inline-flex; align-items: center; gap: .28rem; border-radius: 18px; padding: .24rem .68rem; font-size: .75rem; font-weight: 500; }
.cp-pill i { font-size: .66rem; }
.cp-pill-date { background: rgba(var(--primary-rgb,26,95,42),.08); color: var(--primary-dark); }
.cp-pill-time { background: rgba(var(--primary-rgb,26,95,42),.06); color: var(--primary-color); }
.cp-pill-loc  { background: rgba(var(--primary-rgb,26,95,42),.06); color: var(--primary-dark); }
.cp-pill-tba  { background: rgba(var(--primary-rgb,26,95,42),.05); color: var(--text-muted,#64748b); }
.cp-desc-text { color: var(--text-light,#4b5563); font-size: .86rem; line-height: 1.6; flex: 1; margin-bottom: .85rem; }
.cp-prereg-wrap { margin-top: .28rem; }
.cp-prereg-inner { background: rgba(var(--primary-rgb,26,95,42),.06); border-radius: 11px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.16); padding: .9rem 1.05rem; margin-top: .38rem; }
.cp-prereg-title { font-size: .79rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .65rem; display: flex; align-items: center; gap: .32rem; }
.cp-btn-prereg { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: #fff; border: none; border-radius: 8px; padding: .45rem 1.05rem; font-size: .8rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: .38rem; transition: all .2s; box-shadow: 0 3px 9px rgba(var(--primary-rgb,26,95,42),.26); }
.cp-btn-prereg:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(var(--primary-rgb,26,95,42),.38); color: #fff; }
.cp-card-footer { border-top: 1px solid rgba(var(--primary-rgb,26,95,42),.1); padding: .58rem 1.2rem; background: rgba(var(--primary-rgb,26,95,42),.03); display: flex; align-items: center; justify-content: flex-end; gap: .5rem; }
.cp-att-btn { font-size: .73rem; font-weight: 600; color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.07); border: 1px solid rgba(var(--primary-rgb,26,95,42),.2); border-radius: 7px; padding: .26rem .72rem; text-decoration: none; display: inline-flex; align-items: center; gap: .28rem; transition: all .2s; }
.cp-att-btn:hover { background: rgba(var(--primary-rgb,26,95,42),.14); }
.cp-empty { background: var(--white,#fff); border-radius: 15px; text-align: center; padding: 3.5rem 2rem; box-shadow: 0 2px 12px rgba(var(--primary-rgb,26,95,42),.06); border: 1.5px dashed rgba(var(--primary-rgb,26,95,42),.2); }
.cp-empty-icon { width: 76px; height: 76px; border-radius: 50%; background: rgba(var(--primary-rgb,26,95,42),.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 2.1rem; color: var(--primary-color); }
@media (max-width: 575px) {
    .cp-hero { padding: 1.6rem 0 1.3rem; }
    .cp-hero-icon { display: none; }
    .cp-hero-text h2 { font-size: 1.3rem; }
    .cp-card-head { flex-direction: column; gap: .45rem; }
    .cp-card-body, .cp-card-footer { padding-left: .95rem; padding-right: .95rem; }
    .cp-stat-box { min-width: 68px; padding: .5rem .75rem; }
}

/* ═══════════════════════════════════════════════════
   40. AUCTION PAGE (auction.php)
   ═══════════════════════════════════════════════════ */
.auc2-wrap { margin-bottom: 2.5rem; }
.auc2-card { background: var(--bg-soft,#f5faf6); border-radius: 18px; overflow: hidden; box-shadow: 0 7px 28px rgba(var(--primary-rgb,26,95,42),.13); border: 2px solid rgba(var(--primary-rgb,26,95,42),.14); transition: all .35s cubic-bezier(.4,0,.2,1); }
.auc2-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 14px 44px rgba(var(--primary-rgb,26,95,42),.22); border-color: var(--primary-color); }
.auc2-hero { display: flex; flex-wrap: wrap; }
.auc2-gallery-pane { flex: 0 0 100%; max-width: 100%; background: var(--dark-bg,#1a1a2e); position: relative; }
@media (min-width:768px) { .auc2-gallery-pane { flex: 0 0 48%; max-width: 48%; } }
.auc2-main-img { width: 100%; height: 290px; object-fit: cover; display: block; cursor: zoom-in; transition: transform .28s; }
@media (min-width:768px) { .auc2-main-img { height: 330px; } }
@media (min-width:992px) { .auc2-main-img { height: 370px; } }
.auc2-main-img:hover { transform: scale(1.02); }
.auc2-thumbs { display: flex; gap: 5px; padding: 7px 9px; background: #111; overflow-x: auto; scrollbar-width: thin; scrollbar-color: #444 #111; }
.auc2-thumbs img { width: 56px; height: 42px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: .58; transition: opacity .18s, outline .18s; flex-shrink: 0; }
.auc2-thumbs img.active, .auc2-thumbs img:hover { opacity: 1; outline: 2px solid var(--secondary-color); }
.auc2-no-img { width: 100%; height: 270px; background: rgba(var(--primary-rgb,26,95,42),.07); display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--primary-color); position: relative; overflow: hidden; }
.auc2-no-img::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg,transparent,rgba(var(--primary-rgb,26,95,42),.04),transparent); animation: shimmer 3s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } }
.auc2-no-img i { font-size: 3.2rem; margin-bottom: .9rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.auc2-no-img span { font-size: .92rem; font-weight: 600; background: rgba(var(--primary-rgb,26,95,42),.1); padding: .45rem .9rem; border-radius: 18px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.2); }
.auc2-summary-pane { flex: 1; padding: 1.8rem 2rem; display: flex; flex-direction: column; border-left: 2px solid rgba(var(--primary-rgb,26,95,42),.12); background: linear-gradient(135deg, var(--bg-soft,#f5faf6), rgba(var(--primary-rgb,26,95,42),.04)); }
.auc2-status-row { display: flex; align-items: center; gap: .58rem; margin-bottom: .9rem; flex-wrap: wrap; }
.auc2-badge-status { font-size: .76rem; font-weight: 800; letter-spacing: .5px; padding: .38em .9em; border-radius: 22px; text-transform: uppercase; border: 2px solid transparent; transition: all .25s; }
.auc2-badge-status.s-upcoming  { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-dark); border-color: rgba(var(--primary-rgb,26,95,42),.2); }
.auc2-badge-status.s-ongoing   { background: rgba(var(--primary-rgb,26,95,42),.14); color: var(--primary-dark); border-color: rgba(var(--primary-rgb,26,95,42),.25); animation: auc2-pulse 1.6s infinite; }
.auc2-badge-status.s-completed { background: rgba(128,128,128,.1); color: var(--text-muted,#6c757d); border-color: rgba(128,128,128,.18); }
.auc2-badge-status.s-cancelled { background: rgba(var(--primary-rgb,26,95,42),.08); color: var(--secondary-color); border-color: rgba(var(--primary-rgb,26,95,42),.14); }
@keyframes auc2-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb,26,95,42),.3); } 50% { box-shadow: 0 0 0 5px rgba(var(--primary-rgb,26,95,42),0); } }
.auc2-serial { font-size: .76rem; color: var(--text-muted,#6c757d); }
.auc2-title { font-size: 1.35rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 1.1rem; line-height: 1.3; transition: color .25s; }
.auc2-card:hover .auc2-title { color: var(--primary-color); }
.auc2-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.4rem; }
.auc2-info-item { background: rgba(var(--primary-rgb,26,95,42),.07); border-radius: 13px; padding: .75rem .95rem; border-left: 4px solid var(--primary-color); transition: all .25s; position: relative; overflow: hidden; }
.auc2-info-item:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.13); }
.auc2-info-item.highlight { background: rgba(var(--primary-rgb,26,95,42),.1); border-left-color: var(--primary-light); }
.auc2-info-item.price-item { background: rgba(var(--primary-rgb,26,95,42),.08); border-left-color: var(--secondary-color); }
.auc2-info-label { font-size: .7rem; color: var(--text-muted,#6c757d); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .18rem; display: flex; align-items: center; gap: .38rem; font-weight: 700; }
.auc2-info-value { font-size: .92rem; font-weight: 800; color: var(--primary-dark); transition: color .25s; }
.auc2-info-item:hover .auc2-info-value { color: var(--primary-color); }
.auc2-price-value { font-size: 1.25rem; color: var(--secondary-color); font-weight: 900; }
.auc2-countdown { display: flex; gap: .55rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.auc2-cd-box { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary,#fff); border-radius: 11px; padding: .48rem .75rem; text-align: center; min-width: 52px; box-shadow: 0 4px 10px rgba(var(--primary-rgb,26,95,42),.28); transition: all .25s; }
.auc2-cd-box:hover { transform: translateY(-2px) scale(1.04); }
.auc2-cd-num { font-size: 1.15rem; font-weight: 900; line-height: 1; }
.auc2-cd-lbl { font-size: .62rem; opacity: .9; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }
.auc2-cta { margin-top: auto; padding-top: 1.4rem; }
.auc2-bid-btn { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); color: var(--text-on-primary,#fff); border: none; border-radius: 13px; padding: .8rem 1.6rem; font-weight: 800; font-size: .97rem; width: 100%; cursor: pointer; transition: all .28s; box-shadow: 0 5px 18px rgba(var(--primary-rgb,26,95,42),.35); text-transform: uppercase; letter-spacing: .4px; }
.auc2-bid-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 9px 26px rgba(var(--primary-rgb,26,95,42),.45); color: var(--text-on-primary,#fff); }
.auc2-tabs-wrap { border-top: 1px solid rgba(var(--primary-rgb,26,95,42),.1); }
.auc2-nav { display: flex; background: var(--bg-soft,#f8f9fa); border-bottom: 2px solid rgba(var(--primary-rgb,26,95,42),.1); padding: 0 1.1rem; }
.auc2-tab-btn { padding: .8rem 1.3rem; font-size: .86rem; font-weight: 600; color: var(--text-muted,#6c757d); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: color .18s, border-color .18s; display: flex; align-items: center; gap: .38rem; }
.auc2-tab-btn:hover { color: var(--text-color,#212529); }
.auc2-tab-btn.active { color: var(--secondary-color); border-bottom-color: var(--secondary-color); }
.auc2-tab-pane { display: none; padding: 1.4rem 1.7rem; }
.auc2-tab-pane.active { display: block; }
.auc2-desc-block { color: var(--text-color,#495057); line-height: 1.75; margin-bottom: 1.1rem; }
.auc2-contact-row { display: flex; gap: .9rem; flex-wrap: wrap; background: rgba(var(--primary-rgb,26,95,42),.06); border-radius: 9px; padding: .9rem 1.1rem; align-items: center; }
.auc2-contact-item { display: flex; align-items: center; gap: .48rem; font-size: .88rem; color: var(--text-color,#212529); }
.auc2-contact-item i { color: var(--primary-color); width: 15px; text-align: center; }
.auc2-contact-item a { color: var(--primary-color); text-decoration: none; font-weight: 600; }
.auc2-contact-item a:hover { text-decoration: underline; }
.auc2-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 9px; }
.auc2-photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 7px; cursor: zoom-in; transition: transform .18s, box-shadow .18s; }
.auc2-photo-grid img:hover { transform: scale(1.04); box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.18); }
.auc2-doc-list { display: flex; flex-direction: column; gap: .7rem; }
.auc2-doc-item { display: flex; align-items: center; gap: .9rem; background: rgba(var(--primary-rgb,26,95,42),.05); border: 1px solid rgba(var(--primary-rgb,26,95,42),.12); border-radius: 9px; padding: .9rem 1.1rem; }
.auc2-doc-icon { font-size: 1.9rem; color: var(--secondary-color); flex-shrink: 0; }
.auc2-doc-info { flex: 1; }
.auc2-doc-name { font-weight: 600; color: var(--text-color,#212529); font-size: .9rem; }
.auc2-doc-desc { font-size: .78rem; color: var(--text-muted,#6c757d); margin-top: .08rem; }
.auc2-map-container { border-radius: 9px; overflow: hidden; }
.auc2-map-container iframe { width: 100%; height: 340px; border: 0; display: block; }
.auc2-map-link-wrap { margin-top: .9rem; }
.auc2-empty-tab { text-align: center; padding: 2.2rem 1rem; color: var(--text-muted,#adb5bd); }
.auc2-empty-tab i { font-size: 2.3rem; margin-bottom: .7rem; display: block; }
#auc2-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; padding: 1rem; }
#auc2-lightbox.open { display: flex; }
#auc2-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 7px; box-shadow: 0 8px 36px rgba(0,0,0,.6); object-fit: contain; }
#auc2-lightbox-close { position: fixed; top: 1rem; right: 1.2rem; color: #fff; font-size: 1.9rem; cursor: pointer; background: none; border: none; line-height: 1; z-index: 10000; }
.auc2-bid-modal-head { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary,#fff); }
.auc2-bid-modal-title { font-weight: 700; letter-spacing: .2px; }
.auc2-bid-form { padding: .14rem 0; }
.auc2-bid-note { background: rgba(var(--primary-rgb,26,95,42),.08); border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); color: var(--primary-dark); border-radius: 9px; font-weight: 600; }
.auc2-bid-min-amt { color: var(--secondary-color); font-weight: 800; }
.auc2-bid-label { font-size: .86rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .38rem; }
.auc2-req { color: var(--secondary-color); }
.auc2-bid-input, .auc2-bid-textarea { border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.16); border-radius: 9px; min-height: 42px; font-size: .9rem; }
.auc2-bid-input:focus, .auc2-bid-textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.12); }
.auc2-bid-addon { background: rgba(var(--primary-rgb,26,95,42),.07); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.16); border-right: none; color: var(--primary-dark); font-weight: 700; }
.auc2-bid-help { font-size: .76rem; color: var(--text-muted,#6c757d); }
.auc2-bid-help-warn { font-size: .76rem; color: var(--secondary-color); font-weight: 600; }
.auc2-bid-footer { padding-top: .38rem; }
.auc2-bid-cancel { border-color: rgba(var(--primary-rgb,26,95,42),.18); color: var(--text-color,#333); }
.auc2-bid-cancel:hover { background: rgba(var(--primary-rgb,26,95,42),.07); border-color: var(--primary-color); color: var(--primary-dark); }
.auc2-bid-submit { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); border-color: var(--secondary-color); color: var(--text-on-primary,#fff); font-weight: 700; }
.auc2-bid-submit:hover { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-color: var(--primary-color); color: var(--text-on-primary,#fff); }
/* Auction filter bar */
.auc2-page-hero { background: linear-gradient(135deg, var(--dark-bg-deep,#1a1a2e) 0%, var(--dark-bg,#16213e) 60%, var(--primary-dark) 100%); padding: 1.9rem 0 1.7rem; color: #fff; }
.auc2-page-hero-inner { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.auc2-page-icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(var(--primary-rgb,26,95,42),.18); border: 1px solid rgba(var(--primary-rgb,26,95,42),.3); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: var(--secondary-color); flex-shrink: 0; }
.auc2-page-text { flex: 1; min-width: 155px; }
.auc2-page-text h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .22rem; }
.auc2-page-text p  { color: rgba(255,255,255,.58); margin: 0; font-size: .88rem; }
.auc2-hero-stats { display: flex; gap: .62rem; flex-wrap: wrap; }
.auc2-hstat { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 9px; padding: .58rem .95rem; text-align: center; min-width: 68px; }
.auc2-hstat-num { font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1; }
.auc2-hstat-num.green  { color: var(--primary-light); }
.auc2-hstat-num.yellow { color: var(--secondary-color); }
.auc2-hstat-lbl { font-size: .6rem; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .3px; margin-top: .16rem; }
.auc2-filterbar { background: var(--bg-soft,#f5faf6); border-bottom: 3px solid rgba(var(--primary-rgb,26,95,42),.14); padding: .95rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 18px rgba(var(--primary-rgb,26,95,42),.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.auc2-filterbar .container { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.auc2-fbar-label { font-size: .8rem; font-weight: 800; color: var(--primary-dark); display: flex; align-items: center; gap: .38rem; text-transform: uppercase; letter-spacing: .4px; }
.auc2-fchips { display: flex; gap: .55rem; flex-wrap: wrap; }
.auc2-fchip { padding: .42rem 1.05rem; border-radius: 22px; font-size: .83rem; font-weight: 700; cursor: pointer; border: 2px solid rgba(var(--primary-rgb,26,95,42),.16); background: rgba(var(--primary-rgb,26,95,42),.07); color: var(--primary-dark); transition: all .25s; display: inline-flex; align-items: center; gap: .38rem; }
.auc2-fchip:hover { border-color: var(--primary-color); color: var(--text-on-primary,#fff); background: var(--primary-color); transform: translateY(-1px); }
.auc2-fchip.active { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-on-primary,#fff); border-color: var(--primary-color); box-shadow: 0 3px 12px rgba(var(--primary-rgb,26,95,42),.35); }
.auc2-fchip.active.green  { background: linear-gradient(135deg, var(--primary-light), var(--primary-color)); border-color: var(--primary-light); }
.auc2-fchip.active.yellow { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); border-color: var(--secondary-color); }
.auc2-fchip.active.grey   { background: linear-gradient(135deg, var(--text-muted,#aaa), #888); border-color: var(--text-muted,#aaa); }
.auc2-fcount { background: rgba(255,255,255,.22); color: inherit; border-radius: 11px; padding: 0 .42rem; font-size: .7rem; min-width: 17px; text-align: center; font-weight: 800; }
.auc2-fchip:not(.active) .auc2-fcount { background: rgba(var(--primary-rgb,26,95,42),.18); color: var(--primary-dark); }
.auc2-no-filter { text-align: center; padding: 2.8rem 1.5rem; background: var(--white,#fff); border-radius: 13px; box-shadow: 0 2px 10px rgba(var(--primary-rgb,26,95,42),.06); display: none; }
@media (max-width: 767px) {
    .auc2-card { border-radius: 14px; margin-bottom: 1.8rem; }
    .auc2-summary-pane { padding: 1.4rem 1.6rem; border-left: none; border-top: 2px solid rgba(var(--primary-rgb,26,95,42),.12); }
    .auc2-title { font-size: 1.15rem; margin-bottom: .9rem; }
    .auc2-info-grid { grid-template-columns: 1fr; gap: .55rem; }
    .auc2-cd-box { min-width: 45px; padding: .38rem .55rem; }
    .auc2-cd-num { font-size: .95rem; }
    .auc2-cd-lbl { font-size: .58rem; }
    .auc2-bid-btn { padding: .7rem 1.4rem; font-size: .88rem; }
    .auc2-filterbar { padding: .75rem 0; }
    .auc2-fchip { padding: .32rem .85rem; font-size: .78rem; }
    .auc2-page-icon { width: 52px; height: 52px; font-size: 1.7rem; }
    .auc2-page-text h2 { font-size: 1.3rem; }
    .auc2-hstat { padding: .46rem .75rem; min-width: 60px; }
    .auc2-hstat-num { font-size: 1.15rem; }
    .auc2-hstat-lbl { font-size: .56rem; }
}

/* ═══════════════════════════════════════════════════
   41. VERIFY PAGE (verify.php)
   ═══════════════════════════════════════════════════ */
.vp-outer { max-width: 560px; margin: 0 auto; }
.page-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-color); text-decoration: none; font-weight: 700; font-size: .8rem; margin-bottom: 14px; padding: 6px 14px; border-radius: 999px; background: rgba(var(--primary-rgb,26,95,42),.04); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); box-shadow: 0 1px 4px rgba(var(--primary-rgb,26,95,42),.08); transition: all .15s; }
.page-back:hover { background: rgba(var(--primary-rgb,26,95,42),.08); transform: translateX(-2px); }
.vp-page-header { text-align: center; margin-bottom: 18px; }
.vp-page-logo { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0; }
.vp-page-logo img { height: auto; width: auto; max-height: 64px; max-width: 190px; object-fit: contain; border-radius: 8px; }
.vp-page-logo-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-color); color: var(--text-on-primary,#fff); display: grid; place-items: center; font-size: 1.15rem; margin: 0 auto 8px; box-shadow: 0 3px 12px rgba(var(--primary-rgb,26,95,42),.2); }
body.auth-portal-page.verify-auth-page .vp-card { background: transparent !important; border-radius: 0 !important; border: none !important; padding: 0 !important; box-shadow: none !important; }
.vp-icon { width: 56px; height: 56px; margin: 0 auto 10px; border-radius: 50%; background: var(--primary-color); color: var(--text-on-primary,#fff); display: grid; place-items: center; font-size: 26px; box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.22); }
.vp-sub { text-align: center; color: var(--text-muted,#6b7280); font-size: .88rem; margin: 0 0 14px; line-height: 1.45; }
.vp-field { margin-bottom: 12px; }
.vp-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-light,#4b5563); margin-bottom: 6px; }
.vp-field input { width: 100%; padding: 11px 12px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); border-radius: 10px; font-size: 14px; font-family: inherit; transition: border-color .15s, box-shadow .15s; background: var(--white,#fff); }
.vp-field input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.12); }
.vp-field .hint { font-size: 10px; color: var(--text-muted,#9ca3af); margin-top: 3px; }
#code { font-family: 'Courier New',monospace; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
#cvv  { font-family: 'Courier New',monospace; letter-spacing: .35em; text-align: center; font-weight: 700; font-size: 16px; }
.vp-btn { width: 100%; padding: 11px; border: none; border-radius: 10px; background: var(--primary-color); color: var(--text-on-primary,#fff); font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 2px 10px rgba(var(--primary-rgb,26,95,42),.2); transition: background .15s, box-shadow .15s; }
.vp-btn:hover { background: var(--primary-dark); box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.26); }
.vp-result-ok { margin-bottom: 18px; animation: vp-pop .35s ease-out; }
@keyframes vp-pop { from { transform: scale(.98); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.vp-ok-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--primary-dark); font-weight: 700; font-size: 16px; }
.vp-ok-head i { font-size: 22px; }
.vp-result-fail { background: rgba(var(--primary-rgb,26,95,42),.06); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.2); border-radius: 14px; padding: 16px 18px; margin-bottom: 18px; color: var(--secondary-dark,#b91c1c); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.vp-result-fail i { font-size: 18px; }
.vp-help { font-size: 12px; color: var(--text-muted,#9ca3af); text-align: center; margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(var(--primary-rgb,26,95,42),.1); line-height: 1.65; max-width: 520px; margin-left: auto; margin-right: auto; }
.vp-help-inline { margin-top: 14px; padding-top: 12px; max-width: 100%; font-size: 11.5px; }
.vp-help b { color: var(--primary-color); }
.vp-mini-tab { border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); background: var(--white,#fff); color: var(--text-color,#111); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer; }
.vp-mini-tab.is-active { background: var(--primary-color); color: var(--text-on-primary,#fff); border-color: var(--primary-color); }
.verify-form-card { margin: 8px auto 0; border-radius: 14px; overflow: hidden; background: var(--white,#fff); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); box-shadow: 0 1px 2px rgba(var(--primary-rgb,26,95,42),.05), 0 14px 36px rgba(var(--primary-rgb,26,95,42),.08); }
.vp-card > .vp-result-ok + .verify-form-card { margin-top: 20px; }
.verify-form-card__head { background: var(--white,#fff); padding: 1.35rem 1.15rem 1rem; text-align: center; color: var(--text-color,#111); border-bottom: 1px solid rgba(var(--primary-rgb,26,95,42),.1); }
.verify-form-card__head .vp-icon { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%; background: var(--primary-color); color: var(--text-on-primary,#fff); box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.22); font-size: 1.35rem; }
.verify-form-card__head h1 { color: var(--text-color,#111) !important; font-size: 1.05rem !important; margin: 0 0 6px !important; letter-spacing: -.02em; font-weight: 700 !important; }
.verify-form-card__head .vp-sub { color: var(--text-muted,#9ca3af) !important; font-size: .78rem !important; margin: 0 !important; line-height: 1.55 !important; }
.verify-form-card__head .vp-sub b { color: var(--text-light,#6b7280); font-weight: 600; }
.vp-save-wrap { padding: 14px 18px; }
.vp-ok-head.compact { margin: 0; font-size: 14px; }
.vp-mini-shell { background: var(--bg-soft,#f5faf6); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); border-radius: 12px; padding: 14px 14px 16px; margin-bottom: 18px; }
.vp-mini-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.vp-field.tight { margin-bottom: 10px; }
.vp-field-input { width: 100%; padding: 11px 12px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); border-radius: 10px; font-family: inherit; font-size: 14px; background: var(--white,#fff); }
.vp-radio-row { display: flex; gap: 14px; font-size: 14px; color: var(--text-color,#111); }
.vp-radio-row label { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.vp-field.last { margin-bottom: 14px; }
.vp-btn.tight { padding: 11px; }
.vp-pane-hidden { display: none; }
.vp-hint-sm { font-size: 13px; }
.vp-inline-label { display: inline-flex; align-items: center; gap: 8px; text-transform: none; letter-spacing: 0; }
.vp-code-live { color: var(--secondary-dark,#b91c1c); font-weight: 600; }
.verify-form-card__body { padding: 18px 16px 20px; }
.verify-form-card__body .vp-field { margin-bottom: 14px; }
.verify-form-card__body .vp-field label { font-size: 11px; font-weight: 700; color: var(--text-light,#4b5563); letter-spacing: .02em; text-transform: none; }
.verify-form-card__body .vp-field input { padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(var(--primary-rgb,26,95,42),.18); font-size: 14px; background: var(--white,#fff); }
.verify-form-card__body .vp-field input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.14); }
.verify-form-card__body .vp-btn { padding: 11px; border-radius: 10px; font-size: 14px; margin-top: 4px; }
.vp-logo-hide { display: none !important; }
.vp-logo-fallback-hidden { display: none; }
.verify-ico-primary { color: var(--primary-color) !important; }
@media (max-width: 768px) { .vp-btn { padding: 10px; } }

/* ═══════════════════════════════════════════════════
   42. MEMBER SURVEY PAGE (member-survey.php)
   ═══════════════════════════════════════════════════ */
#surveyModal { display: block; position: static; background: transparent; }
#surveyModal .modal-dialog { max-width: 860px; margin: 0 auto 2rem; }
#surveyModal .modal-content { border: 0; border-radius: 14px; box-shadow: 0 10px 30px rgba(var(--primary-rgb,26,95,42),.1); }
#surveyModal .btn-close { display: none; }

/* ═══════════════════════════════════════════════════
   43. APPLICATION TRACKER PAGE (application-tracker.php)
   ═══════════════════════════════════════════════════ */
/* Notification chips inside status history */
.trkc-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.trkc-chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 600; line-height: 1.4; border: 1px solid transparent; }
.trkc-chip i { font-size: .7rem; }
.trkc-ok   { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-dark); border-color: rgba(var(--primary-rgb,26,95,42),.2); }
.trkc-err  { background: rgba(var(--primary-rgb,26,95,42),.06); color: var(--secondary-dark,#991b1b); border-color: rgba(var(--primary-rgb,26,95,42),.12); }
.trkc-skip { background: var(--bg-soft,#f3f4f6); color: var(--text-color,#374151); border-color: rgba(var(--primary-rgb,26,95,42),.1); }
/* Utility color aliases */
.bg-teal   { background-color: var(--accent-color) !important; }
.bg-purple { background-color: var(--secondary-color) !important; }
.bg-pink   { background-color: var(--primary-dark) !important; }
.text-teal { color: var(--accent-color) !important; }
.text-purple { color: var(--secondary-color) !important; }
.text-pink { color: var(--primary-dark) !important; }
.border-teal   { border-color: var(--accent-color) !important; }
.border-purple { border-color: var(--secondary-color) !important; }
.border-pink   { border-color: var(--primary-dark) !important; }
.tracker-status { display: inline-flex; align-items: center; gap: .3rem; font-weight: 700; }
.tracker-status-pending { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--secondary-dark,#b45309) !important; }
.tracker-status-info    { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--accent-dark,#0369a1) !important; }
.tracker-status-muted   { background: rgba(var(--primary-rgb,26,95,42),.07); color: var(--text-color,#374151) !important; }
.tracker-status-success { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-dark) !important; }
.tracker-status-danger  { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--secondary-dark,#991b1b) !important; }
.tracker-ico-info    { color: var(--accent-color) !important; }
.tracker-ico-warn    { color: var(--secondary-color) !important; }
.tracker-ico-ok      { color: var(--primary-color) !important; }
.tracker-ico-primary { color: var(--primary-color) !important; }
.tracker-verify-card { background: rgba(var(--primary-rgb,26,95,42),.06); border: 1px solid rgba(var(--primary-rgb,26,95,42),.16); }
.tracker-title-warn  { color: var(--secondary-dark,#b45309); }
.tracker-amt-ok      { color: var(--primary-color) !important; }
.tracker-amt-info    { color: var(--accent-dark,#0369a1) !important; }
.tracker-amt-danger  { color: var(--secondary-dark,#991b1b) !important; }
.tracker-text-muted  { color: var(--text-muted,#6c757d) !important; }
.tracker-link-warn   { color: var(--secondary-dark,#b45309) !important; }
/* Detail info grid */
.di-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 8px; background: rgba(var(--primary-rgb,26,95,42),.06); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); border-radius: 10px; padding: 12px 14px; }
.di-item { display: flex; flex-direction: column; min-width: 0; }
.di-item-wide { grid-column: span 2; }
.di-item-full { grid-column: 1 / -1; }
.di-label { font-size: .68rem; font-weight: 700; color: var(--text-muted,#6c757d); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.di-label i { margin-right: 3px; font-size: .65rem; }
.di-value { font-size: .85rem; color: var(--text-color,#212529); font-weight: 500; line-height: 1.35; word-break: break-word; }
@media (max-width: 576px) { .di-grid { grid-template-columns: 1fr 1fr; } .di-item-wide { grid-column: 1 / -1; } }
/* Hero */
.tracker-hero-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 42%, var(--primary-light) 100%); padding: 60px 0 50px; position: relative; overflow: hidden; }
.tracker-hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb,26,95,42),.14) 0%, transparent 40%), radial-gradient(circle at 60% 80%, rgba(255,255,255,.03) 0%, transparent 35%); pointer-events: none; }
.tracker-hero-content { position: relative; z-index: 2; }
.tracker-hero-icon-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tracker-hero-icon-ring { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--text-on-primary,#fff); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); position: relative; z-index: 2; box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.tracker-hero-ping { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(var(--primary-rgb,26,95,42),.38); animation: tracker-ping 2s ease-out infinite; }
@keyframes tracker-ping { 0% { transform: scale(1); opacity: .8; } 80%,100% { transform: scale(1.6); opacity: 0; } }
.tracker-hero-title { font-size: 2.1rem; font-weight: 800; color: var(--text-on-primary,#fff); margin-bottom: 10px; letter-spacing: -.3px; }
.tracker-hero-sub { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
.tracker-breadcrumb { background: rgba(255,255,255,.1); border-radius: 20px; padding: 6px 16px; display: inline-flex; }
.tracker-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.8); }
.tracker-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.55); }
.tracker-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
/* Type pills */
.tracker-types-strip { text-align: center; }
.tracker-types-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted,#94a3b8); margin-bottom: 12px; }
.tracker-type-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.type-pill { display: flex; align-items: center; gap: 8px; background: var(--white,#fff); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.08); border-radius: 50px; padding: 7px 14px 7px 8px; cursor: default; transition: all .22s; box-shadow: 0 1px 4px rgba(var(--primary-rgb,26,95,42),.05); }
.type-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(var(--primary-rgb,26,95,42),.1); border-color: var(--primary-color); }
.type-pill-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--pill-color,var(--primary-color)); color: var(--text-on-primary,#fff); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.type-pill span { font-size: .82rem; font-weight: 600; color: var(--text-color,#374151); white-space: nowrap; }
/* Search card */
.tracker-search-card { border: none; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 40px rgba(var(--primary-rgb,26,95,42),.14) !important; }
.tracker-search-header { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); padding: 22px 28px; display: flex; align-items: center; gap: 16px; color: var(--text-on-primary,#fff); }
.tracker-search-header-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.tracker-search-card .card-body { padding: 28px; background: var(--white,#fff); }
.tracker-search-card .form-control, .tracker-search-card .form-select { border-radius: 10px; border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.18); padding: 10px 14px; transition: all .2s; }
.tracker-search-card .form-control:focus, .tracker-search-card .form-select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.1); }
.tracker-search-card .form-control-lg { font-size: 1.05rem; padding: 13px 16px; }
.btn-tracker-search { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary,#fff); border: none; border-radius: 12px; font-weight: 700; letter-spacing: .3px; box-shadow: 0 4px 15px rgba(var(--primary-rgb,26,95,42),.3); transition: all .25s; }
.btn-tracker-search:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary,#fff); transform: translateY(-1px); box-shadow: 0 7px 20px rgba(var(--primary-rgb,26,95,42),.4); }
.btn-tracker-search:active { transform: translateY(0); }
.tracker-verify-rule { background: rgba(var(--primary-rgb,26,95,42),.06); border: 1px dashed rgba(var(--primary-rgb,26,95,42),.3); }
.public-id-card-cta { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary,#fff); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; box-shadow: 0 6px 20px rgba(var(--primary-rgb,26,95,42),.25); }
.public-id-card-icon-wrap { width: 54px; height: 54px; background: rgba(255,255,255,.18); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.public-id-card-icon { font-size: 1.5rem; }
.public-id-card-content { flex: 1; min-width: 200px; }
.public-id-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.public-id-card-text { font-size: .85rem; opacity: .92; }
.public-id-card-btn { background: var(--white,#fff); color: var(--primary-color); text-decoration: none; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
/* Result cards */
.result-card-premium { background: var(--white,#fff); border-radius: 16px; box-shadow: 0 2px 16px rgba(var(--primary-rgb,26,95,42),.07); overflow: hidden; transition: all .28s; position: relative; border: 1px solid rgba(var(--primary-rgb,26,95,42),.06); }
.result-card-premium:hover { box-shadow: 0 8px 32px rgba(var(--primary-rgb,26,95,42),.13); transform: translateY(-2px); }
.result-card-premium[data-tab-group="done"] { opacity: .82; filter: grayscale(.15); }
.rcp-accent { height: 5px; width: 100%; }
.rcp-accent-primary, .rcp-accent-success, .rcp-accent-info, .rcp-accent-warning, .rcp-accent-danger, .rcp-accent-secondary, .rcp-accent-teal, .rcp-accent-purple, .rcp-accent-pink { background: linear-gradient(90deg, var(--primary-color), var(--primary-light)); }
.rcp-body { padding: 20px 22px 22px; }
.rcp-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.rcp-icon-wrap { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; color: var(--text-on-primary,#fff); }
.rcp-icon-primary, .rcp-icon-success, .rcp-icon-info, .rcp-icon-warning, .rcp-icon-danger, .rcp-icon-secondary, .rcp-icon-teal, .rcp-icon-purple, .rcp-icon-pink { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); }
.rcp-meta { flex: 1; min-width: 0; }
.rcp-type-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; color: var(--text-on-primary,#fff); letter-spacing: .2px; }
.rcp-badge-primary, .rcp-badge-success, .rcp-badge-info, .rcp-badge-warning, .rcp-badge-danger, .rcp-badge-secondary, .rcp-badge-teal, .rcp-badge-purple, .rcp-badge-pink { background: var(--primary-color); color: var(--text-on-primary,#fff); }
.rcp-status-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; letter-spacing: .2px; }
.rcp-status-glow.tracker-status-success { box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.18); }
.rcp-status-glow.tracker-status-pending { box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.2); }
.rcp-status-glow.tracker-status-danger  { box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.18); }
.rcp-status-glow.tracker-status-info    { box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.18); }
.rcp-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.rcp-chip { display: inline-flex; align-items: center; gap: 5px; background: rgba(var(--primary-rgb,26,95,42),.06); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); border-radius: 6px; padding: 3px 9px; font-size: .76rem; color: var(--text-light,#475569); }
.rcp-chip i { font-size: .7rem; color: var(--text-muted,#94a3b8); }
.rcp-timeline-wrap { border-top: 1px solid rgba(var(--primary-rgb,26,95,42),.1); padding-top: 16px; margin-top: 4px; }
/* Status timeline */
.status-timeline { padding: 0 5px; }
.timeline-line { position: absolute; top: 18px; left: 12%; right: 12%; height: 3px; background: linear-gradient(90deg, rgba(var(--primary-rgb,26,95,42),.14), rgba(var(--primary-rgb,26,95,42),.22)); z-index: 0; border-radius: 3px; }
.timeline-step { position: relative; z-index: 1; text-align: center; flex: 1; }
.timeline-step .step-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--text-muted,#adb5bd); display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; font-size: 14px; border: 3px solid var(--white,#fff); box-shadow: 0 1px 4px rgba(var(--primary-rgb,26,95,42),.1); transition: all .3s; }
.timeline-step.active .step-icon { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary,#fff); box-shadow: 0 3px 12px rgba(var(--primary-rgb,26,95,42),.35); }
.timeline-step small { font-size: 10.5px; font-weight: 600; color: var(--text-muted,#94a3b8); display: block; margin-top: 2px; }
.timeline-step.active small { color: var(--primary-color); }
.admin-response-block { background: rgba(var(--primary-rgb,26,95,42),.06); border: 1px solid rgba(var(--primary-rgb,26,95,42),.16); border-radius: 10px; padding: 12px 14px; margin-top: 12px; }
.admin-response-block p { margin-bottom: 0; color: var(--text-color,#374151); }
/* Tracker tabs */
.tracker-tabs-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; border-bottom: 2px solid rgba(var(--primary-rgb,26,95,42),.16); padding-bottom: 0; margin-bottom: 20px; }
.tracker-tab-btn { background: none; border: none; border-bottom: 3px solid transparent; padding: 10px 20px; font-size: .92rem; font-weight: 700; color: var(--text-muted,#64748b); cursor: pointer; display: flex; align-items: center; gap: 8px; margin-bottom: -2px; border-radius: 8px 8px 0 0; transition: all .2s; }
.tracker-tab-btn:hover { color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.08); }
.tracker-tab-btn.active { color: var(--primary-color); border-bottom-color: var(--primary-color); background: rgba(var(--primary-rgb,26,95,42),.1); }
.tab-count-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; border-radius: 11px; font-size: .72rem; font-weight: 800; padding: 0 6px; }
.tab-badge-active { background: var(--primary-color); color: var(--text-on-primary,#fff); }
.tab-badge-done  { background: var(--text-muted,#6c757d); color: var(--white,#fff); }
.tracker-tab-empty-msg { flex: 1; text-align: center; color: var(--text-muted,#999); font-size: .9rem; padding: 8px; }
.result-card[data-tab-group="done"] { border-left-style: dashed !important; opacity: .88; }
/* Help strip */
.tracker-help-strip { border-top: 2px solid rgba(var(--primary-rgb,26,95,42),.1); padding-top: 30px; }
.tracker-help-card { display: flex; align-items: flex-start; gap: 14px; background: var(--white,#fff); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.16); border-radius: 14px; padding: 16px 18px; height: 100%; transition: all .22s; }
.tracker-help-card:hover { border-color: var(--primary-color); box-shadow: 0 4px 16px rgba(var(--primary-rgb,26,95,42),.1); transform: translateY(-2px); }
.thc-icon { width: 44px; height: 44px; border-radius: 12px; color: var(--text-on-primary,#fff); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.thc-icon-primary { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); }
.thc-icon-success { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }
.thc-icon-warn    { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.alert-warning.tracker-alert { border-radius: 12px; border: none; background: rgba(var(--primary-rgb,26,95,42),.06); border-left: 4px solid var(--secondary-color); }
.alert-success.tracker-alert { border-radius: 12px; border: none; background: var(--bg-soft,#f5faf6); border-left: 4px solid var(--primary-color); }
.rcp-details-toggle { text-align: right; }
.rcp-toggle-btn { font-size: .8rem; padding: 4px 12px; border-radius: 8px; font-weight: 600; transition: all .2s; }
.rcp-toggle-btn[aria-expanded="true"] i, .rcp-toggle-btn i { transition: transform .2s; display: inline-block; }
.rcp-toggle-btn[aria-expanded="true"] i { transform: rotate(180deg); }
@media (max-width: 768px) {
    .tracker-hero-title { font-size: 1.5rem; }
    .tracker-hero-icon-ring { width: 64px; height: 64px; font-size: 1.7rem; }
    .type-pill span { font-size: .76rem; }
    .type-pill { padding: 5px 10px 5px 6px; }
    .type-pill-icon { width: 26px; height: 26px; font-size: 11px; }
    .rcp-icon-wrap { width: 44px; height: 44px; font-size: 1.1rem; }
    .timeline-step .step-icon { width: 30px; height: 30px; font-size: 11px; }
    .timeline-step small { font-size: 9.5px; }
    .rcp-body { padding: 14px 14px 16px; }
    .tracker-search-card .card-body { padding: 18px; }
    .tracker-search-header { padding: 16px 18px; }
}
@media (max-width: 480px) { .tracker-type-pills { gap: 6px; } .type-pill { padding: 4px 8px 4px 5px; gap: 5px; } }

/* ═══════════════════════════════════════════════════
   44. ONLINE KYC PAGE (online-kyc.php)
   ═══════════════════════════════════════════════════ */
.kyc-form-section .form-control, .kyc-form-section .form-select { min-height: 40px; padding: .4rem .72rem; font-size: .92rem; border-radius: 10px; line-height: 1.3; }
.kyc-form-section .form-control.form-control-sm, .kyc-form-section .form-select.form-select-sm { min-height: 34px; padding: .3rem .58rem; font-size: .84rem; border-radius: 8px; }
.kyc-form-section .input-group > .form-control, .kyc-form-section .input-group > .form-select { min-height: 40px; }
.kyc-form-section .input-group-text { min-height: 40px; padding: .4rem .72rem; border-radius: 10px; }
.kyc-form-section textarea.form-control { min-height: 84px; }
.kym-wizard-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 14px 10px;
    background: rgba(var(--primary-rgb,26,95,42),.04);
    border: 1px solid rgba(var(--primary-rgb,26,95,42),.12);
    border-radius: 12px;
    margin-bottom: 4px;
}
.kym-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.18);
    background: var(--white,#fff);
    color: var(--text-color,#374151);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: .76rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kym-step-btn:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb,26,95,42),.07);
    color: var(--primary-dark);
}
.kym-step-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb,26,95,42),.28);
}
.kym-step-btn .kym-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb,26,95,42),.12);
    color: var(--primary-dark);
    font-size: .68rem;
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1;
}
.kym-step-btn.active .kym-step-num {
    background: rgba(255,255,255,.25);
    color: #fff;
}
.kym-step-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 130px;
    display: block;
}
@media (max-width: 576px) {
    .kym-wizard-nav { padding: 10px; gap: 5px; }
    .kym-step-btn { font-size: .72rem; padding: 4px 9px; }
    .kym-step-label { max-width: 100px; }
}
.kym-wizard-hint { font-size: .82rem; color: var(--text-light,#4b5563); background: var(--bg-soft,#f8fafc); border: 1px dashed rgba(var(--primary-rgb,26,95,42),.2); border-radius: 8px; padding: 8px 10px; }
.kym-subsec-title { margin: 10px 0; padding: 8px 10px; background: rgba(var(--primary-rgb,26,95,42),.07); border-left: 4px solid var(--primary-color); border-radius: 6px; color: var(--primary-dark); font-weight: 700; font-size: .87rem; display: flex; align-items: center; justify-content: space-between; }
.kym-subsec-divider { border-top: 2px dashed rgba(var(--primary-rgb,26,95,42),.18); margin: 6px 0 10px; }
.kym-subsec-title .kym-acc-icon { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(var(--primary-rgb,26,95,42),.14); color: var(--primary-dark); font-weight: 800; line-height: 1; }
.kym-subsec-title.kym-subsec-open { background: rgba(var(--primary-rgb,26,95,42),.12); }
.kym-acc-badge { margin-left: 8px; font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.kym-acc-badge.ok      { background: rgba(var(--primary-rgb,26,95,42),.12); color: var(--primary-dark); }
.kym-acc-badge.pending { background: rgba(var(--primary-rgb,26,95,42),.07); color: var(--secondary-dark,#92400e); }
.highlight-widget { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important; }
.highlight-widget .widget-icon, .highlight-widget h5 { color: var(--white,#fff) !important; }
@media (max-width: 768px) {
    #toggleQuickKycBtn { width: 100%; margin-left: 0 !important; }
    #publicQuickKycPanel .form-section { padding: 12px; }
    #kymWizardControls { gap: 8px; }
    #kymWizardControls .btn { flex: 1 1 calc(50% - 8px); }
}

/* ═══════════════════════════════════════════════════
   50. PROGRAM ATTENDANCE VERIFY (program-attendance-verify.php)
   ═══════════════════════════════════════════════════ */
.pav-shell { background: radial-gradient(ellipse 85% 55% at 12% -8%, rgba(var(--primary-rgb,26,135,84),.10) 0%, transparent 52%), radial-gradient(ellipse 72% 48% at 100% 5%, rgba(59,130,246,.09) 0%, transparent 48%), linear-gradient(165deg, var(--bg-soft,#f0fdf4) 0%, #ecfdf5 42%, #f0f9ff 100%); padding: 22px 0 34px; min-height: calc(100dvh - 64px); display: flex; align-items: center; }
.pav-shell.section-padding { padding-top: 22px !important; padding-bottom: 34px !important; }
.pav-shell .container { max-width: 560px; }
.pav-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pav-nav-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.14); cursor: pointer; transition: all .15s; background: var(--white,#fff); color: var(--text-color,#374151); box-shadow: 0 1px 3px rgba(0,0,0,.07); }
.pav-nav-pill:hover { background: var(--bg-soft,#f8fafc); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.pav-nav-pill.member  { background: rgba(var(--primary-rgb,26,95,42),.1); color: var(--primary-dark); border-color: rgba(var(--primary-rgb,26,95,42),.3); }
.pav-nav-pill.program { background: #dbeafe; color: #1d4ed8; border-color: #93c5fd; }
.pav-nav-pill.att     { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary,#fff); border-color: transparent; box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.3); }
.pav-card { border-radius: 20px; box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 24px 50px rgba(var(--primary-rgb,26,95,42),.12); overflow: hidden; background: var(--white,#fff); border: 1px solid rgba(226,232,240,.9); }
.pav-card-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); padding: 20px 18px 18px; text-align: center; color: var(--text-on-primary,#fff); }
.pav-card-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 24px; margin: 0 auto 12px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.pav-card-title { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 8px; }
.pav-card-sub { font-size: .8rem; opacity: .88; margin: 0; line-height: 1.55; }
.pav-card-body { padding: 18px 16px 20px; }
.pav-field { margin-bottom: 14px; }
.pav-field label { display: block; font-size: 11.5px; font-weight: 700; color: var(--text-muted,#6b7280); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; }
.pav-field-input { width: 100%; min-height: 44px; padding: 11px 14px; border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.18); border-radius: 10px; font-size: 14px; font-family: inherit; transition: border-color .15s, box-shadow .15s; background: var(--white,#fff); color: var(--text-color,#111827); }
.pav-field-input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.14); }
.pav-field-input[name="cvv"]  { font-family: 'Courier New',monospace; letter-spacing: .35em; text-align: center; font-weight: 700; font-size: 16px; }
.pav-field-input[name="code"] { font-family: 'Courier New',monospace; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.pav-program-qr { display: none; margin-top: 10px; background: var(--bg-soft,#f8fafc); border: 1px solid rgba(var(--primary-rgb,26,95,42),.14); border-radius: 10px; padding: 10px 12px; }
.pav-program-qr.is-visible { display: flex; align-items: center; gap: 12px; }
.pav-program-qr-img { width: 72px; height: 72px; border-radius: 8px; background: var(--white,#fff); border: 1px solid rgba(var(--primary-rgb,26,95,42),.16); object-fit: contain; flex-shrink: 0; }
.pav-program-qr-meta { min-width: 0; }
.pav-program-qr-title { font-size: .79rem; font-weight: 700; color: var(--text-color,#334155); line-height: 1.35; }
.pav-program-qr-link { display: inline-block; margin-top: 4px; font-size: .73rem; color: var(--primary-dark); font-weight: 700; text-decoration: none; }
.pav-program-qr-empty { font-size: .74rem; color: var(--text-muted,#64748b); margin-top: 6px; }
.pav-btn { width: 100%; min-height: 44px; padding: 11px 14px; border: none; border-radius: 10px; background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary,#fff); font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 9px; box-shadow: 0 4px 16px rgba(var(--primary-rgb,26,95,42),.32); transition: all .15s; letter-spacing: .02em; }
.pav-btn:hover { filter: brightness(1.07); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(var(--primary-rgb,26,95,42),.38); }
.pav-btn:active { transform: translateY(0); }
.pav-result { border-radius: 16px; padding: 0; margin-top: 20px; animation: pavPop .4s cubic-bezier(.22,.61,.36,1); }
@keyframes pavPop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.pav-result-ok   { background: rgba(var(--primary-rgb,26,95,42),.06); border: 1.5px solid rgba(var(--primary-rgb,26,95,42),.3); padding: 20px; }
.pav-result-warn { background: #fffbeb; border: 1.5px solid #fcd34d; padding: 20px; }
.pav-result-fail { background: #fef2f2; border: 1.5px solid #fca5a5; padding: 20px; }
.pav-result-head { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.pav-result-head.ok   { color: var(--primary-dark); }
.pav-result-head.warn { color: #92400e; }
.pav-result-head.fail { color: var(--secondary-dark,#991b1b); }
.pav-result-head i { font-size: 20px; }
.pav-member-card { display: flex; align-items: center; gap: 14px; background: var(--white,#fff); border-radius: 12px; padding: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.pav-member-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(var(--primary-rgb,26,95,42),.3); flex-shrink: 0; background: var(--bg-soft,#e5e7eb); }
.pav-member-photo-fallback { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); display: grid; place-items: center; font-size: 22px; color: var(--text-on-primary,#fff); flex-shrink: 0; }
.pav-member-info { flex: 1; min-width: 0; }
.pav-member-name { font-size: 1.05rem; font-weight: 800; color: var(--text-color,#111827); margin: 0 0 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pav-member-id { font-size: .8rem; color: var(--text-muted,#6b7280); font-weight: 600; font-family: 'Courier New',monospace; }
.pav-result-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-top: 6px; }
.pav-result-badge.saved   { background: rgba(var(--primary-rgb,26,95,42),.12); color: var(--primary-dark); }
.pav-result-badge.already { background: #fef3c7; color: #92400e; }
.pav-alert { border-radius: 10px; padding: 11px 14px; font-size: 13px; font-weight: 600; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.pav-alert.error { background: #fef2f2; border: 1.5px solid #fca5a5; color: var(--secondary-dark,#991b1b); }
.pav-alert i { font-size: 14px; margin-top: 2px; }
@media (max-width: 640px) {
    .pav-shell { align-items: flex-start; min-height: 0; }
    .pav-card-header { padding: 18px 16px 16px; }
    .pav-card-body { padding: 20px 16px; }
    .pav-card-title { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════════
   51. APPOINTMENT PAGE (appointment.php)
   ═══════════════════════════════════════════════════ */
.appt-steps-card { background: linear-gradient(160deg, var(--primary-dark), var(--primary-color)); color: var(--text-on-primary, white); border-radius: 16px; }
.appt-step-icon-wrap { width: 36px; height: 36px; background: rgba(255,255,255,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.appt-step-divider { border-color: rgba(255,255,255,.25); margin: 20px 0 16px; }
.appt-step-help { font-size: 12.5px; opacity: .85; }
.appt-step-link { color: color-mix(in srgb, var(--secondary-color) 45%, white); text-decoration: underline; }
.appt-form-card { border-radius: 16px; }

/* ═══════════════════════════════════════════════════
   52. ATTEND PAGE (attend.php) — standalone, no Bootstrap
   ═══════════════════════════════════════════════════ */
/* attend.php body layout */
body:has(.card > .card-top) { font-family: var(--font-primary,'Mukta','Noto Sans Devanagari',sans-serif); background: linear-gradient(135deg, var(--bg-soft, #f5faf6), rgba(var(--primary-rgb,26,95,42),.08)); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; font-size: 15px; line-height: 1.6; }
.card:has(.card-top) { background: var(--white, #fff); border-radius: 18px; box-shadow: 0 8px 40px rgba(var(--primary-rgb,26,95,42), .16); max-width: 480px; width: 100%; overflow: hidden; border: 1px solid rgba(var(--primary-rgb,26,95,42),.1); }
.card-top { background: var(--primary-color); color: var(--text-on-primary, white); padding: 24px 28px; text-align: center; }
.card-top .prog-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.22); display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 12px; }
.card-top h1 { font-size: 20px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.card-top .meta { font-size: 13px; opacity: .9; margin-top: 8px; line-height: 1.5; }
.card-body { padding: 28px; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(var(--primary-rgb,26,95,42), .10); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--primary-color); margin: 0 auto 16px; border: 3px solid rgba(var(--primary-rgb,26,95,42), .22); }
.error-box { background: rgba(var(--secondary-rgb,195,57,43), .08); border: 1px solid rgba(var(--secondary-rgb,195,57,43), .2); border-radius: 12px; padding: 16px; color: var(--secondary-dark, var(--secondary-color)); font-size: 14px; margin-bottom: 16px; display: flex; gap: 10px; line-height: 1.5; }
.info-box { background: rgba(30,64,175, .08); border: 1px solid rgba(30,64,175, .2); border-radius: 12px; padding: 14px 16px; font-size: 14px; color: #1e40af; margin-bottom: 16px; display: flex; gap: 10px; line-height: 1.5; }
.info-box-ok { background: rgba(var(--primary-rgb,26,95,42), .08); border-color: rgba(var(--primary-rgb,26,95,42), .2); color: var(--primary-dark, var(--primary-color)); }
.btn-primary { width: 100%; padding: 14px; background: var(--primary-color); color: var(--text-on-primary, white); border: none; border-radius: 12px; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: opacity .2s, transform .2s; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-secondary { width: 100%; padding: 12px; background: white; color: var(--primary-color); border: 2px solid var(--primary-color); border-radius: 12px; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background .2s; }
.btn-secondary:hover { background: rgba(var(--primary-rgb,26,95,42), .06); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-color); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; min-height: 48px; border: 1.5px solid rgba(var(--primary-rgb,26,95,42), .2); border-radius: 12px; font-family: inherit; font-size: 15px; background: rgba(var(--primary-rgb,26,95,42), .03); transition: border-color .2s; }
.form-control:focus { outline: none; border-color: var(--primary-color); background: white; box-shadow: 0 0 0 3px rgba(var(--primary-rgb,26,95,42),.1); }
.divider { text-align: center; font-size: 13px; color: var(--text-muted, #9ca3af); margin: 18px 0; position: relative; }
.divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(var(--primary-rgb,26,95,42), .14); z-index: 0; }
.divider span { background: var(--white, #fff); padding: 0 12px; position: relative; z-index: 1; }
.footer-link { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-muted, #9ca3af); }
.footer-link a { color: var(--primary-color); text-decoration: none; font-weight: 600; }
.meta-icon-gap { margin-right: 6px; }
.msg-center { text-align: center; padding: 12px 0; }
.msg-title-warn { font-size: 20px; font-weight: 800; color: var(--secondary-dark, var(--secondary-color)); margin-bottom: 10px; }
.msg-title-ok { font-size: 22px; font-weight: 800; color: var(--primary-dark, var(--primary-color)); margin-bottom: 8px; }
.msg-title-info { font-size: 20px; font-weight: 800; color: #1565c0; margin-bottom: 8px; }
.msg-sub { font-size: 15px; color: var(--text-muted, #9ca3af); margin-bottom: 14px; line-height: 1.6; }
.msg-sub-sm { font-size: 14px; color: var(--text-muted, #9ca3af); line-height: 1.5; }
.msg-box-warn { background: rgba(var(--secondary-rgb,195,57,43), .08); border: 1px solid rgba(var(--secondary-rgb,195,57,43), .2); border-radius: 12px; padding: 14px; font-size: 14px; color: var(--secondary-dark, var(--secondary-color)); text-align: left; line-height: 1.6; }
.msg-box-ok { background: rgba(var(--primary-rgb,26,95,42), .08); border: 1px solid rgba(var(--primary-rgb,26,95,42), .2); border-radius: 12px; padding: 14px; font-size: 14px; color: var(--primary-dark, var(--primary-color)); line-height: 1.6; }
.success-icon-warn { background: rgba(var(--secondary-rgb,195,57,43), .08); border-color: rgba(var(--secondary-rgb,195,57,43), .2); }
.success-icon-warn i { color: var(--secondary-dark, var(--secondary-color)); }
.success-icon-info { background: rgba(21,101,192, .08); border-color: rgba(21,101,192, .2); }
.success-icon-info i { color: #1565c0; }
.icon-shrink { flex-shrink: 0; }
.manual-form-hide { display: none; }
.btn-inline-primary { text-decoration: none; display: inline-flex; width: auto; padding: 12px 18px; font-size: 15px; }
.mb-10 { margin-bottom: 12px; }
.text-left { text-align: left; line-height: 1.6; }
.text-soft { opacity: .95; font-size: .92em; }
.text-soft-2 { opacity: .9; font-size: .9em; }
.req-icon { margin-right: 8px; }
.red-star { color: var(--secondary-color); }

/* ═══════════════════════════════════════════════════
   53. AWARDS PAGE (awards.php)
   ═══════════════════════════════════════════════════ */
.award-card.clickable { cursor: pointer; }
.award-card.clickable:hover { transform: translateY(-8px); }
.award-link { display: inline-block; margin-top: 10px; color: var(--primary-color); font-weight: 500; text-decoration: none; }
.award-link:hover { color: var(--primary-dark); }
.award-detail-card { background: var(--white, #fff); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.award-detail-image { width: 100%; max-height: 400px; overflow: hidden; }
.award-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.award-detail-content { padding: 30px; }
.award-detail-content h2 { color: var(--primary-color); margin-bottom: 15px; }
.award-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color, #e5e7eb); }
.award-meta span { display: flex; align-items: center; gap: 8px; color: var(--text-light, #777); }
.award-meta i { color: var(--secondary-color); }
.award-description { line-height: 1.8; color: var(--text-color, #333); }

/* ═══════════════════════════════════════════════════
   54. COMMITTEES PAGE (committees.php)
   ═══════════════════════════════════════════════════ */
.committee-filter-wrapper { background: var(--bg-soft, #f5faf6); padding: 15px 20px; border-radius: 10px; }
.committee-filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.committee-filter-tab { padding: 8px 16px; background: var(--white, #fff); border: 1px solid var(--border-color, #e5e7eb); border-radius: 25px; color: var(--text-color); font-size: 14px; transition: all .3s; text-decoration: none; }
.committee-filter-tab:hover, .committee-filter-tab.active { background: var(--primary-color); border-color: var(--primary-color); color: var(--white, #fff); }
.committee-block { background: var(--white, #fff); padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.committee-block.past { opacity: .9; }
.committee-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--primary-color); }
.committee-header h3 { color: var(--primary-color); margin: 0; font-size: 1.5rem; }
.committee-header h3 i { margin-right: 10px; }
.tenure-badge { background: var(--primary-color); color: var(--white, #fff); padding: 8px 15px; border-radius: 25px; font-size: 13px; }
.tenure-badge.past { background: var(--text-light, #9ca3af); }
.tenure-badge i { margin-right: 5px; }
.committee-member-card { background: var(--white, #fff); border-radius: 12px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,.1); text-align: center; transition: all .3s; height: 100%; }
.committee-member-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.committee-member-card.featured { border: 2px solid var(--primary-color); }
.committee-member-card.featured .committee-member-position { background: var(--primary-color); color: var(--white, #fff); }
.committee-member-photo { position: relative; padding-top: 100%; overflow: hidden; background: var(--bg-soft, #f5faf6); }
.committee-member-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.committee-member-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--border-color, #d1d5db); }
.committee-member-info { padding: 15px; }
.committee-member-info h5 { margin-bottom: 5px; color: var(--text-color); font-size: 1rem; }
.committee-member-info h6 { margin-bottom: 3px; color: var(--text-color); font-size: .85rem; }
.committee-member-name-en { font-size: .8rem; color: var(--text-light, #9ca3af); margin-bottom: 8px; }
.committee-member-position { display: inline-block; background: var(--bg-soft, #f5faf6); padding: 4px 12px; border-radius: 15px; font-size: .75rem; color: var(--primary-color); }
.committee-member-position.small { font-size: .7rem; padding: 3px 8px; }
.committee-member-contact { margin-top: 12px; display: flex; justify-content: center; gap: 10px; }
.committee-member-contact a { width: 32px; height: 32px; background: var(--bg-soft, #f5faf6); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.committee-member-contact a:hover { background: var(--primary-color); color: var(--white, #fff); }
@media (max-width: 767px) {
    .committee-header { flex-direction: column; text-align: center; }
    .committee-filter-tabs { justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   55. ELECTION INFORMATION (election-information.php)
   ═══════════════════════════════════════════════════ */
.election-arch-link:hover { border-color: var(--primary-color) !important; background: rgba(var(--primary-rgb,26,95,42), .04); }
.election-arch-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.election-arch-title { color: var(--text-color, #1f2937); }
.election-arch-tenure { background: var(--primary-color); color: var(--text-on-primary, #fff); border-radius: 999px; padding: .22rem .58rem; font-size: .72rem; font-weight: 600; white-space: nowrap; }
.election-samiti-tabs .nav-link { color: var(--primary-color); font-weight: 600; border: 1px solid rgba(var(--primary-rgb,26,95,42), .2); margin: 0 .25rem; }
.election-samiti-tabs .nav-link.active { background: var(--primary-color); color: var(--text-on-primary, #fff); }
.election-pos-title { font-weight: 700; color: var(--primary-color); border-left: 4px solid var(--primary-color); padding-left: .6rem; }
@media (max-width: 575px) { .election-arch-tenure { width: 100%; text-align: left; } }

/* ═══════════════════════════════════════════════════
   56. EMI CALCULATOR (emi-calculator.php)
   ═══════════════════════════════════════════════════ */
.emi-range { accent-color: var(--primary-color); }
.loan-type-btn.active { background: var(--primary-color); color: var(--text-on-primary, #fff); border-color: var(--primary-color); }
#scheduleCard .table th, #scheduleCard .table td { white-space: nowrap; }
.year-row { background: rgba(var(--primary-rgb,26,95,42), .07) !important; font-weight: 700; }
@media print {
    .page-banner, .navbar, footer, #loanTypeButtons, .form-range, .btn, nav, .card-footer { display: none !important; }
    .col-lg-5 { display: none !important; }
    .col-lg-7 { width: 100% !important; max-width: 100% !important; flex: 0 0 100%; }
    #scheduleCard { display: block !important; box-shadow: none !important; }
    #scheduleCard .table-responsive { max-height: none !important; overflow: visible !important; }
    body { font-size: 12px; }
    .card-header { background: var(--primary-color) !important; color: var(--text-on-primary, #fff) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .table-dark { background: #333 !important; color: #fff !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .year-row { background: rgba(var(--primary-rgb,26,95,42), .12) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .print-title { display: block !important; text-align: center; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
}
.print-title { display: none; }

/* ═══════════════════════════════════════════════════
   57. EXCHANGE RATE (exchange-rate.php)
   ═══════════════════════════════════════════════════ */
@keyframes exr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.exr-table { border-radius: 12px; overflow: hidden; }
.exr-thead { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary, white); }
.exr-flag { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 3px rgba(var(--primary-rgb,26,95,42), .25); }
.exr-currency-name { font-size: .85em; }
.exr-buy { color: var(--primary-color); }
.exr-rate-note { background: rgba(var(--primary-rgb,26,95,42), .05); border-radius: 10px; border-left: 4px solid var(--primary-light); }

/* ═══════════════════════════════════════════════════
   58. FAQS PAGE (faqs.php)
   ═══════════════════════════════════════════════════ */
.faq-accordion .accordion-item { border: none; margin-bottom: 15px; border-radius: 10px !important; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.faq-accordion .accordion-button { font-weight: 600; color: var(--text-color); padding: 18px 25px; background: var(--white, #fff); }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--primary-color); color: var(--text-on-primary, #fff); }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-body { padding: 20px 25px; background: var(--white, #fff); line-height: 1.8; }

/* ═══════════════════════════════════════════════════
   59. GALLERY PAGE (gallery.php)
   ═══════════════════════════════════════════════════ */
.gallery-tabs-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; padding: 15px 20px; background: var(--bg-soft, #f5faf6); border-radius: 15px; }
.gallery-tabs { display: flex; gap: 10px; }
.gallery-tab { display: flex; align-items: center; gap: 10px; padding: 12px 25px; background: var(--white, #fff); border: 2px solid transparent; border-radius: 12px; color: var(--text-color); text-decoration: none; font-weight: 600; transition: all .3s ease; }
.gallery-tab:hover { border-color: var(--primary-color); color: var(--primary-color); }
.gallery-tab.active { background: var(--primary-color); color: var(--text-on-primary, #fff); border-color: var(--primary-color); }
.gallery-tab .tab-count { background: rgba(0,0,0,.1); padding: 2px 10px; border-radius: 20px; font-size: .85rem; }
.gallery-tab.active .tab-count { background: rgba(255,255,255,.2); }
.gallery-category-filter { min-width: 200px; }
.gallery-category-filter .form-select { border-radius: 10px; padding: 12px 15px; border: 2px solid var(--border-color, #e5e7eb); }
.video-card { background: var(--white, #fff); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.1); transition: all .3s ease; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.video-thumbnail { position: relative; overflow: hidden; }
.video-thumbnail img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s ease; }
.video-card:hover .video-thumbnail img { transform: scale(1.05); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; background: rgba(255,0,0,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; transition: all .3s ease; }
.video-card:hover .video-play-btn { transform: translate(-50%,-50%) scale(1.1); background: #ff0000; }
.video-caption { padding: 15px; font-weight: 600; color: var(--text-color); display: flex; align-items: center; gap: 10px; }
.video-caption i { color: #ff0000; }
.gallery-card { border-radius: 12px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,.1); transition: all .3s ease; position: relative; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.gallery-card img { width: 100%; height: 200px; object-fit: cover; }
.gallery-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 40px; color: #fff; }
.gallery-caption { padding: 12px 15px; background: var(--white, #fff); font-weight: 500; font-size: .9rem; }
@media (max-width: 767px) {
    .gallery-tabs-wrapper { flex-direction: column; align-items: stretch; }
    .gallery-tabs { width: 100%; }
    .gallery-tab { flex: 1; justify-content: center; padding: 10px 15px; }
    .gallery-category-filter { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   60. REPORTS PAGE (reports.php)
   ═══════════════════════════════════════════════════ */
.reports-filter-wrapper { background: var(--bg-soft, #f5faf6); padding: 15px 20px; border-radius: 10px; }
.reports-filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.reports-filter-tab { padding: 8px 16px; background: var(--white, #fff); border: 1px solid var(--border-color, #e5e7eb); border-radius: 25px; color: var(--text-color); font-size: 14px; transition: all .3s; text-decoration: none; }
.reports-filter-tab:hover, .reports-filter-tab.active { background: var(--primary-color); border-color: var(--primary-color); color: var(--text-on-primary, #fff); }
.reports-filter-tab i { margin-right: 5px; }
.report-section-header { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--primary-color); }
.report-section-header h3 { color: var(--primary-color); margin: 0; font-size: 1.5rem; }
.report-section-header h3 i { margin-right: 10px; }
.year-title { background: var(--bg-soft, #f5faf6); padding: 10px 20px; border-radius: 8px; font-size: 1.1rem; color: var(--text-color); margin-bottom: 15px; border-left: 4px solid var(--primary-color); }
.report-card { background: var(--white, #fff); border-radius: 10px; padding: 20px; box-shadow: 0 3px 10px rgba(0,0,0,.08); height: 100%; display: flex; flex-direction: column; transition: all .3s; border-top: 3px solid var(--primary-color); }
.report-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.report-card.monthly { border-top-color: #17a2b8; }
.report-card.quarterly { border-top-color: #ffc107; }
.report-card.annual { border-top-color: var(--primary-light); }
.report-card.other { border-top-color: #6c757d; }
.report-card.progress-type { border-top-color: #17a2b8; }
.report-icon { width: 50px; height: 50px; background: var(--bg-soft, #f5faf6); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.report-icon i { font-size: 22px; color: var(--primary-color); }
.report-card.monthly .report-icon i { color: #17a2b8; }
.report-card.quarterly .report-icon i { color: #ffc107; }
.report-card.progress-type .report-icon i { color: #17a2b8; }
.report-card.annual .report-icon i { color: var(--primary-light); }
.report-info { flex: 1; margin-bottom: 15px; }
.report-info h5 { font-size: .95rem; margin-bottom: 8px; color: var(--text-color); line-height: 1.4; }
.report-month, .report-quarter, .report-type-badge { display: inline-block; background: var(--bg-soft, #f5faf6); padding: 3px 10px; border-radius: 15px; font-size: .75rem; color: var(--text-light, #9ca3af); }
.report-actions { display: flex; gap: 8px; }
.report-actions .btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; }
@media (max-width: 767px) { .reports-filter-tabs { justify-content: center; } .report-card { padding: 15px; } }

/* ═══════════════════════════════════════════════════
   61. SERVICE CENTERS (service-centers.php)
   ═══════════════════════════════════════════════════ */
.service-center-card { background: var(--white, #fff); border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,.08); padding: 30px; text-align: center; height: 100%; transition: all .3s; position: relative; }
.service-center-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.service-center-card.main-branch { border: 2px solid var(--primary-color); }
.branch-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: var(--text-on-primary, #fff); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.center-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.center-icon i { font-size: 28px; color: var(--text-on-primary, #fff); }
.service-center-card h4 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.2rem; }
.center-info { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.center-info li { padding: 8px 0; border-bottom: 1px dashed var(--border-color, #e5e7eb); color: var(--text-light, #9ca3af); font-size: 14px; }
.center-info li:last-child { border-bottom: none; }
.center-info li i { color: var(--primary-color); margin-right: 10px; width: 18px; }

/* ═══════════════════════════════════════════════════
   62. TRACKER ID CARD (tracker-id-card.php) — standalone
   ═══════════════════════════════════════════════════ */
body:has(.preview-wrap) { font-family: 'Mukta','Noto Sans Devanagari',-apple-system,sans-serif; background: linear-gradient(135deg, var(--primary-dark, #0f3d1f) 0%, var(--primary-color) 50%, var(--primary-light) 100%); min-height: 100vh; margin: 0; padding: 24px 16px; display: flex; align-items: center; justify-content: center; user-select: none; }
.preview-wrap { max-width: 480px; width: 100%; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.35); position: relative; }
.preview-header { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary, #fff); padding: 14px 20px; text-align: center; font-size: .82rem; font-weight: 600; letter-spacing: .3px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.id-card { position: relative; background: linear-gradient(135deg, var(--primary-dark, #0f3d1f) 0%, var(--primary-color) 60%, var(--primary-light) 100%); color: #fff; padding: 22px 22px 26px; margin: 18px; border-radius: 16px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.18); overflow: hidden; }
.id-card::before { content: 'PREVIEW'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-30deg); font-size: 4rem; font-weight: 900; color: rgba(255,255,255,.07); letter-spacing: 8px; pointer-events: none; z-index: 0; }
.id-top { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 12px; margin-bottom: 14px; position: relative; z-index: 1; }
.id-top img { width: 44px; height: 44px; border-radius: 10px; background: #fff; padding: 4px; object-fit: contain; }
.id-top .org { font-weight: 700; font-size: 1rem; line-height: 1.2; }
.id-top .org-sub { font-size: .7rem; opacity: .85; letter-spacing: 1px; }
.id-body { display: flex; gap: 14px; align-items: flex-start; position: relative; z-index: 1; }
.id-photo { width: 92px; height: 110px; border-radius: 10px; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; font-size: 2rem; color: rgba(255,255,255,.4); }
.id-photo img { width: 100%; height: 100%; object-fit: cover; }
.id-fields { flex: 1; min-width: 0; }
.id-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; line-height: 1.2; }
.id-num { font-size: .82rem; opacity: .92; margin-bottom: 10px; font-family: 'Courier New',monospace; letter-spacing: 1px; }
.id-row { display: flex; font-size: .76rem; margin-bottom: 4px; gap: 6px; }
.id-row .lbl { opacity: .75; min-width: 56px; }
.id-row .val { flex: 1; word-break: break-all; }
.id-footer { margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.18); font-size: .68rem; opacity: .8; text-align: center; position: relative; z-index: 1; }
.preview-meta { padding: 14px 20px 18px; background: var(--bg-soft, #f9fafb); border-top: 1px solid var(--border-color, #e5e7eb); font-size: .78rem; color: var(--text-muted, #6b7280); text-align: center; line-height: 1.6; }
.preview-meta strong { color: var(--primary-color); }
.btn-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; background: var(--primary-color); color: var(--text-on-primary, #fff) !important; text-decoration: none; padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: .82rem; }
.error-card { max-width: 440px; background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.error-icon { width: 64px; height: 64px; background: #fef2f2; color: #b91c1c; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.6rem; }
.error-card h3 { color: #b91c1c; font-size: 1.1rem; margin: 0 0 8px; }
.error-card p { color: var(--text-muted, #6b7280); font-size: .9rem; margin: 0 0 18px; line-height: 1.65; }
@media print { body { display: none !important; } }

/* ═══════════════════════════════════════════════════
   63. INDEX — MEMBER SPOTLIGHT (index.php)
   ═══════════════════════════════════════════════════ */
.member-spotlight-section { background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 8%, white) 0%, color-mix(in srgb, var(--secondary-color) 12%, white) 50%, color-mix(in srgb, var(--secondary-color) 8%, white) 100%); position: relative; overflow: hidden; }
.member-spotlight-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--secondary-color) 10%, transparent) 0%, transparent 60%), radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--primary-color) 8%, transparent) 0%, transparent 60%); pointer-events: none; }
.spotlight-card { background: var(--white, #fff); border-radius: 20px; box-shadow: 0 16px 48px rgba(var(--secondary-rgb,195,57,43), .14), 0 4px 16px rgba(0,0,0,.06); overflow: hidden; position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.spotlight-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(var(--secondary-rgb,195,57,43), .2), 0 8px 24px rgba(0,0,0,.08); }
.spotlight-top-bar { height: 6px; background: linear-gradient(90deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color) 70%, white), var(--secondary-color), var(--secondary-dark)); background-size: 300% 100%; animation: spotlight-shimmer-bar 3s linear infinite; }
@keyframes spotlight-shimmer-bar { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.spotlight-inner { display: flex; align-items: center; gap: 36px; padding: 32px 36px; }
.spotlight-photo-col { flex-shrink: 0; }
.spotlight-photo-frame { position: relative; width: 140px; }
.spotlight-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 5px solid var(--secondary-color); box-shadow: 0 0 0 4px rgba(var(--secondary-rgb,195,57,43), .2), 0 8px 20px rgba(0,0,0,.12); display: block; }
.spotlight-photo-placeholder { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 18%, white), color-mix(in srgb, var(--secondary-color) 28%, white)); display: flex; align-items: center; justify-content: center; border: 5px solid var(--secondary-color); box-shadow: 0 0 0 4px rgba(var(--secondary-rgb,195,57,43), .2); }
.spotlight-photo-placeholder i { font-size: 4rem; color: var(--secondary-dark); opacity: .6; }
.spotlight-month-badge { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-on-primary); font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; box-shadow: 0 2px 8px rgba(var(--primary-rgb,26,95,42), .3); }
.spotlight-info-col { flex: 1; min-width: 0; }
.spotlight-tag { display: inline-flex; align-items: center; background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 18%, white), color-mix(in srgb, var(--secondary-color) 28%, white)); color: var(--secondary-dark); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; margin-bottom: 10px; border: 1px solid rgba(var(--secondary-rgb,195,57,43), .3); }
.spotlight-name { font-size: 1.6rem; font-weight: 700; color: var(--text-color); margin-bottom: 8px; line-height: 1.2; }
.spotlight-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.spotlight-meta-item { font-size: .82rem; color: var(--text-light, #9ca3af); display: flex; align-items: center; gap: 5px; }
.spotlight-meta-item i { color: var(--primary-color); font-size: .78rem; }
.spotlight-meta-item strong { color: var(--primary-color); }
.spotlight-achievement { display: inline-flex; align-items: center; background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 12%, white), color-mix(in srgb, var(--primary-color) 20%, white)); color: var(--primary-color); font-size: .82rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 14px; border: 1px solid rgba(var(--primary-rgb,26,95,42), .15); }
.spotlight-achievement i { color: var(--secondary-color); margin-right: 5px; }
.spotlight-quote { background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 8%, white), color-mix(in srgb, var(--secondary-color) 18%, white)); border-left: 4px solid var(--secondary-color); border-radius: 0 10px 10px 0; padding: 12px 16px; margin: 0; font-style: italic; color: var(--text-light, #9ca3af); font-size: .9rem; line-height: 1.6; }
.spotlight-quote .fa-quote-left { color: var(--secondary-color); font-size: 1.1rem; margin-right: 8px; opacity: .7; }
.spotlight-stars { position: absolute; pointer-events: none; }
.spotlight-stars i { position: absolute; color: var(--secondary-color); opacity: .12; animation: spotlight-twinkle 3s ease-in-out infinite; }
.section-badge-spotlight { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)); color: var(--text-on-secondary, #fff); }
.star-1 { font-size: 2rem; top: 16px; right: 24px; animation-delay: 0s; }
.star-2 { font-size: 1rem; top: 48px; right: 56px; animation-delay: .8s; }
.star-3 { font-size: 1.5rem; bottom: 20px; right: 40px; animation-delay: 1.4s; }
@keyframes spotlight-twinkle { 0%, 100% { opacity: .12; transform: scale(1); } 50% { opacity: .25; transform: scale(1.2); } }
@media (max-width: 576px) {
    .spotlight-inner { flex-direction: column; text-align: center; padding: 24px 20px; gap: 24px; }
    .spotlight-meta { justify-content: center; }
    .spotlight-achievement { display: block; text-align: center; }
    .spotlight-name { font-size: 1.3rem; }
    .spotlight-photo { width: 120px; height: 120px; }
    .spotlight-photo-frame { width: 120px; }
}

/* ═══════════════════════════════════════════════════
   64. CAREER PAGE — Missing/Fixed Classes
   ═══════════════════════════════════════════════════ */
/* CV icon circle in sidebar card */
.cr-cv-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb,26,95,42),.12), rgba(var(--primary-rgb,26,95,42),.06));
    border: 2px solid rgba(var(--primary-rgb,26,95,42),.16);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--primary-color);
    margin: 0 auto 1rem;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb,26,95,42),.1);
    transition: transform .25s, box-shadow .25s;
}
.cr-cv-card:hover .cr-cv-icon {
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 8px 22px rgba(var(--primary-rgb,26,95,42),.18);
}
/* Accent icon colour (used in "Why Join Us?" heading star) */
.cr-ico-accent { color: var(--secondary-color, #c33b2b); }
/* Red variant for closed-position stat number */
.cr-stat-num.red {
    background: linear-gradient(135deg,#ef4444,#dc2626);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════
   65. CONTACT PAGE — Quick-access card icon circles
   ═══════════════════════════════════════════════════ */
/* Upgrade ct-icon-lg from plain font-size to a branded circle container */
.card div.ct-icon-lg {
    width: 76px; height: 76px; border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb,26,95,42),.11),
        rgba(var(--primary-rgb,26,95,42),.05));
    border: 2px solid rgba(var(--primary-rgb,26,95,42),.14);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.85rem; color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb,26,95,42),.1);
    transition: transform .28s, box-shadow .28s, background .28s;
}
.card:hover div.ct-icon-lg {
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb,26,95,42),.18),
        rgba(var(--primary-rgb,26,95,42),.09));
    transform: scale(1.09) rotate(6deg);
    box-shadow: 0 9px 26px rgba(var(--primary-rgb,26,95,42),.2);
}

/* ═══════════════════════════════════════════════════
   66. KYC WIZARD — Step Progress Bar & Done Checkmarks
   ═══════════════════════════════════════════════════ */
/* Progress strip: counter text + animated bar */
.kym-progress-strip {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .55rem 1rem .5rem;
    background: rgba(var(--primary-rgb,26,95,42),.05);
    border: 1px solid rgba(var(--primary-rgb,26,95,42),.12);
    border-radius: 10px;
}
.kym-step-counter {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
}
.kym-progress-track {
    flex: 1;
    height: 6px;
    background: rgba(var(--primary-rgb,26,95,42),.13);
    border-radius: 3px;
    overflow: hidden;
}
.kym-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light,#4aab66));
    border-radius: 3px;
    transition: width .45s cubic-bezier(.4,0,.2,1);
}

/* Completed step tab — green-tinted with ✓ badge */
.kym-step-btn.done {
    border-color: rgba(var(--primary-rgb,26,95,42),.38);
    background: rgba(var(--primary-rgb,26,95,42),.08);
    color: var(--primary-dark);
}
.kym-step-btn.done:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb,26,95,42),.14);
}
.kym-step-btn.done .kym-step-num {
    background: var(--primary-color);
    color: #fff;
}
.kym-step-btn.done .kym-step-num i {
    font-size: .58rem;
}
/* Active step always overrides the done appearance */
.kym-step-btn.active .kym-step-num {
    background: rgba(255,255,255,.25) !important;
    color: #fff !important;
}
@media (max-width: 576px) {
    .kym-progress-strip { gap: .55rem; padding: .45rem .75rem; }
    .kym-step-counter { font-size: .73rem; min-width: 68px; }
}
