/* =========================================================
   BLOOD NETWORK PAKISTAN
   VOLUNTEER PAGE
========================================================= */

:root {
    --vol-red: #e52030;
    --vol-red-dark: #9d0b1d;
    --vol-green: #2f8f5b;
    --vol-green-dark: #1d6840;
    --vol-ink: #171b22;
    --vol-navy: #202631;
    --vol-maroon: #43101d;
    --vol-text: #242a33;
    --vol-muted: #727985;
    --vol-soft: #f5f7fa;
    --vol-border: #e5e9ee;
    --vol-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button,
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none;
}

/* =========================================================
   EDITORIAL HERO
========================================================= */

.bnp-volunteer-hero {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            #13171e 0%,
            #1c222c 45%,
            #143728 100%
        );
}

.bnp-volunteer-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            rgba(229, 32, 48, 0.08),
            transparent 38%,
            rgba(47, 143, 91, 0.09)
        );
}

.bnp-volunteer-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9),
            transparent 88%
        );
}

.bnp-volunteer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.orb-red {
    top: -150px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: rgba(229, 32, 48, 0.13);
}

.orb-green {
    right: -140px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    background: rgba(47, 143, 91, 0.14);
}

.bnp-volunteer-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.bnp-volunteer-hero-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, 0.92fr);
    align-items: center;
    gap: 70px;
    padding: 88px 0 100px;
}

.bnp-volunteer-hero-content {
    max-width: 750px;
}

.bnp-volunteer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    padding: 9px 15px;
    border: 1px solid rgba(125, 225, 168, 0.24);
    border-radius: 30px;
    color: #caf4da;
    background: rgba(47, 143, 91, 0.13);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.bnp-volunteer-pulse {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #53c67f;
    box-shadow: 0 0 0 6px rgba(47, 143, 91, 0.13);
    animation: bnpVolunteerPulse 1.8s infinite;
}

@keyframes bnpVolunteerPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.82);
    }
}

.bnp-volunteer-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 62px;
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -1.5px;
}

.bnp-volunteer-hero-content h1 span {
    display: block;
    margin-top: 7px;
    color: #63ce8b;
}

.bnp-volunteer-hero-content > p {
    max-width: 690px;
    margin: 24px 0 29px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.85;
}

.bnp-volunteer-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.bnp-volunteer-primary-btn,
.bnp-volunteer-outline-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition:
        transform 0.28s ease,
        color 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.bnp-volunteer-primary-btn {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
    box-shadow: 0 15px 32px rgba(47, 143, 91, 0.3);
}

.bnp-volunteer-primary-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
    box-shadow: 0 21px 42px rgba(47, 143, 91, 0.42);
}

.bnp-volunteer-outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.bnp-volunteer-outline-btn i {
    color: #ff6673;
}

.bnp-volunteer-outline-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 32, 48, 0.35);
    color: #ffffff;
    background: rgba(229, 32, 48, 0.11);
}

.bnp-volunteer-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-top: 31px;
}

.bnp-volunteer-hero-meta > div {
    padding: 13px 14px;
    border-left: 2px solid rgba(99, 206, 139, 0.55);
    background: rgba(255, 255, 255, 0.035);
}

.bnp-volunteer-hero-meta strong,
.bnp-volunteer-hero-meta span {
    display: block;
}

.bnp-volunteer-hero-meta strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
}

.bnp-volunteer-hero-meta span {
    color: rgba(255, 255, 255, 0.43);
    font-size: 7px;
    line-height: 1.45;
}

/* =========================================================
   VOLUNTEER BOARD
========================================================= */

.bnp-volunteer-board {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.045)
        );
    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
}

.bnp-volunteer-board::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -18px;
    width: 60px;
    height: 130px;
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            var(--vol-red),
            var(--vol-green)
        );
    opacity: 0.22;
    filter: blur(2px);
}

.bnp-volunteer-board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

.bnp-volunteer-board-top div > span {
    display: block;
    margin-bottom: 4px;
    color: #69d393;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bnp-volunteer-board-top h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.bnp-volunteer-board-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    box-shadow: 0 12px 26px rgba(229, 32, 48, 0.28);
}

.bnp-volunteer-profile-stack {
    display: grid;
    gap: 10px;
}

.bnp-volunteer-profile-stack article {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.bnp-volunteer-profile-stack article.featured {
    margin-left: 18px;
    border-color: rgba(99, 206, 139, 0.2);
    background:
        linear-gradient(
            135deg,
            rgba(47, 143, 91, 0.13),
            rgba(255, 255, 255, 0.055)
        );
}

.bnp-volunteer-profile-stack article:nth-child(2) {
    margin-right: 17px;
}

.bnp-volunteer-profile-stack article:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.14);
}

