/* ================================================================
   PREMIUM HEADER & FOOTER — Pestofix
   Scoped under .pfx-* and #pfx-header / #pfx-footer wrappers only.
   Does NOT touch the rest of the site. Brand: #086faa / #e01c24
   ================================================================ */

:root {
    --pfx-blue: #086faa;
    --pfx-blue-dk: #054e7a;
    --pfx-blue-lt: #2a90c8;
    --pfx-blue-pale: #eaf4fb;
    --pfx-red: #e01c24;
    --pfx-red-dk: #b51720;
    --pfx-green: #25d366;
    --pfx-green-dk: #1da851;
    --pfx-dark: #0e1726;
    --pfx-dark-2: #131c2d;
    --pfx-text: #2b3445;
    --pfx-muted: #6b7686;
    --pfx-border: #e6ecf2;
    --pfx-white: #ffffff;
    --pfx-shadow-sm: 0 2px 8px rgba(8, 111, 170, 0.06);
    --pfx-shadow-md: 0 8px 28px rgba(8, 111, 170, 0.10);
    --pfx-shadow-lg: 0 18px 50px rgba(8, 111, 170, 0.18);
    --pfx-radius: 12px;
    --pfx-radius-sm: 8px;
    --pfx-trans: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ================== HEADER WRAPPER ================== */
#pfx-header,
#pfx-header *,
#pfx-header *::before,
#pfx-header *::after {
    box-sizing: border-box;
}

#pfx-header {
    position: relative;
    z-index: 200;
    font-family: 'Work Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Announcement / top strip — gradient brand bar */
.pfx-strip {
    background: linear-gradient(90deg, var(--pfx-blue-dk) 0%, var(--pfx-blue) 60%, var(--pfx-blue-lt) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.pfx-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pfx-strip-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.pfx-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd34d;
    box-shadow: 0 0 0 0 rgba(255, 211, 77, 0.6);
    animation: pfx-pulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pfx-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 211, 77, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 211, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 211, 77, 0); }
}

.pfx-strip-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pfx-strip-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pfx-strip-cta {
    background: #fff;
    color: var(--pfx-blue-dk);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: var(--pfx-trans);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.pfx-strip-cta:hover {
    background: var(--pfx-red);
    color: #fff;
    transform: translateY(-1px);
}

.pfx-strip-social {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pfx-strip-social a {
    color: #fff;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    transition: var(--pfx-trans);
    text-decoration: none;
    font-size: 13px;
}

.pfx-strip-social a:hover {
    background: #fff;
    color: var(--pfx-blue);
    transform: translateY(-2px);
}

/* Main bar — sticky with glassmorphism on scroll */
.pfx-main {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 150;
    border-bottom: 1px solid var(--pfx-border);
    transition: var(--pfx-trans);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.pfx-main.pfx-scrolled {
    background: rgba(255,255,255,0.88);
    box-shadow: var(--pfx-shadow-md);
    border-bottom-color: transparent;
}

.pfx-main-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    transition: var(--pfx-trans);
}

.pfx-main.pfx-scrolled .pfx-main-inner {
    padding: 8px 22px;
}

.pfx-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.pfx-logo img {
    height: 54px;
    width: auto;
    display: block;
    transition: var(--pfx-trans);
}

.pfx-main.pfx-scrolled .pfx-logo img {
    height: 44px;
}

/* Info cards (phone / mobile / whatsapp) */
.pfx-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pfx-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    border-radius: var(--pfx-radius);
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border: 1px solid var(--pfx-border);
    transition: var(--pfx-trans);
    text-decoration: none;
}

.pfx-info:hover {
    border-color: var(--pfx-blue);
    box-shadow: var(--pfx-shadow-sm);
    transform: translateY(-1px);
}

.pfx-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--pfx-blue) 0%, var(--pfx-blue-dk) 100%);
    box-shadow: 0 4px 10px rgba(8,111,170,0.25);
    flex-shrink: 0;
    font-size: 16px;
}

