/* =========================================================
   BLOOD NETWORK PAKISTAN
   FINAL COMMON HEADER & FOOTER
   PART 1
========================================================= */

:root {
    --bnp-primary: #d91f33;
    --bnp-primary-dark: #971225;
    --bnp-green: #2f8f5b;
    --bnp-green-dark: #1f6842;
    --bnp-header-bg: #15211c;
    --bnp-header-bg-soft: #1b2c24;
    --bnp-dark: #171b22;
    --bnp-text: #252b34;
    --bnp-muted: #78818c;
    --bnp-border: rgba(255, 255, 255, 0.1);
    --bnp-white: #ffffff;
}

body.bnp-menu-open {
    overflow: hidden;
}

/* =========================================================
   COMMON HEADER
========================================================= */

.bnp-site-header {
    position: relative;
    z-index: 20000;
    width: 100%;
}

.bnp-header-shell {
    position: relative;
    background:
        linear-gradient(
            110deg,
            #132019 0%,
            #182921 58%,
            #22171a 100%
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 32px rgba(10, 20, 15, 0.13);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.bnp-site-header.is-sticky .bnp-header-shell {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background:
        linear-gradient(
            110deg,
            rgba(19, 32, 25, 0.97),
            rgba(24, 41, 33, 0.97),
            rgba(34, 23, 26, 0.97)
        );
    box-shadow: 0 14px 38px rgba(10, 20, 15, 0.2);
    backdrop-filter: blur(16px);
}

.bnp-header-row {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* =========================================================
   HEADER BRAND
========================================================= */

.bnp-header-brand {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    text-decoration: none;
}

.bnp-header-brand:hover,
.bnp-header-brand:focus {
    color: #ffffff;
    text-decoration: none;
}

.bnp-header-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: block;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    padding: 5px;
    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bnp-header-brand-text,
.bnp-header-brand-text strong,
.bnp-header-brand-text small {
    display: block;
}

.bnp-header-brand-text strong {
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.bnp-header-brand-text small {
    color: #72d89b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.bnp-desktop-navigation {
    flex: 1;
    min-width: 0;
}

.bnp-navigation-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bnp-navigation-list > li {
    position: relative;
}

.bnp-navigation-list > li > a,
.bnp-resources-trigger {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    border: 0;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.77);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.bnp-navigation-list > li > a::after,
.bnp-resources-trigger::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    border-radius: 5px;
    background:
        linear-gradient(
            90deg,
            var(--bnp-primary),
            #6ed395
        );
    opacity: 0;
    transform: scaleX(0.25);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.bnp-navigation-list > li > a:hover,
.bnp-navigation-list > li > a.active,
.bnp-resources-trigger:hover,
.bnp-resources-trigger.active,
.bnp-navigation-dropdown.open .bnp-resources-trigger {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
}

.bnp-navigation-list > li > a:hover::after,
.bnp-navigation-list > li > a.active::after,
.bnp-resources-trigger:hover::after,
.bnp-resources-trigger.active::after,
.bnp-navigation-dropdown.open .bnp-resources-trigger::after {
    opacity: 1;
    transform: scaleX(1);
}

.bnp-resources-trigger i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.bnp-navigation-dropdown.open .bnp-resources-trigger i {
    transform: rotate(180deg);
}

/* =========================================================
   RESOURCES DROPDOWN
========================================================= */

.bnp-resources-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: -70px;
    width: 335px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.2),
        0 8px 20px rgba(15, 23, 42, 0.06);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.bnp-resources-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 92px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    transform: rotate(45deg);
}

.bnp-navigation-dropdown.open .bnp-resources-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.bnp-resources-menu > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    color: var(--bnp-text);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.bnp-resources-menu > a:hover,
.bnp-resources-menu > a.active {
    transform: translateX(4px);
    color: var(--bnp-text);
    background: #f5f8f6;
    box-shadow: inset 3px 0 0 var(--bnp-green);
    text-decoration: none;
}

.bnp-resource-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
}

.bnp-resource-icon.red {
    background:
        linear-gradient(
            135deg,
            var(--bnp-primary),
            var(--bnp-primary-dark)
        );
}

.bnp-resource-icon.green {
    background:
        linear-gradient(
            135deg,
            var(--bnp-green),
            var(--bnp-green-dark)
        );
}

.bnp-resource-icon.dark {
    background:
        linear-gradient(
            135deg,
            #4f5965,
            #20262d
        );
}

.bnp-resource-icon.maroon {
    background:
        linear-gradient(
            135deg,
            #7d1c32,
            #3d0d19
        );
}

.bnp-resources-menu > a > span:last-child,
.bnp-resources-menu strong,
.bnp-resources-menu small {
    display: block;
}

.bnp-resources-menu strong {
    margin-bottom: 3px;
    color: var(--bnp-text);
    font-size: 12px;
    font-weight: 800;
}

.bnp-resources-menu small {
    color: #8a929c;
    font-size: 10px;
}

/* =========================================================
   HEADER REQUEST BUTTON
========================================================= */

.bnp-header-actions {
    flex: 0 0 auto;
}

.bnp-header-request-button {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bnp-primary),
            var(--bnp-primary-dark)
        );
    box-shadow: 0 12px 28px rgba(217, 31, 51, 0.3);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.bnp-header-request-button:hover,