.bnp-volunteer-profile-avatar {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 21px rgba(229, 32, 48, 0.2);
}

.bnp-volunteer-profile-avatar.green {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-profile-avatar.dark {
    background:
        linear-gradient(
            135deg,
            #48505b,
            #20252d
        );
}

.bnp-volunteer-profile-stack article > div:nth-child(2) {
    flex: 1;
}

.bnp-volunteer-profile-stack small,
.bnp-volunteer-profile-stack strong,
.bnp-volunteer-profile-stack span {
    display: block;
}

.bnp-volunteer-profile-stack small {
    margin-bottom: 3px;
    color: #69d393;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-profile-stack strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.bnp-volunteer-profile-stack span {
    color: rgba(255, 255, 255, 0.43);
    font-size: 7px;
}

.bnp-volunteer-profile-stack article > i {
    color: #69d393;
    font-size: 15px;
}

.bnp-volunteer-board-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 19px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bnp-volunteer-board-footer > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bnp-volunteer-status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #57ca83;
    box-shadow: 0 0 0 6px rgba(47, 143, 91, 0.12);
}

.bnp-volunteer-board-footer strong,
.bnp-volunteer-board-footer small {
    display: block;
}

.bnp-volunteer-board-footer strong {
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-board-footer small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 7px;
}

.bnp-volunteer-board-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-board-footer > a:hover {
    color: #69d393;
}

/* =========================================================
   IMPACT STRIP
========================================================= */

.bnp-volunteer-impact-strip {
    position: relative;
    z-index: 20;
    margin-top: -45px;
}

.bnp-volunteer-impact-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 24px 55px rgba(15, 23, 42, 0.13),
        0 7px 20px rgba(15, 23, 42, 0.04);
}

.bnp-volunteer-impact-track article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid var(--vol-border);
    transition: background 0.28s ease;
}

.bnp-volunteer-impact-track article:last-child {
    border-right: 0;
}

.bnp-volunteer-impact-track article:hover {
    background: #f5faf7;
}

.bnp-volunteer-impact-track article > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
}

.bnp-volunteer-impact-track .red {
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
}

.bnp-volunteer-impact-track .green {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-impact-track .dark {
    background:
        linear-gradient(
            135deg,
            #48505b,
            #20252d
        );
}

.bnp-volunteer-impact-track .maroon {
    background:
        linear-gradient(
            135deg,
            #7d1731,
            #3d0c18
        );
}

.bnp-volunteer-impact-track strong,
.bnp-volunteer-impact-track small {
    display: block;
}

.bnp-volunteer-impact-track strong {
    margin-bottom: 3px;
    color: var(--vol-text);
    font-size: 11px;
    font-weight: 800;
}

.bnp-volunteer-impact-track small {
    color: #868d96;
    font-size: 8px;
    line-height: 1.45;
}

/* =========================================================
   WHY VOLUNTEER
========================================================= */

.bnp-volunteer-why {
    position: relative;
    overflow: hidden;
    padding: 115px 0 100px;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(47, 143, 91, 0.05),
            transparent 28%
        ),
        #ffffff;
}

.bnp-volunteer-why-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(390px, 0.9fr);
    align-items: center;
    gap: 72px;
}

.bnp-volunteer-why-content h2,
.bnp-volunteer-section-header h2,
.bnp-volunteer-journey-heading h2,
.bnp-volunteer-application-heading h2,
.bnp-volunteer-section-heading h2 {
    margin: 0;
    color: var(--vol-text);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.75px;
}

.bnp-volunteer-why-content h2 span,
.bnp-volunteer-section-header h2 span,
.bnp-volunteer-journey-heading h2 span,
.bnp-volunteer-application-heading h2 span,
.bnp-volunteer-section-heading h2 span {
    display: block;
    color: var(--vol-green);
}

.bnp-volunteer-why-content > p {
    margin: 18px 0 28px;
    color: var(--vol-muted);
    font-size: 13px;
    line-height: 1.85;
}

.bnp-volunteer-value-list {
    display: grid;
    gap: 12px;
}

