:root {
  --pi-gray: #6b7280;
  --pi-rust: #c2410c;
  --pi-black: #111111;
  --pi-off: #f3f4f6;
  --pi-white: #ffffff;
}

.pi-site-head,
.pi-header,
.pi-footer,
.pi-search-overlay,
.pi-nav-offcanvas,
.pi-offcanvas-overlay {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pi-site-head .container,
.pi-header .container,
.pi-search-overlay .container,
.pi-footer .container {
  max-width: 1350px;
}

.pi-header-top {
  background: linear-gradient(90deg, #111111, #1b1b1b);
  color: #d1d5db;
  border-bottom: 1px solid rgba(194, 65, 12, 0.34);
}
.pi-header-top-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pi-contact-strip,
.pi-quick-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.pi-contact-strip a,
.pi-quick-strip a {
  color: #e5e7eb;
  font-size: 13px;
  text-decoration: none;
}
.pi-contact-strip a:hover,
.pi-quick-strip a:hover {
  color: #fff;
}

.pi-site-head {
  position: relative;
  z-index: 1030;
}
.pi-header {
  position: relative;
}
.pi-nav-wrap {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1031;
  background: rgba(243, 244, 246, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: box-shadow 0.22s ease, background-color 0.22s ease;
}
.pi-nav-wrap.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1031;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.98);
}
.pi-nav-wrap.is-compact {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.98);
}
.pi-nav-placeholder {
  display: none;
  width: 100%;
  pointer-events: none;
}
.pi-navbar.navbar {
  position: relative !important;
  width: 100% !important;
  padding: 0 !important;
  max-height: none !important;
  background: transparent !important;
  display: block !important;
}
.pi-nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}
.pi-navbar .navbar-brand img {
  max-height: 62px;
  width: auto;
}
.pi-navbar .brand-and-icon {
  display: flex;
  align-items: center;
  width: 100%;
}
.pi-mobile-toggler {
  display: none;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--pi-black);
  width: 44px;
  height: 44px;
}

.pi-navbar-collapse {
  display: block !important;
  overflow: visible !important;
}
.pi-navbar-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.pi-nav-item {
  list-style: none;
  position: static;
}
.pi-menu-link {
  border: 0;
  background: transparent;
  min-height: 88px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pi-black);
  transition: color 0.2s ease;
}
.pi-menu-link:hover,
.pi-nav-item:hover > .pi-menu-link,
.pi-menu-link:focus-visible {
  color: var(--pi-rust);
  outline: none;
}
.pi-menu-link .drop-icon i {
  font-size: 11px;
}

.pi-mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: calc(100% - 1px);
  width: min(1350px, calc(100vw - 32px));
  min-width: 980px;
  background:
    linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: none;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
  padding: 0;
  display: block !important;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1080;
  overflow: hidden;
}
.pi-mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea580c, #c2410c);
  z-index: 2;
}
.pi-nav-item.mega-open > .pi-mega-menu,
.pi-nav-item:hover > .pi-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* override legacy global nav hover rules that collapse submenu width */
.pi-navbar .pi-navbar-nav > li:hover .pi-mega-menu,
.pi-navbar .pi-navbar-nav > li .pi-mega-menu {
  left: 50% !important;
  right: auto !important;
  width: min(1350px, calc(100vw - 32px)) !important;
  max-width: 1350px !important;
  min-width: 980px !important;
  display: block !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16) !important;
}

.pi-mega-inner {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 320px;
}
.pi-mega-aside {
  padding: 20px 18px;
  background:
    linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #111827 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.pi-mega-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 15%, rgba(194, 65, 12, 0.22), transparent 48%);
}
.pi-mega-aside > * {
  position: relative;
  z-index: 1;
}
.pi-mega-aside-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(155deg, #f8fafc 0%, #eef2f7 48%, #e2e8f0 100%);
  margin-bottom: 6px;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 8px 20px rgba(0, 0, 0, 0.2);
}
.pi-mega-aside-media img {
  width: 100%;
  max-height: 96px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
}
.pi-mega-aside-media--placeholder {
  background: linear-gradient(155deg, rgba(255, 247, 237, 0.95) 0%, #f1f5f9 100%);
}
.pi-mega-aside-media-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #c2410c;
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
  border: 1px solid rgba(194, 65, 12, 0.25);
  box-shadow: 0 8px 18px rgba(194, 65, 12, 0.18);
}
.pi-mega-aside-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.12);
  color: #fdba74;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pi-mega-aside-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.25;
  display: block;
}
.pi-mega-aside-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.9);
}
.pi-mega-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-self: flex-start;
}
.pi-mega-count i {
  color: #fb923c;
}
.pi-mega-aside-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.pi-mega-aside a.pi-mega-aside-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(253, 186, 116, 0.55);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pi-mega-aside a.pi-mega-aside-link:hover,
.pi-mega-aside a.pi-mega-aside-link:focus-visible {
  color: #fff !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(253, 186, 116, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}
.pi-mega-aside a.pi-mega-aside-link i {
  font-size: 11px;
  color: #fdba74 !important;
  transition: transform 0.2s ease;
}
.pi-mega-aside a.pi-mega-aside-link:hover i {
  transform: translateX(3px);
}
.pi-mega-aside-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ea580c, #c2410c);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(194, 65, 12, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pi-mega-aside-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(194, 65, 12, 0.42);
  color: #fff !important;
  text-decoration: none;
}

