/*
 * RPC Header & Footer — Scoped CSS
 * All rules prefixed: .rpc-site-header or .rpc-site-footer
 * Zero global selectors. Zero bleed into Elementor or page content.
 * @version 1.0.0
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════
   SHARED TOKENS  (scoped to both wrappers)
══════════════════════════════════════════════════ */
.rpc-site-header,
.rpc-site-footer {
  --rpc-g:       #00A354;
  --rpc-g2:      #00883f;
  --rpc-g-s:     rgba(0,163,84,.10);
  --rpc-g-m:     rgba(0,163,84,.20);
  --rpc-n:       #2C3189;
  --rpc-dark:    #0B0F1E;
  --rpc-dark2:   #141828;
  --rpc-bg:      #FFFFFF;
  --rpc-bg2:     #F5F6F9;
  --rpc-bg3:     #EEF0F6;
  --rpc-txt:     #1a1f3a;
  --rpc-txt2:    #525878;
  --rpc-txt3:    #9098b8;
  --rpc-border:  #E2E4EE;
  --rpc-border2: #C8CBDD;
  --rpc-r4:  4px;
  --rpc-r6:  6px;
  --rpc-r8:  8px;
  --rpc-r12: 12px;
  --rpc-r36: 36px;
  --rpc-sh:    0 2px 12px rgba(26,31,58,.08),0 1px 3px rgba(26,31,58,.05);
  --rpc-sh-md: 0 6px 24px rgba(26,31,58,.11),0 2px 8px rgba(26,31,58,.06);
  --rpc-sh-g:  0 6px 20px rgba(0,163,84,.30);
  --rpc-max:   1220px;
  --rpc-px:    clamp(16px,4vw,48px);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.rpc-site-header *,
.rpc-site-header *::before,
.rpc-site-header *::after,
.rpc-site-footer *,
.rpc-site-footer *::before,
.rpc-site-footer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.rpc-site-header a,
.rpc-site-footer a { text-decoration: none; color: inherit; }
.rpc-site-header ul,
.rpc-site-header ol,
.rpc-site-header nav,
.rpc-site-footer ul,
.rpc-site-footer ol,
.rpc-site-footer nav { list-style: none; }
.rpc-site-header img,
.rpc-site-footer img { display: block; max-width: 100%; height: auto; }
.rpc-site-header button,
.rpc-site-footer button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Wrap ── */
.rpc-site-header .rpc-wrap,
.rpc-site-footer .rpc-wrap {
  width: 100%;
  max-width: var(--rpc-max);
  margin: 0 auto;
  padding: 0 var(--rpc-px);
}

/* ── Shared buttons ── */
.rpc-site-header .rpc-btn,
.rpc-site-footer .rpc-btn,
.rpc-mob .rpc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 12px 24px;
  border-radius: var(--rpc-r8);
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}
.rpc-site-header .rpc-btn-g,
.rpc-site-footer .rpc-btn-g,
.rpc-mob .rpc-btn-g  { background: var(--rpc-g); color: #fff; box-shadow: var(--rpc-sh-g); }
.rpc-site-header .rpc-btn-g:hover,
.rpc-mob .rpc-btn-g:hover { background: var(--rpc-g2); transform: translateY(-1px); }
.rpc-site-header .rpc-btn-dark,
.rpc-mob .rpc-btn-dark { background: var(--rpc-dark); color: #fff; }
.rpc-site-header .rpc-btn-dark:hover,
.rpc-mob .rpc-btn-dark:hover { background: #1a2035; transform: translateY(-1px); }
.rpc-site-header .rpc-btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Accred pill ── */
.rpc-site-header .rpc-accred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rpc-g-s);
  border: 1px solid var(--rpc-g-m);
  border-radius: var(--rpc-r36);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rpc-g);
}