.bnp-volunteer-value-list article {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid var(--vol-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.bnp-volunteer-value-list article:hover {
    transform: translateX(7px);
    border-color: rgba(47, 143, 91, 0.2);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.bnp-volunteer-value-list article > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
}

.bnp-volunteer-value-list article > span.green {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-value-list article > span.dark {
    background:
        linear-gradient(
            135deg,
            #48505b,
            #20252d
        );
}

.bnp-volunteer-value-list strong,
.bnp-volunteer-value-list small {
    display: block;
}

.bnp-volunteer-value-list strong {
    margin-bottom: 3px;
    color: var(--vol-text);
    font-size: 11px;
    font-weight: 800;
}

.bnp-volunteer-value-list small {
    color: #858c95;
    font-size: 8px;
    line-height: 1.5;
}

/* Impact Visual */

.bnp-volunteer-impact-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnp-volunteer-impact-main {
    width: 100%;
    padding: 32px;
    border-radius: 28px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1a1f27,
            #202c26 58%,
            #3a101c
        );
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.bnp-volunteer-impact-label {
    display: block;
    margin-bottom: 9px;
    color: #67d18f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bnp-volunteer-impact-main > strong {
    display: block;
    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
}

.bnp-volunteer-impact-main > p {
    margin: 12px 0 25px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    line-height: 1.7;
}

.bnp-volunteer-impact-bars {
    display: grid;
    gap: 18px;
}

.bnp-volunteer-impact-bars > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 15px;
}

.bnp-volunteer-impact-bars span,
.bnp-volunteer-impact-bars strong {
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-impact-bars > div > span {
    color: rgba(255, 255, 255, 0.66);
}

.bnp-volunteer-impact-bars > div > strong {
    color: #ffffff;
}

.bnp-impact-progress {
    grid-column: 1 / -1;
    height: 7px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.bnp-impact-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--vol-red),
            #ff6674
        );
}

.bnp-impact-progress.green span {
    background:
        linear-gradient(
            90deg,
            var(--vol-green),
            #68d08f
        );
}

.bnp-impact-progress.dark span {
    background:
        linear-gradient(
            90deg,
            #505965,
            #8b95a1
        );
}

.bnp-volunteer-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 12px;
    color: var(--vol-text);
    background: #ffffff;
    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.14);
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-floating-badge i {
    color: var(--vol-green);
}

.badge-one {
    top: 45px;
    right: -25px;
}

.badge-two {
    bottom: 35px;
    left: -28px;
}

/* =========================================================
   ROLES
========================================================= */

.bnp-volunteer-roles {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--vol-soft);
}

.bnp-volunteer-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 30px;
}

.bnp-volunteer-section-header > div {
    max-width: 760px;
}

.bnp-volunteer-section-header p,
.bnp-volunteer-journey-heading p,
.bnp-volunteer-application-heading p,
.bnp-volunteer-section-heading p {
    margin: 16px 0 0;
    color: var(--vol-muted);
    font-size: 13px;
    line-height: 1.8;
}

.bnp-volunteer-section-header > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vol-green-dark);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-role-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 27px;
}

.bnp-volunteer-role-tabs button {
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid var(--vol-border);
    border-radius: 20px;
    color: #6e7580;
    background: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.bnp-volunteer-role-tabs button:hover,
.bnp-volunteer-role-tabs button.active {
    transform: translateY(-2px);
    border-color: var(--vol-green);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bnp-volunteer-role-card {
    position: relative;
    min-height: 100%;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.065),
        0 5px 15px rgba(15, 23, 42, 0.025);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.bnp-volunteer-role-card.featured {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1b2028,
            #173c2d 60%,
            #3c101c
        );
}

.bnp-volunteer-role-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--vol-red),
            var(--vol-green)
        );
}

.bnp-volunteer-role-card:hover {
    transform: translateY(-9px);
    border-color: rgba(47, 143, 91, 0.18);
    box-shadow:
        0 29px 60px rgba(15, 23, 42, 0.12),
        0 8px 20px rgba(47, 143, 91, 0.04);
}

.bnp-role-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(37, 42, 51, 0.07);
    font-size: 32px;
    font-weight: 900;
}

.featured .bnp-role-number {
    color: rgba(255, 255, 255, 0.07);
}

.bnp-role-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 17px;
    color: #ffffff;
    font-size: 21px;
}

.bnp-role-icon.red {
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
}