.pfx-info.pfx-wa .pfx-info-icon {
    background: linear-gradient(135deg, var(--pfx-green) 0%, var(--pfx-green-dk) 100%);
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    animation: pfx-wa-pulse 2.2s infinite;
}

@keyframes pfx-wa-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

.pfx-info-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.pfx-info-label {
    font-size: 10.5px;
    color: var(--pfx-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.pfx-info-value {
    font-size: 14.5px;
    color: var(--pfx-text);
    font-weight: 700;
    margin-top: 2px;
    white-space: nowrap;
}

.pfx-info.pfx-wa .pfx-info-value {
    color: var(--pfx-green-dk);
}

/* Navigation row */
.pfx-nav-wrap {
    background: var(--pfx-dark);
    position: relative;
    z-index: 100;
}

.pfx-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.pfx-nav {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pfx-nav > li {
    position: relative;
}

.pfx-nav > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 16px 16px;
    transition: color 0.18s ease;
    position: relative;
}

.pfx-nav > li > a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: var(--pfx-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    border-radius: 2px 2px 0 0;
}

.pfx-nav > li > a:hover,
.pfx-nav > li.pfx-active > a,
.pfx-nav > li:hover > a {
    color: #fff;
}

.pfx-nav > li:hover > a::after,
.pfx-nav > li.pfx-active > a::after {
    transform: scaleX(1);
}

.pfx-nav > li.pfx-has-children > a::before {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 10px;
    margin-left: 4px;
    order: 2;
    opacity: 0.7;
    transition: transform 0.2s;
}

.pfx-nav > li.pfx-has-children:hover > a::before {
    transform: rotate(180deg);
}

/* Hide any legacy .dropdown-btn that script.js may auto-inject inside our nav.
   The original script.js does:
       $('.main-header .navigation li.dropdown').append('<div class="dropdown-btn">...')
   Our nav uses .pfx-has-children (not .dropdown) so it shouldn't trigger,
   but this is a safety net in case the markup or scripts change. */
#pfx-header .pfx-nav .dropdown-btn,
#pfx-header .pfx-nav-wrap .dropdown-btn {
    display: none !important;
}

/* Dropdown */
.pfx-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 0 0 var(--pfx-radius) var(--pfx-radius);
    box-shadow: var(--pfx-shadow-lg);
    list-style: none;
    margin: 0;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--pfx-trans);
    z-index: 200;
    border-top: 3px solid var(--pfx-red);
}

.pfx-nav > li:hover > .pfx-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pfx-submenu li a {
    display: block;
    padding: 11px 14px;
    color: var(--pfx-text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--pfx-radius-sm);
    transition: var(--pfx-trans);
}

.pfx-submenu li a:hover {
    background: var(--pfx-blue-pale);
    color: var(--pfx-blue);
    padding-left: 18px;
    font-weight: 600;
}

.pfx-nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pfx-nav-est {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--pfx-red) 0%, var(--pfx-red-dk) 100%);
    color: #fff;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(224,28,36,0.32);
    transition: var(--pfx-trans);
}

.pfx-nav-est:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(224,28,36,0.45);
    color: #fff;
}

/* Mobile toggler & overlay */
.pfx-burger {
    display: none;
    background: var(--pfx-blue);
    border: 0;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--pfx-trans);
}

.pfx-burger:hover { background: var(--pfx-blue-dk); }

.pfx-mobile-actions {
    display: none;
    gap: 8px;
    align-items: center;
}

.pfx-mobile-actions a.pfx-m-form {
    background: var(--pfx-red);
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.pfx-mobile-actions a.pfx-m-wa img {
    width: 38px;
    height: 38px;
    display: block;
}

.pfx-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14,23,38,0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--pfx-trans);
}

.pfx-overlay.pfx-show {
    opacity: 1;
    visibility: visible;
}