/* ══════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════ */
.rpc-site-header .rpc-topbar {
  height: 36px;
  background: var(--rpc-g);
  overflow: hidden;
}
.rpc-site-header .rpc-topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.rpc-site-header .rpc-ti {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
}
.rpc-site-header .rpc-ti-group { display: flex; align-items: center; gap: 20px; }
.rpc-site-header .rpc-ti-sep   { width: 1px; height: 14px; background: rgba(255,255,255,.28); }
.rpc-site-header .rpc-topbar-r { display: flex; align-items: center; gap: 12px; }
.rpc-site-header .rpc-tsoc     { display: flex; gap: 6px; }
.rpc-site-header .rpc-tsoc a {
  width: 24px; height: 24px;
  border-radius: var(--rpc-r4);
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .16s;
}
.rpc-site-header .rpc-tsoc a:hover { background: rgba(255,255,255,.28); }
.rpc-site-header .rpc-t-ph {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
@media (max-width: 860px) {
  /* Keep location, hide hours + ABN */
  .rpc-site-header .rpc-ti-group .rpc-ti:nth-child(n+2) { display: none; }
}
@media (max-width: 600px) {
  /* Center topbar: social icons + divider + phone only */
  .rpc-site-header .rpc-ti-group  { display: none; }
  .rpc-site-header .rpc-ti-sep    { display: none; }
  .rpc-site-header .rpc-tsoc      { display: flex; gap: 6px; }
  .rpc-site-header .rpc-topbar    { height: 38px; }
  .rpc-site-header .rpc-topbar-in {
    justify-content: center;
    gap: 0;
  }
  /* Visual separator between social group and phone */
  .rpc-site-header .rpc-topbar-r {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .rpc-site-header .rpc-topbar-r::before {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.3);
    margin: 0 4px;
  }
  /* Slightly larger social icon boxes on mobile */
  .rpc-site-header .rpc-tsoc a {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.2);
    border-radius: 6px;
  }
  .rpc-site-header .rpc-tsoc a svg { width: 13px; height: 13px; }
  /* Phone text bigger and bold */
  .rpc-site-header .rpc-t-ph {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .02em;
  }
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.rpc-site-header .rpc-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rpc-border);
  height: 62px;
  transition: box-shadow .25s;
  position: relative;
  z-index: 999;
}
.rpc-site-header .rpc-header.rpc-sticky { position: sticky; top: 0; }
.rpc-site-header .rpc-header.rpc-elevated { box-shadow: 0 4px 20px rgba(26,31,58,.1); }
.rpc-site-header .rpc-header-in {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 18px;
}

/* Logo */
.rpc-site-header .rpc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.rpc-site-header .rpc-logo img   { height: 46px; width: auto; object-fit: contain; }
.rpc-site-header .rpc-logo-div   { width: 1px; height: 26px; background: var(--rpc-border2); }
.rpc-site-header .rpc-logo-text b { display: block; font-size: 13px; font-weight: 700; color: var(--rpc-txt); letter-spacing: .05em; text-transform: uppercase; line-height: 1.2; }
.rpc-site-header .rpc-logo-text span { font-size: 10.5px; font-weight: 500; color: var(--rpc-txt3); letter-spacing: .06em; }
@media (max-width: 400px) { .rpc-site-header .rpc-logo-div, .rpc-site-header .rpc-logo-text { display: none; } }

/* Nav */
.rpc-site-header .rpc-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 0;
}
.rpc-site-header .rpc-ni  { position: relative; }
.rpc-site-header .rpc-nl  {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--rpc-txt2);
  padding: 6px 12px;
  border-radius: var(--rpc-r6);
  transition: all .16s;
  white-space: nowrap;
}
.rpc-site-header .rpc-nl:hover { color: var(--rpc-txt); background: var(--rpc-bg2); }
.rpc-site-header .rpc-ch { width: 9px; height: 9px; transition: transform .18s; color: var(--rpc-txt3); }
.rpc-site-header .rpc-ni:hover .rpc-nl .rpc-ch { transform: rotate(180deg); }

/* Dropdown */
.rpc-site-header .rpc-dd {
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--rpc-border);
  border-radius: var(--rpc-r12);
  padding: 14px 8px 8px; /* top padding bridges the gap visually */
  box-shadow: var(--rpc-sh-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  /* Delay hiding by 220ms so cursor can travel from link to dropdown */
  transition: opacity .18s .22s, visibility .18s .22s;
}
/* Invisible hover bridge: fills the gap so hover is never lost */
.rpc-site-header .rpc-dd::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.rpc-site-header .rpc-ni:hover .rpc-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .15s, visibility .15s; /* instant show, no delay */
}
.rpc-site-header .rpc-dd-h {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rpc-txt3);
  padding: 8px 10px 4px;
  display: block;
}
.rpc-site-header .rpc-dd a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--rpc-r6);
  font-size: 13.5px;
  color: var(--rpc-txt2);
  transition: all .14s;
}
.rpc-site-header .rpc-dd a svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--rpc-g);
  transition: color .14s;
}
.rpc-site-header .rpc-dd a:hover { background: var(--rpc-g-s); color: var(--rpc-g); }
.rpc-site-header .rpc-dd a:hover svg { color: var(--rpc-g2); }
.rpc-site-header .rpc-dd-sep { height: 1px; background: var(--rpc-border); margin: 4px 8px; }