.bnp-header-request-button.active {
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(217, 31, 51, 0.4);
}

.bnp-header-request-button > i {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
}

.bnp-header-request-button span,
.bnp-header-request-button small {
    display: block;
}

.bnp-header-request-button span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.bnp-header-request-button small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 8px;
    text-transform: uppercase;
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.bnp-mobile-menu-button {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.bnp-mobile-menu-button span {
    width: 21px;
    height: 2px;
    border-radius: 5px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.bnp-mobile-navigation {
    position: fixed;
    inset: 0;
    z-index: 30000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.bnp-mobile-navigation.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.bnp-mobile-navigation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 11, 0.74);
    backdrop-filter: blur(5px);
}

.bnp-mobile-navigation-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, 88vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    background:
        linear-gradient(
            160deg,
            #15211c 0%,
            #182a21 62%,
            #2a151b 100%
        );
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.bnp-mobile-navigation.active .bnp-mobile-navigation-panel {
    transform: translateX(0);
}

.bnp-mobile-navigation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.bnp-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.bnp-mobile-brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.bnp-mobile-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 4px;
    border-radius: 12px;
    background: #ffffff;
}

.bnp-mobile-brand strong,
.bnp-mobile-brand small {
    display: block;
}

.bnp-mobile-brand strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.bnp-mobile-brand small {
    color: #6dd395;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.bnp-mobile-close-button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.bnp-mobile-menu {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.bnp-mobile-menu > a,
.bnp-mobile-resources-trigger {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.045);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.bnp-mobile-menu > a:hover,
.bnp-mobile-menu > a.active,
.bnp-mobile-resources.open .bnp-mobile-resources-trigger {
    color: #ffffff;
    border-color: rgba(109, 211, 149, 0.18);
    background: rgba(47, 143, 91, 0.17);
    text-decoration: none;
}

.bnp-mobile-menu > a > i,
.bnp-mobile-resources-trigger span > i {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bnp-green),
            var(--bnp-green-dark)
        );
}

.bnp-mobile-resources-trigger {
    width: 100%;
    justify-content: space-between;
    border: 1px solid transparent;
}

.bnp-mobile-resources-trigger > span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bnp-mobile-resources-trigger > i {
    transition: transform 0.25s ease;
}

.bnp-mobile-resources.open .bnp-mobile-resources-trigger > i {
    transform: rotate(180deg);
}

.bnp-mobile-resources-menu {
    display: none;
    gap: 6px;
    padding: 7px 0 0 46px;
}

.bnp-mobile-resources.open .bnp-mobile-resources-menu {
    display: grid;
}

.bnp-mobile-resources-menu a {
    padding: 10px 12px;
    border-left: 2px solid rgba(109, 211, 149, 0.2);
    border-radius: 0 9px 9px 0;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.035);
    font-size: 11px;
    font-weight: 700;
}

.bnp-mobile-resources-menu a:hover,
.bnp-mobile-resources-menu a.active {
    color: #ffffff;
    border-left-color: var(--bnp-primary);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.bnp-mobile-emergency {
    margin-top: 18px;
}

.bnp-mobile-emergency a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border-radius: 12px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bnp-primary),
            var(--bnp-primary-dark)
        );
    box-shadow: 0 14px 30px rgba(217, 31, 51, 0.24);
}

.bnp-mobile-emergency a:hover {
    color: #ffffff;
    text-decoration: none;
}