.bnp-role-icon.green {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-role-icon.dark {
    background:
        linear-gradient(
            135deg,
            #49515c,
            #20252d
        );
}

.bnp-role-icon.maroon {
    background:
        linear-gradient(
            135deg,
            #7b1830,
            #3d0b18
        );
}

.bnp-role-type {
    display: block;
    margin-bottom: 7px;
    color: var(--vol-green);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.featured .bnp-role-type {
    color: #6cd493;
}

.bnp-volunteer-role-card h3 {
    margin: 0 0 10px;
    color: var(--vol-text);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
}

.featured h3 {
    color: #ffffff;
}

.bnp-volunteer-role-card p {
    margin: 0 0 18px;
    color: var(--vol-muted);
    font-size: 9px;
    line-height: 1.7;
}

.featured p {
    color: rgba(255, 255, 255, 0.54);
}

.bnp-volunteer-role-card ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.bnp-volunteer-role-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 21px;
    color: #626a74;
    font-size: 8px;
    font-weight: 700;
}

.featured li {
    color: rgba(255, 255, 255, 0.62);
}

.bnp-volunteer-role-card li::before {
    content: "\f00c";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--vol-green);
    font-family: FontAwesome;
}

.bnp-volunteer-role-card button {
    width: 100%;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid rgba(47, 143, 91, 0.18);
    border-radius: 10px;
    color: var(--vol-green-dark);
    background: #f3faf6;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.featured button {
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.bnp-volunteer-role-card button:hover {
    transform: translateY(-3px);
    border-color: var(--vol-green);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

/* =========================================================
   JOURNEY
========================================================= */

.bnp-volunteer-journey {
    padding: 100px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #171b22,
            #2f1019 50%,
            #173b2c
        );
}

.bnp-volunteer-journey-layout {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.75fr)
        minmax(0, 1.25fr);
    align-items: start;
    gap: 70px;
}

.bnp-volunteer-journey-heading {
    position: sticky;
    top: 100px;
}

.bnp-volunteer-journey-heading h2 {
    color: #ffffff;
}

.bnp-volunteer-journey-heading h2 span {
    color: #69d393;
}

.bnp-volunteer-journey-heading p {
    color: rgba(255, 255, 255, 0.55);
}

.bnp-volunteer-journey-heading > a {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 9px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-journey-steps {
    position: relative;
    display: grid;
    gap: 14px;
}

.bnp-volunteer-journey-steps::before {
    content: "";
    position: absolute;
    top: 33px;
    bottom: 33px;
    left: 31px;
    width: 2px;
    background: rgba(255, 255, 255, 0.09);
}

.bnp-volunteer-journey-steps article {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.bnp-volunteer-journey-steps article:hover,
.bnp-volunteer-journey-steps article.active {
    transform: translateX(7px);
    border-color: rgba(99, 206, 139, 0.22);
    background: rgba(47, 143, 91, 0.1);
}

.bnp-volunteer-journey-steps article > span {
    width: 63px;
    height: 63px;
    flex: 0 0 63px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #20242b;
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    font-size: 11px;
    font-weight: 800;
}

.bnp-volunteer-journey-steps article.active > span {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-journey-steps small {
    display: block;
    margin-bottom: 4px;
    color: #69d393;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-journey-steps h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.bnp-volunteer-journey-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    line-height: 1.65;
}

/* =========================================================
   APPLICATION
========================================================= */

.bnp-volunteer-application {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(47, 143, 91, 0.05),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(229, 32, 48, 0.045),
            transparent 28%
        ),
        var(--vol-soft);
}

.bnp-volunteer-application-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 40px;
}

.bnp-volunteer-application-heading > div:first-child {
    max-width: 740px;
}

.bnp-volunteer-application-security {
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    border: 1px solid rgba(47, 143, 91, 0.13);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 13px 30px rgba(15, 23, 42, 0.06);
}

.bnp-volunteer-application-security > i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-application-security strong,
.bnp-volunteer-application-security small {
    display: block;
}

.bnp-volunteer-application-security strong {
    margin-bottom: 3px;
    color: var(--vol-text);
    font-size: 10px;
    font-weight: 800;
}

.bnp-volunteer-application-security small {
    color: #858b94;
    font-size: 8px;
}

.bnp-volunteer-application-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(285px, 0.34fr);
    align-items: start;
    gap: 27px;
}

/* Wizard */

.bnp-volunteer-wizard {
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.09),
        0 7px 20px rgba(15, 23, 42, 0.035);
}

.bnp-volunteer-wizard-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.bnp-volunteer-wizard-progress button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--vol-border);
    border-radius: 12px;
    color: #777e88;
    background: #fafbfc;
    text-align: left;
    cursor: pointer;
}