/* Mega dropdown */
.rpc-site-header .rpc-mega {
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  min-width: 560px;
  background: #fff;
  border: 1px solid var(--rpc-border);
  border-radius: var(--rpc-r12);
  padding: 24px 18px 18px; /* top padding bridges the gap */
  box-shadow: var(--rpc-sh-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  transition: opacity .18s .22s, visibility .18s .22s;
}
.rpc-site-header .rpc-mega::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.rpc-site-header .rpc-ni:hover .rpc-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .15s, visibility .15s;
}
.rpc-site-header .rpc-mega-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.rpc-site-header .rpc-mega-cl-h {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rpc-txt3);
  padding: 4px 8px;
  display: block;
}
.rpc-site-header .rpc-mega a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: var(--rpc-r6);
  font-size: 13px;
  color: var(--rpc-txt2);
  transition: all .14s;
}
.rpc-site-header .rpc-mega a svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--rpc-g);
  transition: color .14s;
}
.rpc-site-header .rpc-mega a:hover { background: var(--rpc-g-s); color: var(--rpc-g); }
.rpc-site-header .rpc-mega a:hover svg { color: var(--rpc-g2); }
.rpc-site-header .rpc-mega-foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--rpc-border); }

/* Header right */
.rpc-site-header .rpc-hdr-r { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.rpc-site-header .rpc-hdr-ph {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rpc-txt);
  padding: 4px 8px;
  transition: color .16s;
}
.rpc-site-header .rpc-hdr-ph:hover { color: var(--rpc-g); }
.rpc-site-header .rpc-ph-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rpc-g);
  flex-shrink: 0;
  animation: rpcPulse 2s infinite;
}
@keyframes rpcPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}
.rpc-site-header .rpc-ham {
  display: none;
  width: 38px; height: 38px;
  border-radius: var(--rpc-r8);
  background: var(--rpc-bg2);
  border: 1px solid var(--rpc-border);
  align-items: center;
  justify-content: center;
  color: var(--rpc-txt);
  flex-shrink: 0;
}
@media (max-width: 1020px) {
  .rpc-site-header .rpc-nav   { display: none; }
  .rpc-site-header .rpc-hdr-ph { display: none; }
  .rpc-site-header .rpc-ham   { display: flex; }
}
@media (max-width: 560px) {
  .rpc-site-header .rpc-hdr-r .rpc-btn-g { display: none; }
}