.bnp-mobile-emergency i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
}

.bnp-mobile-emergency span,
.bnp-mobile-emergency small {
    display: block;
}

.bnp-mobile-emergency span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.bnp-mobile-emergency small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    text-transform: uppercase;
}

.bnp-mobile-navigation-footer {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding-top: 20px;
}

.bnp-mobile-navigation-footer > span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: #69d394;
    box-shadow: 0 0 0 6px rgba(47, 143, 91, 0.13);
}

.bnp-mobile-navigation-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   COMMON FOOTER
========================================================= */

.bnp-site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #121b17 0%,
            #18271f 55%,
            #28171b 100%
        );
}

.bnp-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    pointer-events: none;
}

.bnp-footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.bnp-footer-glow.glow-one {
    top: -180px;
    left: -170px;
    width: 390px;
    height: 390px;
    background: rgba(47, 143, 91, 0.13);
}

.bnp-footer-glow.glow-two {
    right: -170px;
    bottom: -180px;
    width: 390px;
    height: 390px;
    background: rgba(217, 31, 51, 0.12);
}

.bnp-site-footer .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.bnp-footer-main {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.35fr)
        minmax(150px, 0.7fr)
        minmax(170px, 0.78fr)
        minmax(250px, 1.05fr);
    gap: 42px;
    padding: 66px 0 48px;
}

/* =========================================================
   FOOTER BRAND
========================================================= */

.bnp-footer-brand-column {
    max-width: 360px;
}

.bnp-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.bnp-footer-brand:hover,
.bnp-footer-brand:focus {
    color: #ffffff;
    text-decoration: none;
}

.bnp-footer-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: block;
    object-fit: contain;
    padding: 5px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bnp-footer-brand span,
.bnp-footer-brand strong,
.bnp-footer-brand small {
    display: block;
}

.bnp-footer-brand strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.bnp-footer-brand small {
    color: #72d89b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.bnp-footer-brand-column > p {
    margin: 20px 0 19px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.75;
}

.bnp-footer-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
}

.bnp-footer-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(109, 211, 149, 0.12);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.63);
    background: rgba(47, 143, 91, 0.07);
    font-size: 9px;
    font-weight: 700;
}

.bnp-footer-trust-row i {
    color: #6bd395;
}

/* =========================================================
   FOOTER SOCIALS
========================================================= */

.bnp-footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bnp-footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.055);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.bnp-footer-socials a:hover {
    transform: translateY(-4px);
    border-color: rgba(109, 211, 149, 0.22);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bnp-green),
            var(--bnp-green-dark)
        );
    text-decoration: none;
}

.bnp-footer-socials a:last-child:hover {
    background: #25d366;
}

/* =========================================================
   FOOTER COLUMNS
========================================================= */

.bnp-footer-column {
    min-width: 0;
}

.bnp-footer-column-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.bnp-footer-column-heading > span {
    width: 18px;
    height: 4px;
    flex: 0 0 18px;
    border-radius: 5px;
    background:
        linear-gradient(
            90deg,
            var(--bnp-primary),
            #6bd395
        );
}

.bnp-footer-column-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.bnp-footer-links {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bnp-footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 14px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
    font-weight: 600;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.bnp-footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(109, 211, 149, 0.65);
    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        background 0.25s ease;
}

.bnp-footer-links a:hover,
.bnp-footer-links a.active {
    transform: translateX(4px);
    color: #ffffff;
    text-decoration: none;
}

.bnp-footer-links a:hover::before,
.bnp-footer-links a.active::before {
    width: 8px;
    border-radius: 4px;
    background: var(--bnp-primary);
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.bnp-footer-contact-list {
    display: grid;
    gap: 10px;
}

.bnp-footer-contact-list > a,
.bnp-footer-contact-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
}

.bnp-footer-contact-list > a {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.bnp-footer-contact-list > a:hover {
    transform: translateX(4px);
    border-color: rgba(109, 211, 149, 0.18);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
}

.bnp-footer-contact-list > a > i,
.bnp-footer-contact-list > div > i {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bnp-green),
            var(--bnp-green-dark)
        );
    font-size: 13px;
}

.bnp-footer-contact-list > a:nth-child(2) > i {
    background:
        linear-gradient(
            135deg,
            var(--bnp-primary),
            var(--bnp-primary-dark)
        );
}