.bnp-volunteer-wizard-progress button > span {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #747b84;
    background: #edf0f3;
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-wizard-progress button small,
.bnp-volunteer-wizard-progress button strong {
    display: block;
}

.bnp-volunteer-wizard-progress button small {
    margin-bottom: 2px;
    color: #969ca4;
    font-size: 6px;
    text-transform: uppercase;
}

.bnp-volunteer-wizard-progress button strong {
    color: var(--vol-text);
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-wizard-progress button.active {
    border-color: rgba(47, 143, 91, 0.28);
    background: #f1faf5;
}

.bnp-volunteer-wizard-progress button.active > span {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-form-step {
    display: none;
}

.bnp-volunteer-form-step.active {
    display: block;
    animation: bnpVolunteerStep 0.35s ease;
}

@keyframes bnpVolunteerStep {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bnp-volunteer-form-step-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--vol-border);
}

.bnp-volunteer-form-step-heading > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
}

.bnp-volunteer-form-step-heading > span.green {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-form-step-heading > span.dark {
    background:
        linear-gradient(
            135deg,
            #48505b,
            #20252d
        );
}

.bnp-volunteer-form-step-heading small {
    display: block;
    margin-bottom: 3px;
    color: var(--vol-green);
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-form-step-heading h3 {
    margin: 0;
    color: var(--vol-text);
    font-size: 20px;
    font-weight: 800;
}

.bnp-volunteer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.bnp-volunteer-field.full-width {
    grid-column: 1 / -1;
}

.bnp-volunteer-field label {
    display: block;
    margin-bottom: 8px;
    color: #4b525c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bnp-volunteer-field label span {
    color: var(--vol-red);
}

.bnp-volunteer-field input,
.bnp-volunteer-field select,
.bnp-volunteer-field textarea {
    width: 100%;
    border: 1px solid var(--vol-border);
    border-radius: 11px;
    color: var(--vol-text);
    background: #fafbfc;
    font-size: 10px;
    font-weight: 650;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.bnp-volunteer-field input,
.bnp-volunteer-field select {
    height: 49px;
    padding: 0 14px;
}

.bnp-volunteer-field textarea {
    min-height: 108px;
    padding: 13px 14px;
    resize: vertical;
    line-height: 1.65;
}

.bnp-volunteer-field select {
    appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #8c929a 50%
        ),
        linear-gradient(
            135deg,
            #8c929a 50%,
            transparent 50%
        );
    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.bnp-volunteer-field input:focus,
.bnp-volunteer-field select:focus,
.bnp-volunteer-field textarea:focus {
    border-color: rgba(47, 143, 91, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.08);
}

.bnp-volunteer-field select:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.bnp-volunteer-field input.is-invalid,
.bnp-volunteer-field select.is-invalid,
.bnp-volunteer-field textarea.is-invalid {
    border-color: rgba(229, 32, 48, 0.6);
    background: #fff8f9;
}

.bnp-volunteer-field-error {
    display: block;
    margin-top: 6px;
    color: var(--vol-red);
    font-size: 7px;
    font-weight: 700;
}

/* Skills / Days */

.bnp-volunteer-skill-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.bnp-volunteer-day-options {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.bnp-volunteer-skill-options label,
.bnp-volunteer-day-options label {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.bnp-volunteer-skill-options input,
.bnp-volunteer-day-options input {
    position: absolute;
    opacity: 0;
}

.bnp-volunteer-skill-options label span,
.bnp-volunteer-day-options label span {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid var(--vol-border);
    border-radius: 10px;
    color: #68707a;
    background: #fafbfc;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.bnp-volunteer-skill-options input:checked + span,
.bnp-volunteer-day-options input:checked + span {
    transform: translateY(-2px);
    border-color: var(--vol-green);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

/* Consent */

.bnp-volunteer-consent {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.bnp-volunteer-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 13px 14px;
    border: 1px solid var(--vol-border);
    border-radius: 11px;
    color: #626a74;
    background: #fafbfc;
    font-size: 9px;
    line-height: 1.55;
    cursor: pointer;
}

.bnp-volunteer-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    accent-color: var(--vol-green);
}

/* Step Actions */

.bnp-volunteer-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 27px;
    padding-top: 22px;
    border-top: 1px solid var(--vol-border);
}

.bnp-volunteer-step-actions > span {
    color: #9298a0;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-step-actions button {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    border-radius: 10px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.bnp-volunteer-step-actions button.previous {
    border: 1px solid var(--vol-border);
    color: #656d77;
    background: #ffffff;
}

.bnp-volunteer-step-actions button.next {
    border: 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
    box-shadow: 0 11px 24px rgba(47, 143, 91, 0.23);
}

.bnp-volunteer-step-actions button.submit {
    min-width: 215px;
    border: 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    box-shadow: 0 12px 26px rgba(229, 32, 48, 0.24);
}

.bnp-volunteer-step-actions button.submit span,
.bnp-volunteer-step-actions button.submit small {
    display: block;
    text-align: left;
}

.bnp-volunteer-step-actions button.submit small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 6px;
}

.bnp-volunteer-step-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

/* Sidebar */

.bnp-volunteer-application-sidebar {
    position: sticky;
    top: 95px;
    display: grid;
    gap: 18px;
}

.bnp-volunteer-profile-preview,
.bnp-volunteer-review-card,
.bnp-volunteer-support-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 19px;
    background: #ffffff;
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.07),
        0 5px 15px rgba(15, 23, 42, 0.03);
}

.bnp-volunteer-profile-preview {
    padding: 22px;
}

.bnp-volunteer-preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 19px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--vol-border);
}

.bnp-volunteer-preview-header > span {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-red)
        );
    font-size: 13px;
    font-weight: 800;
}