/* ══════════════════════════════════════════════════
   MOBILE NAV
   (Rendered outside .rpc-site-header but styled here)
══════════════════════════════════════════════════ */
.rpc-mob {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.rpc-mob * { box-sizing: border-box; margin: 0; padding: 0; }
.rpc-mob a { text-decoration: none; color: inherit; }
.rpc-mob ul, .rpc-mob nav { list-style: none; }
.rpc-mob.rpc-mob-open { transform: translateX(0); }
.rpc-mob-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #E2E4EE;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.rpc-mob-cls {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #F5F6F9;
  border: 1px solid #E2E4EE;
  display: flex; align-items: center; justify-content: center;
  color: #525878;
  cursor: pointer;
}
.rpc-mob-bd { padding: 12px 20px; flex: 1; }
.rpc-mob-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9098b8;
  padding: 14px 4px 5px;
  display: block;
}
.rpc-mob-bd a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: #525878;
  padding: 10px;
  border-radius: 8px;
  transition: all .14s;
}
.rpc-mob-bd a svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: #00A354;
  transition: color .14s;
}
.rpc-mob-bd a:hover { background: rgba(0,163,84,.10); color: #00A354; }
.rpc-mob-bd a:hover svg { color: #00883f; }
.rpc-mob-ft {
  padding: 16px 20px;
  border-top: 1px solid #E2E4EE;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  bottom: 0;
  background: #fff;
}
.rpc-mob-ft .rpc-btn { justify-content: center; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.rpc-site-footer .rpc-footer { background: #141828; }

/* Green CTA bar */
.rpc-site-footer .rpc-f-topbar { background: var(--rpc-g); }
.rpc-site-footer .rpc-f-topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
.rpc-site-footer .rpc-f-top-left  { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.rpc-site-footer .rpc-f-top-item  { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #fff; padding: 4px 16px 4px 0; }
.rpc-site-footer .rpc-f-top-sep   { width: 1px; height: 20px; background: rgba(255,255,255,.3); margin: 0 12px; }
.rpc-site-footer .rpc-f-top-cta   {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13.5px; font-weight: 700; color: #fff;
  transition: background .18s;
  white-space: nowrap;
}
.rpc-site-footer .rpc-f-top-cta:hover { background: rgba(255,255,255,.28); }
@media (max-width: 760px) {
  .rpc-site-footer .rpc-f-top-sep { display: none; }
  .rpc-site-footer .rpc-f-top-item:nth-child(n+3) { display: none; }
}

/* Main 2-col layout */
.rpc-site-footer .rpc-f-main {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 320px;
}
.rpc-site-footer .rpc-f-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px var(--rpc-px) 40px var(--rpc-px);
  border-right: 1px solid rgba(255,255,255,.06);
}
.rpc-site-footer .rpc-f-logo-row img { height: 64px; object-fit: contain; }

/* ── Footer brand card (white card over dark background) ── */
.rpc-site-footer .rpc-f-brand-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.rpc-site-footer .rpc-f-brand-card .rpc-f-tagline {
  font-size: 13.5px;
  color: #525878;
  line-height: 1.65;
  max-width: 100%;
  font-weight: 400;
}
.rpc-site-footer .rpc-f-brand-card .rpc-f-logo-row img {
  height: 64px;
  object-fit: contain;
  /* Show full logo on white — no brightness invert needed */
}
.rpc-site-footer .rpc-f-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 280px;
}
.rpc-site-footer .rpc-f-contact-list { display: flex; flex-direction: column; gap: 12px; }
.rpc-site-footer .rpc-f-ci { display: flex; align-items: flex-start; gap: 10px; }
.rpc-site-footer .rpc-f-ci-ic {
  width: 30px; height: 30px;
  border-radius: var(--rpc-r8);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.5);
}
.rpc-site-footer .rpc-f-ci-txt { display: flex; flex-direction: column; }
.rpc-site-footer .rpc-f-ci-txt strong { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.rpc-site-footer .rpc-f-ci-txt span, .rpc-site-footer .rpc-f-ci-txt a { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.3; }
.rpc-site-footer .rpc-f-big-phone { font-size: 18px; font-weight: 700; color: #fff; }
.rpc-site-footer .rpc-f-big-phone:hover { color: #4ddc8f; }
.rpc-site-footer .rpc-f-acc-row { display: flex; flex-wrap: wrap; gap: 6px; }
.rpc-site-footer .rpc-f-acc-tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--rpc-r36);
  background: rgba(0,163,84,.15);
  border: 1px solid rgba(0,163,84,.3);
  color: #4ddc8f;
}
.rpc-site-footer .rpc-f-soc-row { display: flex; gap: 8px; }
.rpc-site-footer .rpc-f-soc-row a {
  width: 36px; height: 36px;
  border-radius: var(--rpc-r8);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .18s;
}
.rpc-site-footer .rpc-f-soc-row a:hover { background: rgba(255,255,255,.16); color: #fff; }

/* Right: nav grid */
.rpc-site-footer .rpc-f-right {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  padding: 40px var(--rpc-px);
}
.rpc-site-footer .rpc-fn-col {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.rpc-site-footer .rpc-fn-col:first-child { padding-left: 0; }
.rpc-site-footer .rpc-fn-col:last-child  { border-right: none; }
.rpc-site-footer .rpc-fn-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.rpc-site-footer .rpc-fn-links { display: flex; flex-direction: column; gap: 2px; }
.rpc-site-footer .rpc-fn-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  padding: 4px 0;
  transition: color .14s;
  line-height: 1.4;
}
.rpc-site-footer .rpc-fn-links a:hover { color: #fff; }
.rpc-site-footer .rpc-fn-hl { color: rgba(0,163,84,.8) !important; }
.rpc-site-footer .rpc-fn-hl:hover { color: #4ddc8f !important; }
.rpc-site-footer .rpc-fn-sep { height: 1px; background: rgba(255,255,255,.07); margin: 7px 0; }

/* Pests strip */
.rpc-site-footer .rpc-f-pests {
  background: #0A0D1A;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px var(--rpc-px);
}
.rpc-site-footer .rpc-f-pests-in  { display: flex; align-items: flex-start; gap: 16px; }
.rpc-site-footer .rpc-f-pests-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  white-space: nowrap; padding-top: 4px; flex-shrink: 0; min-width: 96px;
}
.rpc-site-footer .rpc-f-pests-links { display: flex; flex-wrap: wrap; }
.rpc-site-footer .rpc-f-pests-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,.42);
  transition: color .14s;
  padding: 2px 10px;
  line-height: 1.7;
  position: relative;
}
.rpc-site-footer .rpc-f-pests-links a::after { content: '·'; position: absolute; right: 0; color: rgba(255,255,255,.14); top: 2px; }
.rpc-site-footer .rpc-f-pests-links a:last-child::after { display: none; }
.rpc-site-footer .rpc-f-pests-links a:hover { color: #4ddc8f; }
.rpc-site-footer .rpc-f-pests-hl { color: rgba(0,163,84,.75) !important; }
.rpc-site-footer .rpc-f-pests-hl:hover { color: #4ddc8f !important; }

/* Bottom legal bar */
.rpc-site-footer .rpc-f-btm {
  background: #0B0F1E;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 13px var(--rpc-px);
}
.rpc-site-footer .rpc-f-btm-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.rpc-site-footer .rpc-f-btm-in p { font-size: 11.5px; color: rgba(255,255,255,.25); }
.rpc-site-footer .rpc-f-btm-links { display: flex; gap: 16px; flex-wrap: wrap; }
.rpc-site-footer .rpc-f-btm-links a { font-size: 11.5px; color: rgba(255,255,255,.25); transition: color .14s; }
.rpc-site-footer .rpc-f-btm-links a:hover { color: rgba(255,255,255,.5); }
.rpc-site-footer .rpc-yr { /* JS fills this */ }

/* ── Responsive: footer ── */
@media (max-width: 1040px) {
  .rpc-site-footer .rpc-f-main  { grid-template-columns: 1fr; min-height: unset; }
  .rpc-site-footer .rpc-f-left  {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-direction: row; flex-wrap: wrap; gap: 24px;
    padding: 28px var(--rpc-px);
  }
  .rpc-site-footer .rpc-f-tagline      { max-width: 100%; flex: 1 1 260px; }
  .rpc-site-footer .rpc-f-contact-list { flex: 1 1 220px; gap: 10px; }
  .rpc-site-footer .rpc-f-acc-row      { flex: 1 1 100%; }
  .rpc-site-footer .rpc-f-right        { padding: 28px var(--rpc-px); }
}
@media (max-width: 760px) {
  .rpc-site-footer .rpc-f-right   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rpc-site-footer .rpc-fn-col    { padding: 0; border-right: none; }
  .rpc-site-footer .rpc-f-left    { flex-direction: column; gap: 16px; padding: 24px var(--rpc-px); }
  /* Reset flex sizing so children stack naturally */
  .rpc-site-footer .rpc-f-logo-row,
  .rpc-site-footer .rpc-f-tagline,
  .rpc-site-footer .rpc-f-contact-list,
  .rpc-site-footer .rpc-f-acc-row,
  .rpc-site-footer .rpc-f-soc-row { flex: none; width: 100%; }
  .rpc-site-footer .rpc-f-tagline { font-size: 13px; }
  .rpc-site-footer .rpc-f-pests-in { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .rpc-site-footer .rpc-f-left    { gap: 14px; padding: 20px var(--rpc-px); }
  .rpc-site-footer .rpc-f-right   { grid-template-columns: 1fr; padding: 20px var(--rpc-px); }
  .rpc-site-footer .rpc-f-btm-in  { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rpc-site-footer .rpc-f-btm-links { gap: 12px; }
  .rpc-site-footer .rpc-f-contact-list { gap: 8px; }
  .rpc-site-footer .rpc-f-ci-txt span,
  .rpc-site-footer .rpc-f-ci-txt a     { font-size: 13px; }
  .rpc-site-footer .rpc-f-top-cta   { padding: 8px 14px; font-size: 12.5px; }
  .rpc-site-footer .rpc-f-top-item  { font-size: 11.5px; }

  /* ── Pests strip: 2-column grid, no dot separators ── */
  .rpc-site-footer .rpc-f-pests       { padding: 18px var(--rpc-px); }
  .rpc-site-footer .rpc-f-pests-in    { flex-direction: column; gap: 10px; }
  .rpc-site-footer .rpc-f-pests-label { font-size: 10px; padding: 0; min-width: unset; }
  .rpc-site-footer .rpc-f-pests-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .rpc-site-footer .rpc-f-pests-links a {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    padding: 7px 6px;
    border-radius: 6px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    line-height: 1.3;
  }
  .rpc-site-footer .rpc-f-pests-links a:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.05);
  }
  /* Remove the dot ::after separator on mobile */
  .rpc-site-footer .rpc-f-pests-links a::after { display: none; }
  /* Fire Ant + View All stay highlighted */
  .rpc-site-footer .rpc-f-pests-links a.rpc-f-pests-hl { color: rgba(0,163,84,.85) !important; font-weight: 600; }
}