.pi-mega-main {
  width: 100%;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pi-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.pi-mega-title {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.pi-mega-head-meta {
  font-size: 11px;
  font-weight: 700;
  color: #9a3412;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid rgba(194, 65, 12, 0.22);
  white-space: nowrap;
}
.pi-mega-types {
  flex: 1;
  min-height: 0;
}
.pi-mega-types ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(194, 65, 12, 0.45) rgba(148, 163, 184, 0.15);
}
.pi-mega-types ul::-webkit-scrollbar {
  width: 6px;
}
.pi-mega-types ul::-webkit-scrollbar-thumb {
  background: rgba(194, 65, 12, 0.45);
  border-radius: 999px;
}
.pi-mega-types li {
  margin: 0;
}
.pi-mega-types a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1px solid transparent;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.pi-mega-link-text {
  flex: 1;
  min-width: 0;
}
.pi-mega-link-arrow {
  flex-shrink: 0;
  font-size: 11px;
  color: #c2410c;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.pi-mega-types a:hover,
.pi-mega-types a:focus-visible {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border-color: rgba(194, 65, 12, 0.32);
  color: #9a3412 !important;
  text-decoration: none;
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.12);
  outline: none;
}
.pi-mega-types a:hover .pi-mega-link-arrow,
.pi-mega-types a:focus-visible .pi-mega-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.pi-menu-link .drop-icon {
  position: static;
  right: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  transition: transform 0.22s ease, color 0.22s ease;
}
.pi-nav-item:hover > .pi-menu-link .drop-icon,
.pi-nav-item.mega-open > .pi-menu-link .drop-icon {
  color: var(--pi-rust);
  transform: rotate(180deg);
}

.pi-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pi-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.pi-action-btn:hover,
.pi-action-btn:focus-visible,
.pi-action-wa:hover,
.pi-action-wa:focus-visible {
  text-decoration: none !important;
}
.pi-action-btn i {
  color: #f3f4f6 !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
}
.pi-action-btn:hover,
.pi-action-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.2);
  outline: none;
}
.pi-action-search:hover,
.pi-action-search:focus-visible {
  border-color: rgba(194, 65, 12, 0.45);
  color: #fff;
}
.pi-action-search {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}
.pi-action-search:hover,
.pi-action-search:focus-visible {
  background: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
}
.pi-action-quote {
  background: var(--pi-rust);
  color: #f3f4f6;
  border-color: var(--pi-rust);
}
.pi-action-quote:hover,
.pi-action-quote:focus-visible {
  background: linear-gradient(145deg, #d15a23 0%, #9a3412 100%);
  border-color: #9a3412;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(194, 65, 12, 0.35);
}
.pi-action-wa {
  background: #25D366;
  border-color: #25D366;
  color: #f3f4f6;
}
.pi-action-wa:hover,
.pi-action-wa:focus-visible {
  background: linear-gradient(145deg, #2bdf73 0%, #1ea951 100%);
  border-color: #1ea951;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.3);
}
.pi-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.pi-btn-primary {
  background: var(--pi-rust);
  color: #fff;
  border: 1px solid var(--pi-rust);
}
.pi-btn-primary:hover {
  background: #9a3412;
  border-color: #9a3412;
  color: #fff;
}
.pi-btn-light {
  background: #fff;
  border: 1px solid #d1d5db;
  color: var(--pi-black);
}
.pi-btn-whatsapp {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}

.pi-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  padding: 100px 0 20px;
}
.pi-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
}
.pi-search-float {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.24);
  padding: 16px;
}
.pi-search-form {
  display: grid;
  grid-template-columns: 18px 1fr 40px 40px auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 8px 10px;
  background: #f9fafb;
}
.pi-search-form:focus-within {
  border-color: rgba(194, 65, 12, 0.52);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}