.bnp-volunteer-preview-header small,
.bnp-volunteer-preview-header h3,
.bnp-volunteer-preview-header p {
    display: block;
}

.bnp-volunteer-preview-header small {
    margin-bottom: 3px;
    color: var(--vol-green);
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-preview-header h3 {
    margin: 0 0 3px;
    color: var(--vol-text);
    font-size: 15px;
    font-weight: 800;
}

.bnp-volunteer-preview-header p {
    margin: 0;
    color: #898f98;
    font-size: 7px;
}

.bnp-volunteer-preview-details {
    display: grid;
}

.bnp-volunteer-preview-details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--vol-border);
}

.bnp-volunteer-preview-details > div:last-child {
    border-bottom: 0;
}

.bnp-volunteer-preview-details span {
    color: #8c929a;
    font-size: 7px;
}

.bnp-volunteer-preview-details strong {
    color: var(--vol-text);
    font-size: 8px;
    font-weight: 800;
    text-align: right;
}

.bnp-volunteer-review-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 22px;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2faf5
        );
}

.bnp-volunteer-review-card > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-review-card small {
    display: block;
    margin-bottom: 3px;
    color: var(--vol-red);
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-review-card h3 {
    margin: 0 0 10px;
    color: var(--vol-text);
    font-size: 16px;
    font-weight: 800;
}

.bnp-volunteer-review-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bnp-volunteer-review-card li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 18px;
    color: #626a74;
    font-size: 8px;
}

.bnp-volunteer-review-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    color: var(--vol-green);
    font-family: FontAwesome;
}

.bnp-volunteer-support-card {
    padding: 23px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1a1f27,
            #35101a 58%,
            #173d2c
        );
}

.bnp-volunteer-support-card > i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
}

.bnp-volunteer-support-card small,
.bnp-volunteer-support-card strong {
    display: block;
}

.bnp-volunteer-support-card small {
    margin-bottom: 4px;
    color: #6bd394;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-support-card strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.bnp-volunteer-support-card p {
    margin: 10px 0 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 8px;
    line-height: 1.6;
}

.bnp-volunteer-support-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================================
   PRINCIPLES
========================================================= */

.bnp-volunteer-principles {
    padding: 75px 0;
    background: #ffffff;
}

.bnp-volunteer-principles-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 32px;
    border: 1px solid rgba(47, 143, 91, 0.13);
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2faf5
        );
    box-shadow: 0 21px 50px rgba(15, 23, 42, 0.08);
}

.bnp-volunteer-principles-card > div:first-child {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.bnp-volunteer-principles-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
    font-size: 21px;
}

.bnp-volunteer-principles-card small {
    display: block;
    margin-bottom: 5px;
    color: var(--vol-red);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-principles-card h2 {
    margin: 0 0 7px;
    color: var(--vol-text);
    font-size: 22px;
    font-weight: 800;
}

.bnp-volunteer-principles-card p {
    max-width: 700px;
    margin: 0;
    color: var(--vol-muted);
    font-size: 9px;
    line-height: 1.65;
}

.bnp-volunteer-principle-list {
    display: grid;
    gap: 9px;
}

.bnp-volunteer-principle-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #56605c;
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-principle-list i {
    color: var(--vol-green);
}

/* =========================================================
   FAQ
========================================================= */

.bnp-volunteer-faq {
    padding: 100px 0;
    background: var(--vol-soft);
}

.bnp-volunteer-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.bnp-volunteer-faq-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.35fr);
    align-items: start;
    gap: 25px;
}

.bnp-volunteer-faq-list {
    display: grid;
    gap: 12px;
}

.bnp-volunteer-faq-item {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 13px 32px rgba(15, 23, 42, 0.05);
}

.bnp-volunteer-faq-item.active {
    border-color: rgba(47, 143, 91, 0.22);
}