.pfx-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 88vw);
    height: 100dvh;
    background: var(--pfx-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 22px 18px 28px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
}

.pfx-drawer.pfx-show { right: 0; }

.pfx-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pfx-drawer-logo img {
    height: 42px;
    width: auto;
    filter: brightness(1.4);
}

.pfx-drawer-close {
    background: rgba(255,255,255,0.08);
    border: 0;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.pfx-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pfx-drawer > ul > li > a,
.pfx-drawer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--pfx-trans);
    cursor: pointer;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
}

.pfx-drawer > ul > li > a:hover,
.pfx-drawer-toggle:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.pfx-drawer-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 14px;
    margin: 4px 0 6px 14px;
    border-left: 2px solid rgba(8,111,170,0.4);
}

.pfx-drawer-sub.pfx-open { max-height: 400px; }

.pfx-drawer-sub a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 6px;
}

.pfx-drawer-sub a:hover {
    color: #fff;
    background: rgba(8,111,170,0.2);
}

.pfx-drawer-cta {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pfx-drawer-cta a {
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.pfx-drawer-call { background: var(--pfx-red); color: #fff; }
.pfx-drawer-wa   { background: var(--pfx-green); color: #fff; }

/* Floating WhatsApp */
.pfx-float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--pfx-green);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 22px rgba(37,211,102,0.45);
    z-index: 9997;
    text-decoration: none;
    transition: var(--pfx-trans);
    animation: pfx-wa-pulse 2.2s infinite;
}

.pfx-float-wa:hover {
    transform: scale(1.1);
    background: var(--pfx-green-dk);
    color: #fff;
}

/* ================== RESPONSIVE HEADER ================== */
@media (max-width: 1100px) {
    .pfx-info-row .pfx-info:nth-child(2) { display: none; } /* hide mobile number, keep landline + wa */
}

@media (max-width: 991px) {
    .pfx-info-row { display: none; }
    .pfx-nav-wrap { display: none; }
    .pfx-mobile-actions { display: flex; }
    .pfx-burger { display: inline-flex; }
    .pfx-main-inner { padding: 12px 18px; }
}

@media (max-width: 540px) {
    .pfx-strip-text { font-size: 11.5px; }
    .pfx-strip-right .pfx-strip-cta { display: none; }
    .pfx-logo img { height: 35px; }
    .pfx-mobile-actions a.pfx-m-form { padding: 5px; font-size: 11.5px; }
    .pfx-mobile-actions a.pfx-m-wa img { width: 34px; height: 34px; }
}

/* ================== FOOTER WRAPPER ================== */
#pfx-footer,
#pfx-footer *,
#pfx-footer *::before,
#pfx-footer *::after {
    box-sizing: border-box;
}

#pfx-footer {
    font-family: 'Work Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #cfd6e2;
    margin-top: 60px;
}

/* CTA strip above footer */
.pfx-cta-band {
    position: relative;
    margin: 0 22px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(50%);
    z-index: 5;
}

.pfx-cta-inner {
    background: linear-gradient(135deg, var(--pfx-blue) 0%, var(--pfx-blue-dk) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 36px 44px;
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 22px 60px rgba(8,111,170,0.32);
    overflow: hidden;
    position: relative;
}

.pfx-cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pfx-cta-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
    color: #fff;
}

.pfx-cta-text p {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.pfx-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pfx-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--pfx-blue-dk);
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--pfx-trans);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.pfx-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    background: var(--pfx-red);
    color: #fff;
}