.pi-search-form .pi-search-prefix-icon {
  color: var(--pi-gray);
}
.pi-search-form input,
.pi-mobile-search input {
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  outline: none;
}
.pi-search-clear {
  width: 40px;
  height: 40px;
  border: 1px solid var(--pi-rust);
  border-radius: 10px;
  background: var(--pi-rust);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}
.pi-voice-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--pi-rust);
  border-radius: 10px;
  background: var(--pi-rust);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
}
.pi-voice-btn i,
.pi-search-clear i {
  font-size: 15px !important;
  color: #f3f4f6 !important;
  line-height: 1 !important;
  display: block !important;
  position: static !important;
  top: auto !important;
}
.pi-voice-btn:hover,
.pi-voice-btn:focus-visible,
.pi-voice-btn.is-listening {
  border-color: #9a3412;
  color: #ffffff;
  background: #9a3412;
  outline: none;
}
.pi-search-clear:hover {
  background: #9a3412;
  border-color: #9a3412;
}
.pi-search-submit,
.pi-mobile-search button {
  min-height: 40px;
  border: 1px solid var(--pi-rust);
  border-radius: 10px;
  background: var(--pi-rust);
  color: #fff;
  padding: 0 16px;
}
.pi-search-state {
  margin-top: 10px;
  font-size: 13px;
  color: var(--pi-gray);
}
.pi-search-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
}
.pi-search-col {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  max-height: 420px;
  overflow: auto;
}
.pi-search-col-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pi-gray);
  line-height: 1.3;
}
.pi-search-col ul + .pi-search-col-label {
  margin-top: 14px;
}
.pi-search-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pi-search-col li + li {
  margin-top: 6px;
}
.pi-search-recent-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 6px;
  align-items: center;
}
.pi-search-recent-remove {
  width: 30px;
  height: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pi-search-recent-remove:hover,
.pi-search-recent-remove:focus-visible {
  background: #fff6f2;
  border-color: rgba(194, 65, 12, 0.3);
  color: #c2410c;
  outline: none;
}
.pi-search-col a,
.pi-search-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f2937;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px;
  width: 100%;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.pi-search-col a:hover,
.pi-search-col a:focus-visible,
.pi-search-chip:hover {
  background: #fff6f2;
  border-color: rgba(194, 65, 12, 0.2);
  color: var(--pi-rust);
  outline: none;
}
.pi-search-thumb {
  width: 44px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
}
.pi-search-empty {
  color: #6b7280;
  font-size: 14px;
  padding: 8px 2px;
}
.pi-search-hit mark {
  background: #ffedd5;
  color: #9a3412;
  padding: 0 2px;
}

.pi-nav-offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(92vw, 430px);
  height: 100vh;
  z-index: 1045;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: right 0.24s ease;
}
.pi-nav-offcanvas.open { right: 0; }
.pi-offcanvas-head {
  min-height: 76px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
}
.pi-offcanvas-head img { max-height: 48px; }
.pi-offcanvas-close {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
}
.pi-mobile-search {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
}
.pi-mobile-search form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}
.pi-mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 14px 120px;
}
.pi-mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.pi-mobile-toggle {
  width: 100%;
  border: 0;
  background: #f9fafb;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.pi-mobile-panel { display: none; padding: 8px 0 10px; }
.pi-mobile-item.open .pi-mobile-panel { display: block; }
.pi-mobile-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--pi-gray);
  margin: 10px 0 6px;
  font-weight: 700;
}
.pi-mobile-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  font-size: 13px;
}
.pi-mobile-panel a:hover { background: #fff6f2; color: var(--pi-rust); }
.pi-mobile-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 12px 14px;
}
.pi-mobile-cta .pi-btn { width: 100%; }
.pi-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  z-index: 1040;
  display: none;
}
.pi-offcanvas-overlay.open { display: block; }
body.pi-nav-locked { overflow: hidden; }