.bnp-footer-contact-list span,
.bnp-footer-contact-list small {
    display: block;
}

.bnp-footer-contact-list span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
}

.bnp-footer-contact-list small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.39);
    font-size: 8px;
    text-transform: uppercase;
}

/* =========================================================
   FOOTER EMERGENCY BUTTON
========================================================= */

.bnp-footer-emergency-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 11px 13px;
    border-radius: 11px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bnp-primary),
            var(--bnp-primary-dark)
        );
    box-shadow: 0 13px 28px rgba(217, 31, 51, 0.23);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.bnp-footer-emergency-button:hover,
.bnp-footer-emergency-button.active {
    transform: translateY(-4px);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(217, 31, 51, 0.32);
}

.bnp-footer-emergency-button > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
}

.bnp-footer-emergency-button span,
.bnp-footer-emergency-button small {
    display: block;
}

.bnp-footer-emergency-button span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.bnp-footer-emergency-button small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 8px;
    text-transform: uppercase;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.bnp-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bnp-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 10px;
    line-height: 1.6;
}

.bnp-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bnp-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.bnp-footer-bottom-links a:hover,
.bnp-footer-bottom-links a.active {
    color: #6bd395;
    text-decoration: none;
}

.bnp-footer-bottom-links > span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

/* =========================================================
   COMPONENT LOAD STATES
========================================================= */

#siteHeader,
#siteFooter {
    min-height: 1px;
}

#siteHeader.bnp-component-loading,
#siteFooter.bnp-component-loading {
    position: relative;
    min-height: 70px;
    overflow: hidden;
    background: #15211c;
}

#siteHeader.bnp-component-loading::after,
#siteFooter.bnp-component-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent
        );
    transform: translateX(-100%);
    animation: bnpComponentLoading 1.2s infinite;
}

@keyframes bnpComponentLoading {
    to {
        transform: translateX(100%);
    }
}


/* =========================================================
   FINAL RESPONSIVE SYSTEM
========================================================= */

@media (max-width: 1240px) {

    .bnp-header-row {
        gap: 16px;
    }

    .bnp-header-brand {
        min-width: 170px;
    }

    .bnp-header-logo {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .bnp-header-brand-text strong {
        font-size: 15px;
    }

    .bnp-navigation-list > li > a,
    .bnp-resources-trigger {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 11px;
    }

    .bnp-header-request-button {
        padding-right: 11px;
        padding-left: 11px;
    }

    .bnp-footer-main {
        grid-template-columns:
            minmax(250px, 1.2fr)
            minmax(145px, 0.68fr)
            minmax(165px, 0.74fr)
            minmax(230px, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1100px) {

    .bnp-desktop-navigation,
    .bnp-header-actions {
        display: none;
    }

    .bnp-mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
    }

    .bnp-header-row {
        min-height: 74px;
    }

    .bnp-header-brand {
        min-width: 0;
    }

    .bnp-header-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .bnp-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 50px;
    }

    .bnp-footer-brand-column {
        max-width: none;
    }
}

@media (max-width: 767px) {

    .bnp-header-row {
        min-height: 68px;
        gap: 12px;
    }

    .bnp-header-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        padding: 4px;
        border-radius: 11px;
    }

    .bnp-header-brand {
        gap: 9px;
    }

    .bnp-header-brand-text strong {
        font-size: 14px;
    }

    .bnp-header-brand-text small {
        font-size: 9px;
        letter-spacing: 0.9px;
    }

    .bnp-mobile-menu-button {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .bnp-mobile-navigation-panel {
        width: min(355px, 91vw);
        padding: 16px;
    }

    .bnp-mobile-navigation-header {
        padding-bottom: 14px;
    }

    .bnp-mobile-brand img {
        width: 45px;
        height: 45px;
    }

    .bnp-mobile-menu {
        gap: 6px;
        margin-top: 14px;
    }

    .bnp-mobile-menu > a,
    .bnp-mobile-resources-trigger {
        min-height: 44px;
        padding: 9px 11px;
    }

    .bnp-mobile-menu > a > i,
    .bnp-mobile-resources-trigger span > i {
        width: 29px;
        height: 29px;
    }

    .bnp-mobile-emergency {
        margin-top: 14px;
    }

    .bnp-mobile-navigation-footer {
        padding-top: 16px;
    }

    .bnp-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 46px 0 34px;
    }

    .bnp-footer-brand-column {
        max-width: 100%;
    }

    .bnp-footer-brand {
        gap: 10px;
    }

    .bnp-footer-logo {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
        border-radius: 13px;
    }

    .bnp-footer-brand strong {
        font-size: 16px;
    }

    .bnp-footer-brand-column > p {
        margin: 16px 0;
        font-size: 12px;
        line-height: 1.7;
    }

    .bnp-footer-trust-row {
        margin-bottom: 16px;
    }

    .bnp-footer-column-heading {
        margin-bottom: 15px;
    }

    .bnp-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
    }

    .bnp-footer-contact-list {
        gap: 8px;
    }

    .bnp-footer-bottom {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 18px 0;
    }
}