.pfx-cta-btn.pfx-cta-wa { background: var(--pfx-green); color: #fff; }
.pfx-cta-btn.pfx-cta-wa:hover { background: var(--pfx-green-dk); color: #fff; }

/* Main footer body */
.pfx-foot-body {
    background: linear-gradient(180deg, var(--pfx-dark) 0%, var(--pfx-dark-2) 100%);
    padding: 130px 22px 30px;
    position: relative;
    overflow: hidden;
}

.pfx-foot-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(8,111,170,0.12) 0%, transparent 35%),
        radial-gradient(circle at 88% 80%, rgba(224,28,36,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.pfx-foot-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pfx-foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
    gap: 44px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pfx-foot-brand .pfx-foot-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 18px;
}

.pfx-foot-brand h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
}

.pfx-foot-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0 0 18px;
}

.pfx-foot-brand p a {
    color: var(--pfx-blue-lt);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed currentColor;
}

.pfx-foot-brand p a:hover { color: #fff; }

.pfx-foot-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pfx-foot-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: var(--pfx-trans);
    font-size: 15px;
}

.pfx-foot-social a:hover {
    background: var(--pfx-blue);
    color: #fff;
    transform: translateY(-3px);
}

.pfx-foot-social a.pfx-fs-ig:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888 100%);
}

.pfx-foot-social a.pfx-fs-fb:hover { background: #1877f2; }

.pfx-foot-col h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #fff;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 12px;
}

.pfx-foot-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--pfx-red), var(--pfx-blue-lt));
    border-radius: 2px;
}

.pfx-foot-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pfx-foot-col ul li {
    margin-bottom: 9px;
}

.pfx-foot-col ul li a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--pfx-trans);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.pfx-foot-col ul li a::before {
    content: '›';
    margin-right: 6px;
    color: var(--pfx-red);
    opacity: 0;
    transform: translateX(-6px);
    display: inline-block;
    transition: var(--pfx-trans);
}

.pfx-foot-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.pfx-foot-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact column variant */
.pfx-foot-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.62);
    font-size: 13.5px;
    line-height: 1.55;
}

.pfx-foot-contact ul li i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(8,111,170,0.25), rgba(8,111,170,0.10));
    color: var(--pfx-blue-lt);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pfx-foot-contact ul li strong {
    color: #fff;
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pfx-foot-contact ul li a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-weight: 600;
    transition: var(--pfx-trans);
}

.pfx-foot-contact ul li a:hover { color: var(--pfx-blue-lt); }

/* Trust badges row */
.pfx-trust {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}

.pfx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.pfx-badge i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pfx-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Footer bottom */
.pfx-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0 0;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
}

.pfx-foot-nav {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pfx-foot-nav a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: var(--pfx-trans);
}

.pfx-foot-nav a:hover { color: #fff; }

/* Scroll to top */
.pfx-scroll-top {
    position: fixed;
    bottom: 92px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pfx-blue);
    color: #fff;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--pfx-trans);
    box-shadow: 0 6px 18px rgba(8,111,170,0.4);
    z-index: 9995;
    font-size: 18px;
}

.pfx-scroll-top.pfx-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pfx-scroll-top:hover {
    background: var(--pfx-red);
    transform: translateY(-3px);
}

/* ================== RESPONSIVE FOOTER ================== */
@media (max-width: 991px) {
    .pfx-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px;
    }
    .pfx-cta-actions { justify-content: center; }
    .pfx-foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .pfx-foot-body { padding-top: 150px; }
}

@media (max-width: 600px) {
    .pfx-cta-band { transform: translateY(40%); margin: 0 14px; }
    .pfx-cta-inner { padding: 24px 20px; border-radius: 14px; }
    .pfx-cta-text h3 { font-size: 18px; }
    .pfx-cta-btn { font-size: 13px; padding: 11px 18px; }
    .pfx-foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pfx-foot-bottom {
        flex-direction: column;
        text-align: center;
    }
    .pfx-foot-nav { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .pfx-foot-body { padding-top: 130px; padding-bottom: 24px; }
}

/* Print fallback */
@media print {
    .pfx-strip, .pfx-nav-wrap, .pfx-float-wa, .pfx-scroll-top { display: none !important; }
}