/* Premium Footer System */
.pi-footer {
  background: #111111;
  color: #d1d5db;
  position: relative;
}
.pi-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(194, 65, 12, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.pi-footer > * {
  position: relative;
  z-index: 1;
}
.pi-prefooter {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pi-prefooter-inner {
  background: linear-gradient(125deg, #151515 0%, #1f2937 100%);
  border: 1px solid rgba(194, 65, 12, 0.42);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.pi-prefooter-kicker {
  margin: 0 0 8px;
  color: #fdba74;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.pi-prefooter-copy .pi-prefooter-title,
.pi-prefooter-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  display: block;
}
.pi-prefooter-copy p:not(.pi-prefooter-title) {
  margin: 10px 0 0;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}
.pi-prefooter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pi-btn-wa-ghost {
  border: 1px solid #1ea951;
  color: #e8fff0 !important;
  background: rgba(30, 169, 81, 0.2);
  transition: all 0.24s ease;
}
.pi-btn-outline-lite {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  background: transparent;
  transition: all 0.24s ease;
}
.pi-btn-wa-ghost:visited,
.pi-btn-wa-ghost:active,
.pi-btn-wa-ghost:focus-visible {
  color: #e8fff0 !important;
}
.pi-btn-outline-lite:visited,
.pi-btn-outline-lite:active,
.pi-btn-outline-lite:focus-visible {
  color: #ffffff !important;
}
.pi-prefooter-actions .pi-btn-primary {
  transition: all 0.24s ease;
}
.pi-prefooter-actions .pi-btn i{
  margin-right:8px;
}
.pi-prefooter-actions .pi-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(194, 65, 12, 0.35);
  color: #ffffff !important;
  text-decoration: none;
}
.pi-btn-wa-ghost:hover {
  transform: translateY(-2px);
  background: rgba(30, 169, 81, 0.3);
  border-color: #29c667;
  box-shadow: 0 10px 20px rgba(30, 169, 81, 0.25);
  color: #eafff1 !important;
  text-decoration: none;
}
.pi-btn-outline-lite:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 186, 116, 0.7);
  color: #fdba74 !important;
  background: rgba(253, 186, 116, 0.08);
  text-decoration: none;
}

.pi-footer-main {
  padding: 44px 0 28px;
}
.pi-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.2fr;
  gap: 22px;
}
.pi-footer-col {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(248, 248, 248, 0.1), rgba(243, 244, 246, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 22px rgba(0, 0, 0, 0.16);
  padding: 16px 16px 14px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.pi-footer-col:hover {
  transform: translateY(-3px);
  border-color: rgba(194, 65, 12, 0.42);
  background: linear-gradient(165deg, rgba(248, 248, 248, 0.14), rgba(243, 244, 246, 0.09));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 34px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(194, 65, 12, 0.14);
}
.pi-footer-panel .pi-footer-col-title,
.pi-footer-col .pi-footer-col-title,
.pi-footer-col h4 {
  margin: 0 0 12px;
  color: #f9fafb;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  display: block;
}
.pi-footer-toggle {
  display: none;
}
.pi-footer-about,
.pi-footer-position {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.85;
  margin: 12px 0 0;
}
.pi-footer-logo img {
  width: 190px;
  height: auto;
}
.pi-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pi-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f3f4f6 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pi-footer-social a i {
  color: inherit !important;
}
.pi-footer-social a:visited,
.pi-footer-social a:active,
.pi-footer-social a:focus-visible {
  color: #f3f4f6 !important;
}
.pi-footer-social a:hover {
  color: #ffffff !important;
  border-color: rgba(194, 65, 12, 0.6);
  background: rgba(194, 65, 12, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(194, 65, 12, 0.24);
}

.pi-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.pi-footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}
.pi-footer-links a:hover {
  color: #fdba74;
  transform: translateX(4px);
  text-shadow: 0 0 10px rgba(253, 186, 116, 0.2);
}

/* Targeted link hovers for specific footer columns */
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-left: 14px;
  transform: translateX(0);
  will-change: transform;
  transition: color 0.26s ease, text-shadow 0.26s ease, transform 0.26s ease;
}
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a::before,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #fdba74;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a:hover,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a:hover {
  transform: translateX(3px);
  color: #ffe0c4 !important;
  text-decoration: none;
  text-shadow: none;
}
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a:focus-visible,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a:focus-visible {
  transform: translateX(3px);
  color: #ffe0c4 !important;
  text-decoration: none;
  text-shadow: none;
}
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a:hover::before,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a:focus-visible::before,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Prevent generic footer-link hover transform from stacking with targeted columns */
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a:hover,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a:hover,
.pi-footer-grid .pi-footer-col:nth-child(2) .pi-footer-links a:focus-visible,
.pi-footer-grid .pi-footer-col:nth-child(3) .pi-footer-links a:focus-visible {
  transform: translateX(3px) !important;
}

.pi-footer-contact-card {
  border: 1px solid rgba(194, 65, 12, 0.24);
  background: linear-gradient(165deg, rgba(248, 248, 248, 0.14), rgba(243, 244, 246, 0.08));
  border-radius: 14px;
  padding: 13px 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}