.bnp-volunteer-faq-item > button {
    width: 100%;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 20px;
    border: 0;
    color: var(--vol-text);
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.bnp-volunteer-faq-item > button i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
}

.bnp-volunteer-faq-item.active > button i {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-faq-answer {
    display: none;
    padding: 0 20px 19px;
}

.bnp-volunteer-faq-item.active .bnp-volunteer-faq-answer {
    display: block;
}

.bnp-volunteer-faq-answer p {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--vol-border);
    color: var(--vol-muted);
    font-size: 10px;
    line-height: 1.75;
}

.bnp-volunteer-faq-support {
    position: sticky;
    top: 95px;
    padding: 27px;
    border-radius: 20px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1b2028,
            #173e2d 55%,
            #3a101b
        );
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.bnp-volunteer-faq-support > span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-faq-support h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.bnp-volunteer-faq-support p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 9px;
    line-height: 1.7;
}

.bnp-volunteer-faq-support a {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 9px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================================
   FINAL CTA
========================================================= */

.bnp-volunteer-final-cta {
    padding: 78px 0;
    background: #ffffff;
}

.bnp-volunteer-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    border-radius: 24px;
    color: #ffffff;
    background:
        linear-gradient(
            125deg,
            #171b22 0%,
            #173e2d 53%,
            #40101c 100%
        );
    box-shadow: 0 30px 72px rgba(15, 23, 42, 0.19);
}

.bnp-volunteer-final-card > div:first-child > span {
    display: block;
    margin-bottom: 7px;
    color: #69d393;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-final-card h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
}

.bnp-volunteer-final-card p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 10px;
    line-height: 1.7;
}

.bnp-volunteer-final-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}

.bnp-volunteer-final-actions a {
    min-width: 185px;
    min-height: 59px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 11px;
    color: #ffffff;
    transition: transform 0.28s ease;
}

.bnp-volunteer-final-actions a.primary {
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
}

.bnp-volunteer-final-actions a.secondary {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
}

.bnp-volunteer-final-actions a > i {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.13);
}

.bnp-volunteer-final-actions a span,
.bnp-volunteer-final-actions a small {
    display: block;
}

.bnp-volunteer-final-actions a small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 6px;
    text-transform: uppercase;
}

.bnp-volunteer-final-actions a span {
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
}

.bnp-volunteer-final-actions a:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

/* =========================================================
   SUCCESS MODAL
========================================================= */

.bnp-volunteer-success-modal {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 0.3s ease,
        opacity 0.3s ease;
}

.bnp-volunteer-success-modal.active {
    visibility: visible;
    opacity: 1;
}

.bnp-volunteer-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 15, 0.83);
    backdrop-filter: blur(7px);
}

.bnp-volunteer-success-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
    text-align: center;
    transform: translateY(25px) scale(0.96);
    transition: transform 0.3s ease;
}

.bnp-volunteer-success-modal.active
.bnp-volunteer-success-dialog {
    transform: translateY(0) scale(1);
}

.bnp-volunteer-success-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 37px;
    height: 37px;
    border: 0;
    border-radius: 10px;
    color: #727984;
    background: #f0f2f4;
    cursor: pointer;
}

.bnp-volunteer-success-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 18px;
    border: 8px solid #edf9f2;
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-green),
            var(--vol-green-dark)
        );
    font-size: 26px;
}

.bnp-volunteer-success-label {
    display: block;
    margin-bottom: 7px;
    color: var(--vol-red);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-volunteer-success-dialog h2 {
    margin: 0 0 11px;
    color: var(--vol-text);
    font-size: 25px;
    font-weight: 800;
}

.bnp-volunteer-success-dialog p {
    margin: 0;
    color: var(--vol-muted);
    font-size: 10px;
    line-height: 1.75;
}

.bnp-volunteer-reference {
    margin: 21px 0;
    padding: 15px;
    border: 1px solid rgba(47, 143, 91, 0.14);
    border-radius: 12px;
    background: #f3faf6;
}

.bnp-volunteer-reference span,
.bnp-volunteer-reference strong {
    display: block;
}

.bnp-volunteer-reference span {
    margin-bottom: 5px;
    color: #7e858e;
    font-size: 7px;
    text-transform: uppercase;
}

.bnp-volunteer-reference strong {
    color: var(--vol-green-dark);
    font-size: 16px;
    font-weight: 800;
}

.bnp-volunteer-success-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-bottom: 20px;
}

.bnp-volunteer-success-profile > div {
    padding: 12px;
    border: 1px solid var(--vol-border);
    border-radius: 10px;
    background: #fafbfc;
}