@media (max-width: 480px) {

    .bnp-header-brand-text strong {
        font-size: 13px;
    }

    .bnp-header-brand-text small {
        font-size: 8px;
    }

    .bnp-mobile-navigation-panel {
        width: 94vw;
        padding: 14px;
    }

    .bnp-mobile-brand strong {
        font-size: 13px;
    }

    .bnp-mobile-close-button {
        width: 37px;
        height: 37px;
    }

    .bnp-mobile-resources-menu {
        padding-left: 37px;
    }

    .bnp-footer-main {
        gap: 24px;
        padding-top: 38px;
    }

    .bnp-footer-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .bnp-footer-links {
        grid-template-columns: 1fr;
    }

    .bnp-footer-socials a {
        width: 36px;
        height: 36px;
    }

    .bnp-footer-contact-list > a,
    .bnp-footer-contact-list > div {
        padding: 10px;
    }

    .bnp-footer-emergency-button {
        margin-top: 12px;
    }

    .bnp-footer-bottom-links {
        flex-wrap: wrap;
    }
}

/* =========================================================
   STICKY HEADER SPACER
========================================================= */

.bnp-header-spacer {
    display: none;
}

.bnp-site-header.is-sticky + .bnp-header-spacer {
    display: block;
    height: 82px;
}

@media (max-width: 1100px) {

    .bnp-site-header.is-sticky + .bnp-header-spacer {
        height: 74px;
    }
}

@media (max-width: 767px) {

    .bnp-site-header.is-sticky + .bnp-header-spacer {
        height: 68px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.bnp-site-header a:focus-visible,
.bnp-site-header button:focus-visible,
.bnp-site-footer a:focus-visible {
    outline: 3px solid rgba(109, 211, 149, 0.42);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
.bnp-final-footer{background:linear-gradient(135deg,#132019,#1d3326 60%,#34181e);color:#fff;padding:54px 0 0}
.bnp-final-footer-grid{display:grid;grid-template-columns:1.45fr .8fr .8fr 1fr;gap:36px}
.bnp-final-footer h3{font-size:16px;color:#fff;margin:0 0 16px}
.bnp-final-footer a{display:block;color:rgba(255,255,255,.68);margin:8px 0;font-size:14px;text-decoration:none}
.bnp-final-footer a:hover{color:#fff}
.bnp-final-brand-lockup{display:flex!important;align-items:center;gap:13px;margin:0!important}
.bnp-final-brand-lockup img{width:72px;height:72px;object-fit:contain;background:#fff;border-radius:14px;padding:4px}
.bnp-final-brand-lockup span{display:block}.bnp-final-brand-lockup strong,.bnp-final-brand-lockup em,.bnp-final-brand-lockup small{display:block;font-style:normal}
.bnp-final-brand-lockup strong{font-size:20px;color:#dc2c3c}.bnp-final-brand-lockup em{font-size:19px;font-weight:900;color:#2b7447}
.bnp-final-brand-lockup small{font-size:9px;letter-spacing:1.5px;color:rgba(255,255,255,.55)}
.bnp-final-brand p{max-width:440px;color:rgba(255,255,255,.62);font-size:14px;margin-top:18px}
.bnp-final-footer-bottom{margin-top:35px;padding:20px 0;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.45);font-size:12px}
@media(max-width:900px){.bnp-final-footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.bnp-final-footer{padding-top:36px}.bnp-final-footer-grid{grid-template-columns:1fr;gap:22px}.bnp-final-brand-lockup img{width:60px;height:60px}}