.pi-footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pi-footer-contact li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.pi-footer-contact i {
  color: #fdba74;
  margin-top: 3px;
}
.pi-footer-contact a,
.pi-footer-contact span {
  color: #f3f4f6;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.65;
}
.pi-footer-mini-cta {
  margin-top: 14px;
  display: inline-flex;
  min-height: 38px;
  padding: 0 12px;
  align-items: center;
  border-radius: 10px;
  background: #c2410c;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.24s ease;
}
.pi-footer-mini-cta:visited,
.pi-footer-mini-cta:active,
.pi-footer-mini-cta:focus-visible {
  color: #ffffff !important;
  text-decoration: none;
}
.pi-footer-mini-cta:hover {
  color: #ffffff !important;
  text-decoration: none;
  background: #9a3412;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(194, 65, 12, 0.3);
}

.pi-footer-trust {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  justify-content: center;
  text-align: center;
}
.pi-footer-trust span {
  color: #e5e7eb;
  font-size: 13px;
}
.pi-footer-trust i {
  color: #fdba74;
  margin-right: 6px;
}

.pi-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.25);
}
.pi-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pi-footer-bottom p,
.pi-footer-legal-links a {
  color: #cbd5e1;
  font-size: 13px;
  text-decoration: none;
  margin: 0;
}
.pi-footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pi-footer-legal-links a:hover {
  color: #fdba74;
}

@media (max-width: 1280px) {
  .pi-menu-link { padding: 0 7px; font-size: 13px; }
  .pi-mega-menu,
  .pi-navbar .pi-navbar-nav > li:hover .pi-mega-menu,
  .pi-navbar .pi-navbar-nav > li .pi-mega-menu {
    width: min(1240px, calc(100vw - 24px)) !important;
    min-width: 900px !important;
  }
  .pi-mega-inner {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .pi-mega-types ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pi-footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 18px;
  }
  .pi-prefooter-copy .pi-prefooter-title,
  .pi-prefooter-copy h3 {
    font-size: 26px;
  }
}
@media (max-width: 1100px) {
  .pi-mega-menu,
  .pi-navbar .pi-navbar-nav > li:hover .pi-mega-menu,
  .pi-navbar .pi-navbar-nav > li .pi-mega-menu {
    min-width: 840px !important;
    gap: 12px !important;
  }
  .pi-mega-inner {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .pi-mega-aside-text {
    display: none;
  }
  .pi-mega-types ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pi-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pi-footer-col {
    min-height: 100%;
  }
  .pi-prefooter-inner {
    grid-template-columns: 1fr;
  }
  .pi-prefooter-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .pi-header-top { display: none; }
  .pi-nav-shell {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .pi-navbar .brand-and-icon {
    min-height: 78px;
    justify-content: space-between;
    gap: 12px;
  }
  .pi-navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
  }
  .pi-navbar .navbar-brand img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
  }
  .pi-mobile-toggler {
    margin-left: auto;
    flex: 0 0 44px;
  }
  .pi-navbar-collapse,
  .pi-nav-actions { display: none !important; }
  .pi-mobile-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .pi-search-overlay {
    padding-top: 80px;
  }
  .pi-search-float {
    border-radius: 16px;
    padding: 12px;
  }
  .pi-search-grid {
    grid-template-columns: 1fr;
  }
  .pi-search-col {
    max-height: 260px;
  }
  .pi-search-form {
    grid-template-columns: 18px 1fr 34px 34px;
  }
  .pi-search-submit {
    grid-column: 1 / -1;
    width: 100%;
  }
  .pi-prefooter-copy .pi-prefooter-title,
  .pi-prefooter-copy h3 {
    font-size: 22px;
  }
  .pi-footer-main {
    padding-top: 26px;
  }
  .pi-footer-grid {
    display: block;
  }
  .pi-footer-brand {
    margin-bottom: 18px;
  }
  .pi-footer-links-wrap {
    border-top: 0;
    margin-top: 12px;
    padding-top: 0;
  }
  .pi-footer-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
  }
  .pi-footer-toggle i {
    transition: transform 0.2s ease;
  }
  .pi-footer-links-wrap.open .pi-footer-toggle i {
    transform: rotate(180deg);
  }
  .pi-footer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .pi-footer-links-wrap.open .pi-footer-panel {
    max-height: 560px;
    padding-top: 8px;
  }
  .pi-footer-panel h4,
  .pi-footer-panel .pi-footer-col-title {
    display: none;
  }
}