.bnp-volunteer-success-profile span,
.bnp-volunteer-success-profile strong {
    display: block;
}

.bnp-volunteer-success-profile span {
    margin-bottom: 4px;
    color: #8b9199;
    font-size: 7px;
    text-transform: uppercase;
}

.bnp-volunteer-success-profile strong {
    color: var(--vol-text);
    font-size: 9px;
    font-weight: 800;
}

.bnp-volunteer-success-button {
    width: 100%;
    min-height: 47px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vol-red),
            var(--vol-red-dark)
        );
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .bnp-volunteer-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);
        gap: 45px;
    }

    .bnp-volunteer-hero-content h1 {
        font-size: 52px;
    }

    .bnp-volunteer-role-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnp-volunteer-impact-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnp-volunteer-impact-track article:nth-child(2) {
        border-right: 0;
    }

    .bnp-volunteer-impact-track article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--vol-border);
    }

    .bnp-volunteer-skill-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {

    .bnp-volunteer-hero {
        min-height: auto;
    }

    .bnp-volunteer-hero-layout {
        grid-template-columns: 1fr;
        padding: 70px 0 95px;
    }

    .bnp-volunteer-board {
        max-width: 720px;
    }

    .bnp-volunteer-why-layout,
    .bnp-volunteer-journey-layout,
    .bnp-volunteer-application-layout {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-journey-heading,
    .bnp-volunteer-application-sidebar {
        position: static;
    }

    .bnp-volunteer-application-sidebar {
        grid-template-columns: repeat(3, 1fr);
    }

    .bnp-volunteer-application-heading,
    .bnp-volunteer-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .bnp-volunteer-application-security {
        width: 100%;
        min-width: 0;
    }

    .bnp-volunteer-faq-layout {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-faq-support {
        position: static;
    }

    .bnp-volunteer-final-card,
    .bnp-volunteer-principles-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {

    .bnp-volunteer-hero-layout {
        padding: 55px 0 76px;
    }

    .bnp-volunteer-hero-content h1 {
        font-size: 38px;
    }

    .bnp-volunteer-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bnp-volunteer-primary-btn,
    .bnp-volunteer-outline-btn {
        width: 100%;
    }

    .bnp-volunteer-hero-meta {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-impact-track,
    .bnp-volunteer-role-grid {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-impact-track article {
        border-right: 0;
        border-bottom: 1px solid var(--vol-border);
    }

    .bnp-volunteer-impact-track article:last-child {
        border-bottom: 0;
    }

    .bnp-volunteer-why,
    .bnp-volunteer-roles,
    .bnp-volunteer-journey,
    .bnp-volunteer-application,
    .bnp-volunteer-faq {
        padding: 62px 0;
    }

    .bnp-volunteer-why-content h2,
    .bnp-volunteer-section-header h2,
    .bnp-volunteer-journey-heading h2,
    .bnp-volunteer-application-heading h2,
    .bnp-volunteer-section-heading h2 {
        font-size: 31px;
    }

    .bnp-volunteer-wizard {
        padding: 21px;
    }

    .bnp-volunteer-wizard-progress {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-form-grid {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-field.full-width {
        grid-column: auto;
    }

    .bnp-volunteer-skill-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnp-volunteer-day-options {
        grid-template-columns: repeat(4, 1fr);
    }

    .bnp-volunteer-application-sidebar {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-principles-card > div:first-child {
        align-items: flex-start;
        flex-direction: column;
    }

    .bnp-volunteer-final-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .bnp-volunteer-final-actions a {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {

    .bnp-volunteer-hero-content h1 {
        font-size: 32px;
    }

    .bnp-volunteer-kicker {
        font-size: 7px;
    }

    .bnp-volunteer-board {
        padding: 20px;
    }

    .bnp-volunteer-board-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .bnp-volunteer-why-content h2,
    .bnp-volunteer-section-header h2,
    .bnp-volunteer-journey-heading h2,
    .bnp-volunteer-application-heading h2,
    .bnp-volunteer-section-heading h2 {
        font-size: 27px;
    }

    .bnp-volunteer-impact-main {
        padding: 24px 20px;
    }

    .bnp-volunteer-floating-badge {
        display: none;
    }

    .bnp-volunteer-skill-options,
    .bnp-volunteer-day-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnp-volunteer-step-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bnp-volunteer-step-actions button {
        width: 100%;
    }

    .bnp-volunteer-success-profile {
        grid-template-columns: 1fr;
    }

    .bnp-volunteer-success-modal {
        padding: 10px;
    }

    .bnp-volunteer-success-dialog {
        padding: 29px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .bnp-volunteer-pulse {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}