* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #51607A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

@keyframes ppi-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ppi-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ppi-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* opacity is NEVER touched -> computed opacity stays 1 no matter what (content can never go blank).
   Only transform animates; if the timeline is frozen, elements simply sit 26px low but fully visible. */
.ppi-anim .ppi-reveal {
  transform: translateY(26px);
  transition: transform .7s cubic-bezier(.16, .84, .44, 1);
}

.ppi-anim .ppi-reveal.ppi-in {
  transform: none;
}

.ppi-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  color: #8A9BB2;
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(.16, .84, .44, 1), transform 0.3s cubic-bezier(.16, .84, .44, 1), opacity 0.3s ease, filter 0.3s ease;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.82;
  padding: 6px 0;
}

.ppi-logo-link {
  cursor: pointer;
}

.ppi-logo:hover,
.ppi-logo-link:hover {
  color: #1366B6;
  opacity: 1;
  transform: scale(1.05);
}

.ppi-logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.ppi-logo:hover .ppi-logo-img,
.ppi-logo-link:hover .ppi-logo-img {
  filter: grayscale(0%) opacity(1) drop-shadow(0 4px 14px rgba(19, 102, 182, 0.18));
}

.ppi-logo-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-height: 44px;
}

.ppi-logo-svg svg {
  max-height: 44px;
  width: auto;
  fill: currentColor;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.ppi-logo:hover .ppi-logo-svg svg,
.ppi-logo-link:hover .ppi-logo-svg svg {
  fill: #1366B6;
}


/* ============ EXTRACTED CLASSES ============ */

.ppi-style-1 {
  font-family: 'Inter', sans-serif;
  color: #51607A;
  background: #FFFFFF;
  overflow-x: clip;
}

.ppi-style-2 {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0E5BA6;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  overflow: visible !important;
}

.ppi-style-3 {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 42px;
  background: #0C2740;
  color: #C7DBF0;
  font-size: 12.5px;
  letter-spacing: .02em;
  padding: 0 max(24px, calc((100% - 1240px)/2));
}

.ppi-style-4 {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ppi-style-5 {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3AD0B4;
  box-shadow: 0 0 0 3px rgba(58, 208, 180, 0.22);
}

.ppi-style-5::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #3AD0B4;
  animation: ppi-ripple 2s cubic-bezier(0.25, 0, 0, 1) infinite;
  pointer-events: none;
}

@keyframes ppi-ripple {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  100% {
    transform: scale(4.5);
    opacity: 0;
  }
}

.ppi-style-6 {
  flex: 1;
}

.ppi-style-7 {
  color: #C7DBF0;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 6px;
}

.ppi-style-8 {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.ppi-style-8:hover {
  color: #3AD0B4 !important;
}

.ppi-style-9 {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
  padding: 0 max(24px, calc((100% - 1240px)/2));
  background: #0E5BA6;
  overflow: visible !important;
}

.ppi-style-10 {
  display: flex;
  align-items: center;
  flex: none;
  transition: opacity .2s;
}

.ppi-style-10:hover {
  opacity: .7 !important;
}

.ppi-style-11 {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.ppi-style-12 {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  height: 100%;
}

.ppi-style-13 {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.ppi-style-13:hover {
  color: #BBD9F7 !important;
  -webkit-text-fill-color: #BBD9F7 !important;
  text-decoration: underline !important;
  text-decoration-color: #BBD9F7 !important;
  text-underline-offset: 6px !important;
  text-decoration-thickness: 2px !important;
}

/* Dropdown Navigation Menu Styles */
.ppi-menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.ppi-menu-item-has-children>.ppi-style-13 {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
}

.ppi-menu-item-has-children:hover>.ppi-style-13 {
  color: #BBD9F7 !important;
  -webkit-text-fill-color: #BBD9F7 !important;
  text-decoration: underline !important;
  text-decoration-color: #BBD9F7 !important;
  text-underline-offset: 6px !important;
  text-decoration-thickness: 2px !important;
}

.ppi-submenu-arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.ppi-menu-item-has-children:hover .ppi-submenu-arrow {
  transform: rotate(180deg);
}

.ppi-submenu-dropdown {
  position: absolute;
  top: calc(100% - 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s;
  z-index: 1000;
  min-width: 240px;
}

.ppi-submenu-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.ppi-menu-item-has-children:hover .ppi-submenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ppi-submenu-dropdown-inner {
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(14, 91, 166, 0.08);
}

.ppi-submenu-item,
.ppi-submenu-item-wrapper {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--item-index, 0) * 80ms),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--item-index, 0) * 80ms),
    background 0.2s ease,
    color 0.2s ease;
}

.ppi-menu-item-has-children:hover .ppi-submenu-item,
.ppi-menu-item-has-children:hover .ppi-submenu-item-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.ppi-submenu-item {
  display: block;
  padding: 10px 18px;
  color: #1A2B3C;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.ppi-submenu-item:hover {
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
}

/* Multi-Level / Flyout Grandchild Submenu Styles */
.ppi-submenu-item-wrapper {
  position: relative;
}

.ppi-submenu-item.ppi-submenu-parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.ppi-flyout-arrow {
  margin-left: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #666666;
}

.ppi-submenu-item-wrapper:hover>.ppi-submenu-item.ppi-submenu-parent-link .ppi-flyout-arrow {
  color: #0E5BA6;
  transform: translateX(2px);
}

.ppi-submenu-dropdown,
.ppi-submenu-dropdown-inner,
.ppi-grandchild-dropdown,
.ppi-grandchild-dropdown-inner {
  overflow: visible !important;
}

.ppi-grandchild-dropdown {
  position: absolute;
  top: -8px;
  left: 100%;
  padding-left: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s;
  z-index: 10050;
  min-width: 240px;
  pointer-events: none;
}

/* Shift upward ONLY the flyout submenu containing SportVis / Hyaluronic Acid Injections */
.ppi-submenu-item-wrapper:last-child>.ppi-grandchild-dropdown {
  top: auto !important;
  bottom: -8px !important;
}

.ppi-grandchild-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -14px;
  width: 16px;
  height: 100%;
}

.ppi-submenu-item-wrapper:hover>.ppi-grandchild-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

.ppi-submenu-item-wrapper:hover>.ppi-submenu-item.ppi-submenu-parent-link {
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
}

.ppi-grandchild-dropdown-inner {
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(14, 91, 166, 0.08);
}

.ppi-grandchild-item {
  display: block;
  padding: 10px 18px;
  color: #1A2B3C;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--item-index, 0) * 60ms),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--item-index, 0) * 60ms),
    background 0.2s ease,
    color 0.2s ease;
}

.ppi-submenu-item-wrapper:hover .ppi-grandchild-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.ppi-grandchild-item:hover {
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
}

.ppi-style-14 {
  flex: none;
  background: #fff;
  color: #0E5BA6;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .28);
  transition: background .2s, color .2s, transform .2s;
}

.ppi-style-14:hover {
  background: #EAF3FB !important;
  transform: translateY(-1px) !important;
}

.ppi-style-15 {
  position: relative;
  background-color: #F4F9FD;
  overflow: hidden;
}

.ppi-style-16 {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(25, 168, 184, .16), rgba(19, 102, 182, .05) 60%, transparent 72%);
  z-index: 2;
}

.ppi-style-17 {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  padding: 44px max(24px, calc((100% - 1240px)/2)) 36px;
  z-index: 3;
}


.ppi-style-18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: #E6F6F8;
  color: #0F7E8C;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  padding: 8px 15px;
  border-radius: 999px;
}

@keyframes ppiDotRipple {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.ppi-style-19 {
  position: relative !important;
  display: inline-block !important;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #19A8B8;
  flex-shrink: 0;
}

.ppi-style-19::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: ppiDotRipple 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  pointer-events: none;
}

.ppi-style-20 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: 54px;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 22px 0 0;
  text-wrap: balance;
}

.ppi-style-21 {
  font-size: 18.5px;
  line-height: 1.62;
  color: #51607A;
  margin: 22px 0 0;
  max-width: 520px;
}

.ppi-style-22 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.ppi-style-23 {
  background: #1366B6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 15px;
  box-shadow: 0 16px 30px -12px rgba(19, 102, 182, .6);
  transition: background .2s, box-shadow .2s, transform .2s;
}

.ppi-style-23:hover {
  background: #0E5096 !important;
  transform: translateY(-1px) !important;
}

.ppi-style-24 {
  background: #fff;
  color: #0C2740;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 15px;
  border: 1px solid #D6E2F0;
  transition: border-color .2s, color .2s, transform .2s;
}

.ppi-style-24:hover {
  border-color: #1366B6 !important;
  color: #1366B6 !important;
  transform: translateY(-1px) !important;
}

.ppi-style-25 {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 26px;
  margin: 36px 0 0;
}

.ppi-style-26 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: #36435C;
}

.ppi-style-27 {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E6F6F8;
  color: #0F7E8C;
  flex: none;
}

.ppi-style-28 {
  position: relative;
}

.ppi-style-29 {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(165deg, #E9F4FA 0%, #E2F3F4 100%);
  box-shadow: 0 40px 80px -36px rgba(12, 39, 64, .32);
  aspect-ratio: 1/1;
  overflow: hidden;
}

.ppi-style-30 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(25, 168, 184, .22), transparent 60%);
}

.ppi-style-31 {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .92);
  padding: 9px 14px;
  border-radius: 13px;
  box-shadow: 0 10px 24px -12px rgba(12, 39, 64, .3);
  z-index: 5;
}

.ppi-style-32 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #1366B6;
  font-size: 22px;
  line-height: 1;
}

.ppi-style-33 {
  font-size: 12px;
  font-weight: 500;
  color: #51607A;
  line-height: 1.25;
}

.ppi-style-34 {
  position: absolute;
  bottom: 0;
  left: -4%;
  height: 372px;
  width: auto;
  filter: drop-shadow(0 20px 26px rgba(12, 39, 64, .18));
  z-index: 2;
}

.ppi-style-35 {
  position: absolute;
  bottom: 0;
  right: 1%;
  height: 380px;
  width: auto;
  filter: drop-shadow(-8px 20px 26px rgba(12, 39, 64, .22));
  z-index: 3;
}

.ppi-style-36 {
  position: absolute;
  left: 100px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

.ppi-style-37 {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  padding: 9px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -12px rgba(12, 39, 64, .3);
}

.ppi-style-38 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: 14px;
  line-height: 1.1;
}

a.ppi-style-38,
a.ppi-doc-link {
  text-decoration: none;
  color: #0C2740;
  transition: color 0.2s ease;
  display: block;
}

a.ppi-style-38:hover,
a.ppi-doc-link:hover {
  color: #1366B6;
}

.ppi-style-39 {
  font-size: 11.5px;
  color: #1366B6;
  font-weight: 500;
}

.ppi-style-40 {
  padding: 20px 0 24px;
  border-top: 1px solid #EEF3F8;
  border-bottom: 1px solid #EEF3F8;
  background: #fff;
}

.ppi-style-41 {
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8595AB;
  font-weight: 600;
  margin: 0 0 26px;
}

.ppi-style-42 {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ppi-style-43 {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ppi-marquee 45s linear infinite;
  padding: 14px 32px;
  align-items: center;
}

.ppi-style-42:hover .ppi-style-43,
.ppi-style-43:hover {
  animation-play-state: paused;
}

.ppi-style-44 {
  padding: 50px max(24px, calc((100% - 1240px)/2));
}

.ppi-style-45 {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.ppi-style-46 {
  display: inline-block;
  color: #0F7E8C;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ppi-style-47 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 14px 0 0;
}

.ppi-style-48 {
  font-size: 17px;
  line-height: 1.6;
  color: #51607A;
  margin: 16px 0 0;
}

.ppi-style-49 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.ppi-style-50 {
  background: #F7FAFD;
  border: 1px solid #EAF0F7;
  border-radius: 20px;
  padding: 30px 14px;
  transition: transform .35s cubic-bezier(.16, .84, .44, 1), box-shadow .35s, border-color .35s;
  display: flex;
  flex-direction: column;
}

.ppi-style-50:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 50px -28px rgba(12, 39, 64, .3) !important;
  border-color: #CFE0F1 !important;
}

.ppi-style-51 {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #EAF3FB;
  color: #1366B6;
  margin-bottom: 22px;
  overflow: hidden;
}

.ppi-style-52 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #0E5BA6;
  font-size: 15.5px;
  letter-spacing: -.015em;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ppi-style-53 {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5A6880;
  margin-bottom: 18px;
}

.ppi-style-54 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1366B6;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: gap .2s, color .2s;
  margin-top: auto;
}

.ppi-style-54:hover {
  gap: 10px !important;
  color: #0F7E8C !important;
}

.ppi-style-55 {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #E6F6F8;
  color: #0F7E8C;
  margin-bottom: 22px;
}

.ppi-style-56 {
  background: #F5F9FD;
  padding: 50px max(24px, calc((100% - 1240px)/2));
}

.ppi-style-57 {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.ppi-style-58 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: #E7F0F8;
  box-shadow: 0 36px 64px -34px rgba(12, 39, 64, .34);
}

.ppi-style-59 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 480px) {
  .ppi-style-59 {
    border-radius: 8px;
  }
}

.ppi-approach-media-mobile {
  display: none;
}

.ppi-style-60 {
  position: absolute;
  right: -18px;
  bottom: -18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 24px 44px -22px rgba(12, 39, 64, .34);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ppi-style-61 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #1366B6;
  line-height: 1;
}

.ppi-style-62 {
  font-size: 13px;
  color: #51607A;
  line-height: 1.3;
  font-weight: 500;
}

.ppi-style-63 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 14px 0 0;
}

.ppi-style-64 {
  font-size: 17px;
  line-height: 1.65;
  color: #51607A;
  margin: 18px 0 0;
}

.ppi-style-65 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 0;
}

.ppi-style-66 {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.ppi-style-67 {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #E6F6F8;
  color: #0F7E8C;
  flex: none;
  font-size: 15px;
}

.ppi-style-68 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #0C2740;
  font-size: 16px;
}

.ppi-style-69 {
  font-size: 14px;
  color: #5A6880;
  line-height: 1.5;
  margin-top: 3px;
}

.ppi-style-70 {
  display: inline-block;
  margin: 34px 0 0;
  background: #1366B6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 14px;
  box-shadow: 0 14px 28px -12px rgba(19, 102, 182, .6);
  transition: background .2s, box-shadow .2s, transform .2s;
}

.ppi-style-70:hover {
  background: #0E5096 !important;
  transform: translateY(-1px) !important;
}

.ppi-style-71 {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(120deg, #0C2740 0%, #124B86 56%, #0F7E8C 130%);
  box-shadow: 0 40px 80px -40px rgba(12, 39, 64, .5);
  transform: scale(0.68);
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.ppi-style-72 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 208, 180, .22), transparent 68%);
}

.ppi-style-73 {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding: 54px 56px;
}

@media (max-width: 480px) {
  .ppi-style-73 {
    padding: 20px 16px;
    gap: 30px;
  }
}

.ppi-style-74 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3.6;
  border: 1px solid rgba(255, 255, 255, .16);
}

.ppi-style-74 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.ppi-style-75 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  color: #9BE5DC;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.ppi-style-76 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 18px 0 0;
}

.ppi-style-77 {
  font-size: 17px;
  line-height: 1.6;
  color: #CDDDEC;
  margin: 14px 0 0;
  max-width: 440px;
}

.ppi-style-78 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.ppi-style-79 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 500;
  font-size: 14.5px;
  padding: 11px 17px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

a.ppi-style-79:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  transform: translateY(-2px);
  border-color: rgba(58, 208, 180, 0.5);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.ppi-style-80 {
  color: #3AD0B4;
}

.ppi-style-81 {
  display: inline-block;
  background: #fff;
  color: #0C2740;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .4);
  transition: background .2s, transform .2s;
}

.ppi-style-81:hover {
  background: #EAF3FB !important;
  transform: translateY(-1px) !important;
}

.ppi-style-82 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ppi-style-83 {
  background: #F7FAFD;
  border: 1px solid #EAF0F7;
  border-radius: 20px;
  padding: 30px;
  transition: transform .35s, box-shadow .35s, background .35s;
}

.ppi-style-83:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 26px 48px -28px rgba(12, 39, 64, .28) !important;
  background: #fff !important;
}

a.ppi-why-choose-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
}

.ppi-why-choose-more-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1366B6;
  transition: gap 0.25s ease, color 0.25s ease;
}

.ppi-style-83:hover .ppi-why-choose-more-link {
  gap: 10px;
  color: #0E5BA6;
}

.ppi-style-83:hover .ppi-why-choose-more-link .ppi-arrow {
  transform: translateX(4px);
}

.ppi-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.ppi-style-84 {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #EAF3FB;
  color: #1366B6;
  margin-bottom: 18px;
}

.ppi-style-85 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #0C2740;
  font-size: 18px;
  margin-bottom: 8px;
}

.ppi-style-86 {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5A6880;
}

.ppi-style-87 {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #E6F6F8;
  color: #0F7E8C;
  margin-bottom: 18px;
}

.ppi-style-88 {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: center;
  background: #fff;
  border: 1px solid #EAF0F7;
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 30px 60px -38px rgba(12, 39, 64, .3);
}

@media (max-width: 480px) {
  .ppi-style-88 {
    padding: 20px 16px;
    gap: 30px;
  }
}

.ppi-style-89 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 24px 44px -22px rgba(12, 39, 64, .4);
}

.ppi-style-90 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -.01em;
  margin: 12px 0 6px;
}

.ppi-style-91 {
  font-size: 14.5px;
  color: #1366B6;
  font-weight: 600;
  margin-bottom: 14px;
}

.ppi-style-92 {
  font-size: 15.5px;
  line-height: 1.65;
  color: #5A6880;
  max-width: 560px;
}

.ppi-style-93 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.ppi-style-94 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1366B6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 13px;
  transition: background .2s, transform .2s;
}

.ppi-style-94:hover {
  background: #0E5096 !important;
  transform: translateY(-1px) !important;
}

.ppi-style-95 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0C2740;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 13px;
  border: 1px solid #D6E2F0;
  transition: border-color .2s, color .2s, transform .2s;
}

.ppi-style-95:hover {
  border-color: #1366B6 !important;
  color: #1366B6 !important;
  transform: translateY(-1px) !important;
}

.ppi-style-96 {
  display: flex;
  gap: 8px;
  margin-left: 4px;
}

.ppi-style-97 {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #EAF3FB;
  color: #1366B6;
  font-weight: 700;
  font-size: 13px;
  font-family: Outfit, sans-serif;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s;
}

.ppi-style-97:hover {
  background: #1366B6 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.ppi-style-98 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 46px;
}

.ppi-style-99 {
  flex: 1;
  min-width: 280px;
}

.ppi-style-100 {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F7FAFD;
  border: 1px solid #EAF0F7;
  border-radius: 16px;
  padding: 16px 22px;
}

.ppi-style-101 {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E4ECF4;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #1366B6;
}

.ppi-style-102 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ppi-style-103 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #0C2740;
  line-height: 1;
}

.ppi-style-104 {
  color: #F5A524;
  font-size: 15px;
  letter-spacing: 1px;
}

.ppi-style-105 {
  font-size: 13px;
  color: #5A6880;
}

.ppi-style-106 {
  background: #F7FAFD;
  border: 1px solid #EAF0F7;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 40px -30px rgba(12, 39, 64, .3);
}

.ppi-style-107 {
  color: #F5A524;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.ppi-style-108 {
  font-size: 15.5px;
  line-height: 1.65;
  color: #3C4A60;
}

.ppi-style-109 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #EEF3F8;
}

.ppi-style-110 {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #EAF3FB;
  color: #1366B6;
  font-weight: 700;
  font-family: Outfit, sans-serif;
}

.ppi-style-111 {
  font-weight: 600;
  color: #0C2740;
  font-size: 15px;
}

.ppi-style-112 {
  font-size: 13px;
  color: #8595AB;
}

.ppi-style-113 {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E6F6F8;
  color: #0F7E8C;
  font-weight: 700;
  font-family: Outfit, sans-serif;
}

.ppi-style-114 {
  text-align: center;
  margin-top: 38px;
}

.ppi-style-115 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0C2740;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid #D6E2F0;
  transition: border-color .2s, color .2s, transform .2s;
}

.ppi-style-115:hover {
  border-color: #1366B6 !important;
  color: #1366B6 !important;
  transform: translateY(-1px) !important;
}

.ppi-style-116 {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.ppi-style-117 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/3.6;
  background: #E7F0F8;
  box-shadow: 0 36px 64px -34px rgba(12, 39, 64, .32);
}

.ppi-style-118 {
  font-size: 17px;
  line-height: 1.6;
  color: #51607A;
  margin: 14px 0 28px;
  max-width: 480px;
}

.ppi-style-119 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ppi-style-120 {
  background: #fff;
  border: 1px solid #E7EEF6;
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  display: block;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.ppi-style-120:hover {
  transform: translateY(-4px) !important;
  border-color: #1366B6 !important;
  box-shadow: 0 18px 34px -22px rgba(12, 39, 64, .3) !important;
}

.ppi-style-121 {
  font-size: 13px;
  color: #8595AB;
  margin-top: 3px;
}

.ppi-style-122 {
  grid-column: span 3;
  background: #0C2740;
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .3s;
}

.ppi-style-122:hover {
  background: #123a5e !important;
}

.ppi-style-123 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.ppi-style-124 {
  font-size: 13px;
  color: #9FB4CC;
}

.ppi-style-125 {
  color: #fff;
}

.ppi-style-126 {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0C2740;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 13px;
  border: 1px solid #D6E2F0;
  transition: border-color .2s, color .2s, transform .2s;
}

.ppi-style-126:hover {
  border-color: #1366B6 !important;
  color: #1366B6 !important;
  transform: translateY(-1px) !important;
}

.ppi-insights-mobile-btn-wrap {
  display: none !important;
}

.ppi-style-127 {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
}

.ppi-style-128 {
  text-decoration: none;
  background: #fff;
  border: 1px solid #EAF0F7;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}

.ppi-style-128:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 30px 56px -32px rgba(12, 39, 64, .3) !important;
}

.ppi-style-129 {
  position: relative;
  aspect-ratio: 16/9;
  background: #E7F0F8;
}

.ppi-style-130 {
  position: absolute;
  left: 18px;
  top: 18px;
  background: #1366B6;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: .03em;
}

.ppi-style-131 {
  padding: 30px 30px 34px;
}

.ppi-style-132 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.ppi-style-133 {
  font-size: 15px;
  line-height: 1.65;
  color: #5A6880;
  margin: 14px 0 0;
}

.ppi-style-134 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1366B6;
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
}

.ppi-style-135 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ppi-style-136 {
  text-decoration: none;
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid #EAF0F7;
  border-radius: 18px;
  padding: 16px;
  transition: border-color .3s, box-shadow .3s;
}

.ppi-style-136:hover {
  border-color: #CFE0F1 !important;
  box-shadow: 0 18px 36px -26px rgba(12, 39, 64, .3) !important;
}

.ppi-style-137 {
  flex: none;
  width: 104px;
  border-radius: 13px;
  overflow: hidden;
  background: #E7F0F8;
}

.ppi-style-138 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppi-style-139 {
  font-size: 11.5px;
  font-weight: 600;
  color: #0F7E8C;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ppi-style-140 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #0C2740;
  font-size: 17px;
  line-height: 1.25;
  margin: 6px 0 6px;
}

.ppi-style-141 {
  color: #1366B6;
  font-weight: 600;
  font-size: 13.5px;
}

.ppi-style-142 {
  border-top: 1px solid #E9EFF6;
  margin-top: 36px;
  padding-top: 32px;
}

.ppi-style-143 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 38px;
}

.ppi-style-144 {
  font-size: 17px;
  line-height: 1.6;
  color: #51607A;
  margin: 14px 0 0;
  max-width: 520px;
}

.ppi-style-145 {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.ppi-style-146 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1366B6;
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 14px 26px -14px rgba(19, 102, 182, .6);
  transition: background .2s, transform .2s;
}

.ppi-style-146:hover {
  background: #0E5096 !important;
  transform: translateY(-2px) !important;
}

.ppi-style-147 {
  opacity: .7;
  font-weight: 500;
  font-size: 13px;
}

.ppi-style-148 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #E6F6F8;
  color: #0F7E8C;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 14px;
  transition: background .2s, transform .2s;
}

.ppi-style-148:hover {
  background: #D2EEF1 !important;
  transform: translateY(-2px) !important;
}

.ppi-style-149 {
  opacity: .6;
  font-weight: 500;
  font-size: 13px;
}

.ppi-style-150 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F1F6FB;
  color: #0C2740;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: 14px;
  border: 1px solid #E1EAF4;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.ppi-style-150:hover {
  border-color: #1366B6 !important;
  color: #1366B6 !important;
  background: #fff !important;
  transform: translateY(-2px) !important;
}

.ppi-style-151 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.ppi-style-152 {
  font-size: 17px;
  line-height: 1.6;
  color: #51607A;
  margin: 14px 0 0;
}

.ppi-style-153 {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.ppi-style-154 {
  background: #0C2740;
  border-radius: 22px;
  padding: 34px;
  color: #9FB4CC;
}

.ppi-style-155 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 20px;
  margin-bottom: 24px;
}

.ppi-style-156 {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ppi-style-157 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ppi-style-158 {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  color: #7FD6DF;
}

.ppi-style-159 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7C93AC;
}

.ppi-style-160 {
  color: #fff;
  font-size: 15.5px;
  font-weight: 500;
  margin-top: 2px;
}

.ppi-style-161 {
  color: #fff;
  font-size: 15.5px;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.45;
}

.ppi-style-162 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.5;
}

.ppi-style-163 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #E7F0F8;
  min-height: 380px;
  border: 1px solid #E4ECF4;
}

.ppi-style-164 {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 13px;
  box-shadow: 0 16px 32px -18px rgba(12, 39, 64, .4);
}

.ppi-style-165 {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #EAF3FB;
  color: #1366B6;
}

.ppi-style-166 {
  font-weight: 600;
  color: #0C2740;
  font-size: 14px;
}

.ppi-style-167 {
  font-size: 12.5px;
  color: #8595AB;
}

.ppi-style-168 {
  background: #fff;
  border: 1px solid #EAF0F7;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 50px -34px rgba(12, 39, 64, .3);
}

.ppi-style-169 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #0C2740;
  font-size: 20px;
  margin-bottom: 22px;
}

.ppi-style-170 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ppi-style-171 {
  font-family: inherit;
  font-size: 15px;
  color: #0C2740;
  padding: 14px 16px;
  border: 1px solid #DEE7F0;
  border-radius: 12px;
  outline: none;
  background: #FBFCFE;
}

.ppi-style-171:focus {
  border-color: #1366B6;
  background: #fff;
}

.ppi-style-172 {
  font-family: inherit;
  font-size: 15px;
  color: #0C2740;
  padding: 14px 16px;
  border: 1px solid #DEE7F0;
  border-radius: 12px;
  outline: none;
  background: #FBFCFE;
  resize: vertical;
}

.ppi-style-172:focus {
  border-color: #1366B6;
  background: #fff;
}

.ppi-style-173 {
  font-family: inherit;
  background: #1366B6;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  box-shadow: 0 16px 30px -14px rgba(19, 102, 182, .6);
}

.ppi-style-173:hover {
  background: #0E5096 !important;
}

.ppi-style-174 {
  display: none;
  text-align: center;
  color: #0F7E8C;
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 2px;
}

.ppi-style-175 {
  text-align: center;
  font-size: 12.5px;
  color: #9AA7BC;
  margin-top: 2px;
}

.ppi-style-176 {
  background: #0C2740;
  color: #9FB4CC;
  padding: 0 max(24px, calc((100% - 1240px)/2));
}

.ppi-style-177 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 52px;
}

.ppi-style-178 {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.ppi-style-179 {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 300px;
}

.ppi-style-180 {
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
}

.ppi-style-181 {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  color: #C7DBF0;
  text-decoration: none;
  font-size: 14px;
}

.ppi-style-181:hover {
  background: #1366B6 !important;
  color: #fff !important;
}

.ppi-style-181 svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ppi-style-181 i {
  font-size: 18px;
  line-height: 1;
}

.ppi-style-182 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}

.ppi-style-183 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}

.ppi-style-184 {
  color: #9FB4CC;
  text-decoration: none;
  transition: color .2s;
}

.ppi-style-184:hover {
  color: #fff !important;
}

.ppi-style-185 {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}


/* ============ SERVICES TEMPLATE STYLES ============ */

.services-hero-section {
  background: var(--services-hero-bg, linear-gradient(135deg, #0E5BA6 0%, #083E75 100%));
  padding: 72px max(24px, calc((100% - 1240px)/2)) 68px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}

.services-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, var(--services-hero-glow, rgba(58, 208, 180, 0.15)) 0%, transparent 50%);
  pointer-events: none;
}

.services-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #3AD0B4;
  background: rgba(58, 208, 180, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.services-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.services-hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #C7DBF0;
  max-width: 640px;
  margin: 0 auto;
}

/* NAVIGATION QUICK LINKS */
.services-nav-section {
  background: #FFFFFF;
  border-bottom: 1px solid #E3ECF5;
  position: relative;
  box-shadow: 0 4px 20px rgba(12, 39, 64, 0.03);
}

.services-nav-container {
  padding: 20px max(16px, calc((100% - 1280px)/2));
  width: 100%;
  box-sizing: border-box;
}

.services-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.services-nav-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid #E2EAF2;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(12, 39, 64, 0.02);
  min-width: 0;
  box-sizing: border-box;
}

.services-nav-card:hover {
  transform: translateY(-3px);
  border-color: #0E5BA6;
  box-shadow: 0 10px 24px rgba(14, 91, 166, 0.08);
}

.services-nav-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  overflow: hidden;
}

.services-nav-icon-wrap svg {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  color: #1366B6 !important;
  object-fit: contain;
  display: block;
}

.services-nav-icon-wrap svg path,
.services-nav-icon-wrap svg g,
.services-nav-icon-wrap svg circle,
.services-nav-icon-wrap svg rect {
  fill: #1366B6 !important;
}

.services-nav-icon-wrap svg[stroke] path,
.services-nav-icon-wrap svg path[stroke] {
  stroke: #1366B6 !important;
}

.ppi-style-51 svg,
.ppi-style-55 svg {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  color: #1366B6 !important;
  object-fit: contain;
  display: block;
}

.ppi-style-51 img,
.ppi-style-55 img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  display: block;
}

.ppi-style-51 svg path,
.ppi-style-51 svg g,
.ppi-style-55 svg path,
.ppi-style-55 svg g {
  fill: #1366B6 !important;
}

.services-nav-icon-wrap img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  display: block;
}

.services-nav-card:hover .services-nav-icon-wrap {
  transform: scale(1.06);
}

.icon-bg-blue {
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
}

.icon-bg-teal {
  background: rgba(15, 126, 140, 0.08);
  color: #0F7E8C;
}

.services-nav-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.services-nav-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.25;
  color: #0C2740;
  white-space: normal;
  word-wrap: break-word;
  text-transform: uppercase;
}

.services-nav-card-action {
  font-size: 10px;
  font-weight: 700;
  color: #0E5BA6;
  text-transform: uppercase;
  margin-top: 3px;
  letter-spacing: 0.03em;
  opacity: 0.85;
  white-space: nowrap;
}

.services-nav-card:hover .services-nav-card-action {
  color: #3AD0B4;
}

/* SERVICES LOOP WRAPPER */
.services-detail-wrap {
  background: #FFFFFF;
}

.service-category-section {
  padding: 48px max(24px, calc((100% - 1240px)/2));
  border-bottom: 1px solid #EDF4FA;
  scroll-margin-top: 160px;
  /* Offset sticky headers on scroll */
}

/* Category banner header */
.category-banner-header {
  background: #EAF2FA;
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 28px;
  border-left: 5px solid #0E5BA6;
}

.category-banner-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  color: #0C2740;
  letter-spacing: -0.01em;
}

/* Body content grid */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.service-wysiwyg-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #4D5E7A;
}

.service-wysiwyg-desc p {
  margin-bottom: 20px;
}

/* Relief Options Checklist */
.relief-options-box {
  margin-top: 36px;
  background: #F7FAFD;
  border: 1px solid #EAEFF5;
  border-radius: 16px;
  padding: 32px;
}

.relief-options-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0C2740;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid #E2EBF5;
  padding-bottom: 12px;
}

.relief-options-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.relief-option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.relief-checkmark {
  color: #3AD0B4;
  font-weight: bold;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.relief-option-text {
  font-size: 14.5px;
  font-weight: 550;
  color: #0C2740;
  line-height: 1.5;
}

/* Intro Right Column: Images */
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 39, 64, 0.05);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-image-wrap:hover .gallery-img {
  transform: scale(1.08);
}

.service-main-image-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(12, 39, 64, 0.08);
}

.service-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.service-main-image-wrap:hover .service-main-img {
  transform: scale(1.03);
}

/* DARK BLUE DETAILED PANEL */
.service-detailed-panel {
  background: #0C2740;
  border-radius: 20px;
  padding: 56px;
  color: #E2EDF7;
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  box-shadow: 0 12px 40px rgba(12, 39, 64, 0.15);
}

.service-detailed-panel::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 91, 166, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Dark panel typography */
.panel-header-block {
  width: 100%;
  margin-bottom: 40px;
}

.panel-header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.panel-header-left {
  max-width: 720px;
  flex: 1;
}

.panel-header-cta-wrap {
  flex-shrink: 0;
  padding-top: 4px;
}

.panel-header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #3AD0B4;
  color: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(58, 208, 180, 0.35);
  white-space: nowrap;
}

.panel-header-cta-btn:hover {
  background: #FFFFFF;
  color: #0C2740;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.panel-header-cta-btn svg {
  flex-shrink: 0;
  stroke: #0C2740;
  transition: stroke 0.3s ease;
}

.panel-mobile-footer-cta {
  display: none;
}

.panel-title-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  word-spacing: 0.2rem;
}

.panel-desc-wysiwyg {
  font-size: 15px;
  line-height: 1.7;
  color: #9FB4CC;
}

.panel-desc-wysiwyg p {
  margin-bottom: 16px;
}

/* Layout 1: Grid Cards body styles */
.panel-body-grid-wrap {
  display: block;
  width: 100%;
}

.panel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.panel-treatment-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-treatment-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.panel-card-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(14, 91, 166, 0.2);
  color: #3AD0B4;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.panel-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.panel-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #9FB4CC;
  margin-bottom: 16px;
}

.panel-card-link {
  font-size: 12px;
  font-weight: 700;
  color: #3AD0B4;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.panel-card-link:hover {
  color: #FFFFFF;
}

/* Layout 2: Two Column layout styles */
.panel-two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.panel-two-col-left {
  align-self: center;
}

.panel-right-header {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #3AD0B4;
  margin-bottom: 24px;
}

.panel-treatments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-treatment-list-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.panel-treatment-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.treatment-item-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.treatment-item-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #9FB4CC;
}

/* ============ RESPONSIVENESS ============ */

@media (max-width: 1024px) {
  .services-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .panel-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-detailed-panel {
    padding: 32px;
  }

  .panel-cards-grid {
    grid-template-columns: 1fr;
  }

  .services-nav-container {
    padding: 16px max(16px, calc((100% - 1240px)/2));
  }

  .service-category-section {
    padding: 60px max(16px, calc((100% - 1240px)/2));
  }
}

@media (max-width: 480px) {
  .services-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SERVICES PAGE OPTIMIZATIONS ============ */

/* Treatment Filters */
.treatment-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.filter-tab-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #9FB4CC;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.filter-tab-btn.active {
  color: #FFFFFF;
  background: #3AD0B4;
  border-color: #3AD0B4;
  box-shadow: 0 4px 14px rgba(58, 208, 180, 0.3);
}

.fade-element {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Partner Highlight Boxes */
.partner-branding-box {
  background: rgba(14, 91, 166, 0.05);
  border: 1px solid rgba(14, 91, 166, 0.12);
  border-left: 5px solid #0E5BA6;
  border-radius: 16px;
  padding: 28px;
  margin-top: 36px;
  max-width: 480px;
  box-shadow: 0 4px 20px rgba(12, 39, 64, 0.02);
}

.skytherapies-box {
  background: rgba(58, 208, 180, 0.03);
  border: 1px solid rgba(58, 208, 180, 0.08);
  border-left: 5px solid #3AD0B4;
}

.partner-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0E5BA6;
  background: rgba(14, 91, 166, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.skytherapies-box .partner-badge {
  color: #0F7E8C;
  background: rgba(15, 126, 140, 0.08);
}

.partner-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.partner-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #9FB4CC;
  margin-bottom: 20px;
}

.partner-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: #0E5BA6;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.partner-btn:hover {
  background: #1366B6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 91, 166, 0.25);
}

.skytherapies-box .partner-btn {
  background: #3AD0B4;
}

.skytherapies-box .partner-btn:hover {
  background: #2cbba0;
  box-shadow: 0 6px 20px rgba(58, 208, 180, 0.25);
}

/* Psychological Support 2x2 grid */
.panel-therapies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.panel-therapy-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-therapy-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.therapy-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.therapy-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #9FB4CC;
}

@media (max-width: 768px) {
  .panel-therapies-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ CUSTOM CHRONIC PAIN MANAGEMENT SECTION ============ */

.chronic-pain-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.chronic-pain-custom-left,
.chronic-pain-custom-right {
  display: flex;
  flex-direction: column;
}

.chronic-pain-custom-right {
  gap: 24px;
}

.chronic-pain-custom-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.05);
}

.chronic-pain-custom-left .chronic-pain-custom-image-wrap {
  margin-top: 32px;
}

.chronic-pain-custom-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.chronic-pain-custom-image-wrap:hover .chronic-pain-custom-img {
  transform: scale(1.02);
}

.expert-care-card-box {
  background: #F4F8FC;
  /* Soft blue-grey background */
  border: 1px solid rgba(19, 102, 182, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.02);
}

.expert-care-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0C2740;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(12, 39, 64, 0.06);
  padding-bottom: 16px;
}

.expert-care-card-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.expert-care-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.expert-care-card-checkmark {
  color: #3AD0B4;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}

.expert-care-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #3C4A60;
}

.expert-care-card-text strong {
  color: #0C2740;
  font-weight: 700;
  transition: color 0.2s ease;
}

.expert-care-card-item.has-link {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-care-card-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  color: inherit;
  text-decoration: none !important;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-care-card-link:hover {
  background: rgba(14, 91, 166, 0.05);
  border-color: rgba(14, 91, 166, 0.12);
  transform: translateX(5px);
  box-shadow: 0 4px 14px rgba(12, 39, 64, 0.04);
}

.expert-care-card-link:hover .expert-care-card-checkmark {
  color: #0E5BA6;
  transform: scale(1.15);
}

.expert-care-card-link:hover .expert-care-card-text strong {
  color: #0E5BA6;
}

@media (max-width: 1024px) {
  .chronic-pain-custom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Importance and CTA Panel */
.chronic-pain-importance-panel {
  background: #0C2740;
  /* Dark navy blue matching theme */
  border-radius: 20px;
  padding: 56px;
  color: #E2EDF7;
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  box-shadow: 0 12px 40px rgba(12, 39, 64, 0.15);
}

.chronic-pain-importance-panel::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(58, 208, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.importance-panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: flex-start;
}

.importance-panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.importance-panel-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #9FB4CC;
  margin-bottom: 20px;
}

.importance-panel-desc:last-of-type {
  margin-bottom: 0;
}

.importance-panel-cta-wrap {
  margin-top: 28px;
}

.importance-panel-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  background: transparent;
  border: 1.5px solid #3AD0B4;
  border-radius: 10px;
  padding: 14px 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.importance-panel-btn:hover {
  background: #3AD0B4;
  color: #0C2740;
  box-shadow: 0 8px 24px rgba(58, 208, 180, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .importance-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chronic-pain-importance-panel {
    padding: 40px;
  }
}

/* Interventional Video and Text Panel */
.interventional-video-panel {
  padding: 56px;
  margin-top: 56px;
  box-shadow: 0 12px 40px rgba(12, 39, 64, 0.15);
}

.interventional-video-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(19, 102, 182, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.video-panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.video-panel-left {
  color: #E2EDF7;
}

.video-panel-wysiwyg p {
  font-size: 15px;
  line-height: 1.8;
  color: #E2EDF7;
  margin-bottom: 20px;
}

.video-panel-wysiwyg p:last-child {
  margin-bottom: 0;
}

.video-panel-right {
  display: flex;
  justify-content: center;
}

.video-container-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  background: #000000;
  display: flex;
  align-items: center;
}

.interventional-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .video-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .interventional-video-panel {
    padding: 40px;
  }
}

/* ============ PRACTITIONER PROFILE STYLES ============ */
.practitioner-hero-section {
  background: linear-gradient(135deg, #0E5BA6 0%, #083E75 100%);
  padding: 72px max(24px, calc((100% - 1240px)/2)) 68px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}

.practitioner-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(58, 208, 180, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.practitioner-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.practitioner-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #3AD0B4;
  background: rgba(58, 208, 180, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.practitioner-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.practitioner-hero-subtitle {
  font-size: 18px;
  color: #E2EDF7;
  font-weight: 400;
  margin: 0;
}

.practitioner-profile-section {
  background: #FFFFFF;
  padding: 48px max(24px, calc((100% - 1240px)/2));
  position: relative;
}

.practitioner-profile-container {
  max-width: 1200px;
  margin: 0 auto;
}

.practitioner-profile-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
  background: #FFFFFF;
  border: 1px solid #E3ECEF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 48px -15px rgba(12, 39, 64, 0.08);
}

.doctor-sidebar-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.practitioner-image-col {
  width: 100%;
}

.practitioner-headshot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #E3ECEF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.practitioner-headshot-fallback {
  width: 100%;
  aspect-ratio: 1;
  background: #F4F8FA;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0B2C6;
  border: 1px solid #E3ECEF;
}

.practitioner-info-col {
  display: flex;
  flex-direction: column;
}

.practitioner-about-label {
  font-size: 11px;
  font-weight: 700;
  color: #19A8B8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.practitioner-qualifications {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0C2740;
  line-height: 1.4;
  margin-bottom: 8px;
}

.practitioner-role-label {
  font-size: 16px;
  color: #51607A;
  margin-bottom: 24px;
  font-weight: 500;
}

.practitioner-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.practitioner-detail-item {
  display: flex;
  align-items: start;
  gap: 12px;
}

.practitioner-detail-bullet {
  color: #1366B6;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}

.practitioner-detail-text {
  font-size: 15px;
  line-height: 1.5;
  color: #435068;
}

.practitioner-detail-text strong {
  color: #0C2740;
}

.practitioner-social-wrap {
  margin-top: auto;
}

.practitioner-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0077B5;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s, transform 0.2s;
}

.practitioner-linkedin-link svg {
  flex-shrink: 0;
}

.practitioner-linkedin-link:hover {
  color: #005988;
  transform: translateY(-1px);
}

.practitioner-bio-section {
  background: #0C2740;
  padding: 90px max(24px, calc((100% - 1240px)/2));
  color: #FFFFFF;
}

.practitioner-bio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.practitioner-bio-content {
  font-size: 16.5px;
  line-height: 1.8;
  color: #E2EDF7;
}

/* Two-column bio style like in original layout */
.practitioner-bio-content {
  column-count: 2;
  column-gap: 60px;
}

.practitioner-bio-content p {
  margin-bottom: 24px;
}

.practitioner-bio-content p:last-child {
  margin-bottom: 0;
}

.practitioner-bio-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.practitioner-cta-primary {
  box-shadow: 0 16px 30px -12px rgba(19, 102, 182, 0.4);
}

.practitioner-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  background: transparent;
  padding: 16px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}

.practitioner-cta-secondary:hover {
  background: #FFFFFF;
  color: #0C2740;
}

@media (max-width: 991px) {
  .practitioner-profile-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px;
  }

  .practitioner-image-col {
    max-width: 320px;
    margin: 0 auto;
  }

  .practitioner-bio-content {
    column-count: 1;
  }
}

/* ============ ABOUT US PAGE STYLES ============ */
.about-hero-section {
  background: var(--about-hero-bg, #F4F9FD);
  padding: 76px max(24px, calc((100% - 1240px)/2)) 68px;
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #0C2740;
  box-sizing: border-box;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(25, 168, 184, .16), rgba(19, 102, 182, .05) 60%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0F7E8C;
  background: #E6F6F8;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.2;
  color: #0C2740;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-hero-subtext {
  font-size: 17.5px;
  line-height: 1.65;
  color: #51607A;
  margin-bottom: 36px;
  max-width: 600px;
}

.about-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.about-hero-btn-primary {
  display: inline-block;
  background: #1366B6;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 25px -5px rgba(19, 102, 182, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, background-color 0.2s;
}

.about-hero-btn-primary:hover {
  background: #0E5BA6;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -5px rgba(19, 102, 182, 0.45);
}

.about-hero-btn-secondary {
  display: inline-block;
  border: 1px solid rgba(12, 39, 64, 0.16);
  color: #0C2740;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, border-color 0.2s;
}

.about-hero-btn-secondary:hover {
  background: rgba(12, 39, 64, 0.04);
  border-color: rgba(12, 39, 64, 0.3);
}

.about-hero-image-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-image-bg-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 168, 184, 0.12) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 1;
  pointer-events: none;
  animation: ppi-float-slow 8s ease-in-out infinite;
}

@keyframes ppi-float-slow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-10px, -20px) scale(1.06);
  }
}

.about-hero-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(12, 39, 64, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -15px rgba(12, 39, 64, 0.12);
  display: flex;
  width: 100%;
}

.about-hero-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.about-hero-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(12, 39, 64, 0.08);
  padding: 16px 24px;
  border-radius: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(12, 39, 64, 0.1);
  animation: ppi-float-badge 5s ease-in-out infinite alternate;
}

@keyframes ppi-float-badge {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.about-hero-experience-badge .exp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1366B6;
  line-height: 1;
}

.about-hero-experience-badge .exp-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1366B6;
  letter-spacing: 0.05em;
  line-height: 1.3;
  max-width: 100px;
}

/* CALLOUT BANNER */
.about-callout-banner {
  background: linear-gradient(135deg, #0C2740 0%, #07192C 100%);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #3AD0B4;
}

.about-callout-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 50%, rgba(19, 102, 182, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(58, 208, 180, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.about-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-callout-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s;
}

.about-callout-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(58, 208, 180, 0.25);
}

.about-callout-stat-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #3AD0B4;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-callout-stat-card .stat-small {
  font-size: 16px;
  font-weight: 600;
  color: #C7DBF0;
  margin-left: 2px;
}

.about-callout-stat-card .stat-desc {
  font-size: 11px;
  color: #AAB6C6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.about-callout-center-card {
  text-align: center;
  padding: 0 10px;
}

.about-callout-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 28px);
  color: #FFFFFF;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.about-callout-text::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #3AD0B4;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* OUR STORY SECTION */
.about-story-section {
  background: #FFFFFF;
  padding: 48px max(24px, calc((100% - 1240px)/2));
  color: #0C2740;
  position: relative;
  overflow: hidden;
}

.about-story-bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19, 102, 182, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-story-left {
  position: sticky;
  top: 130px;
}

.about-story-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #0E5BA6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-story-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: #0C2740;
  margin-bottom: 36px;
}

.about-story-timeline-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-story-timeline-wrap .timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1366B6;
  box-shadow: 0 0 12px rgba(19, 102, 182, 0.3);
}

.about-story-timeline-wrap .timeline-line {
  height: 2px;
  width: 90px;
  background: linear-gradient(90deg, #1366B6 0%, rgba(19, 102, 182, 0) 100%);
}

.about-story-timeline-wrap .timeline-pulse-icon {
  color: #1366B6;
  opacity: 0.75;
  display: flex;
  animation: ppi-pulse-ring-slow 2.5s infinite ease-in-out;
}

@keyframes ppi-pulse-ring-slow {

  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.95;
  }
}

.about-story-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-panel-card {
  background: #F8FAFC;
  border: 1px solid #E3ECEF;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(12, 39, 64, 0.02);
}

.story-panel-card:hover {
  transform: translateX(8px);
  background: #FFFFFF;
  border-color: #3AD0B4;
  box-shadow: 0 20px 40px rgba(12, 39, 64, 0.06);
}

.story-panel-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.story-panel-icon-wrap svg {
  display: block;
}

.story-panel-content {
  flex-grow: 1;
}

.story-panel-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 12px;
}

.story-panel-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #51607A;
  margin: 0;
}

/* MEET THE TEAM */
.about-team-section {
  background: #F8FAFC;
  padding: 48px max(24px, calc((100% - 1240px)/2));
}

.about-team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.blue-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #0E5BA6;
  letter-spacing: 0.15em;
  background: rgba(14, 91, 166, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-team-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  color: #0C2740;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-team-desc {
  font-size: 16px;
  color: #51607A;
  line-height: 1.6;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-team-card {
  background: #FFFFFF;
  border: 1px solid #E3ECEF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 39, 64, 0.07);
  border-color: #3AD0B4;
}

.about-team-image-wrap {
  width: 100%;
  aspect-ratio: 1.15;
  overflow: hidden;
  background: #F4F8FA;
  border-bottom: 1px solid #E3ECEF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0B2C6;
}

.about-team-image-wrap img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-team-card:hover .about-team-image-wrap img {
  transform: scale(1.04);
}

.about-team-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.about-team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 8px;
}

.about-team-qualifications {
  font-size: 13.5px;
  color: #51607A;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 40px;
}

.about-team-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.about-team-social-link {
  color: #51607A;
  transition: color 0.2s;
  display: inline-flex;
}

.about-team-social-link:hover {
  color: #0E5BA6;
}

.team-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;
  margin-top: auto;
}

.team-card-actions:has(> :only-child) {
  grid-template-columns: 1fr;
}

.team-btn-primary {
  background: var(--ppi-blue, #0E5BA6);
  color: var(--ppi-white, #FFFFFF);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.team-btn-primary:hover {
  background: #0E5096;
  color: #FFFFFF;
}

.team-btn-secondary {
  background: var(--ppi-white, #FFFFFF);
  color: var(--ppi-navy, #0C2740);
  border: 1px solid var(--ppi-border, #D6E2F0);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-block;
}

.team-btn-secondary:hover {
  border-color: var(--ppi-blue, #0E5BA6);
  color: var(--ppi-blue, #0E5BA6);
}

.about-team-btn-wrap {
  margin-top: auto;
  display: flex;
}

.about-team-btn {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid #E2EAF2;
  background: #FFFFFF;
  color: #0E5BA6;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.about-team-card:hover .about-team-btn {
  background: #0E5BA6;
  color: #FFFFFF;
  border-color: #0E5BA6;
  box-shadow: 0 8px 20px -6px rgba(14, 91, 166, 0.4);
}

/* CTA BOOKING BLOCK */
.about-cta-section {
  padding: 48px max(24px, calc((100% - 1240px)/2));
  background: #FFFFFF;
  padding-top: 0px;
}

.about-cta-card {
  background: linear-gradient(135deg, #0E5BA6 0%, #083E75 100%);
  padding: 60px 40px;
  border-radius: 24px;
  color: #FFFFFF;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px -10px rgba(8, 62, 117, 0.3);
}

.about-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(58, 208, 180, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-cta-desc {
  font-size: 16px;
  color: #C7DBF0;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.about-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #3AD0B4;
  color: #0C2740;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 10px 25px -5px rgba(58, 208, 180, 0.4);
}

.about-cta-btn:hover {
  background: #2ec4a7;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(58, 208, 180, 0.5);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-story-left {
    position: static;
    text-align: center;
  }

  .about-story-timeline-wrap {
    justify-content: center;
  }

  .about-callout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-cta-card {
    padding: 40px 24px;
  }
}

/* ============ CONTACT TEMPLATE STYLES ============ */
.contact-hero-section {
  background: var(--contact-hero-bg, linear-gradient(135deg, #F4F9FD 0%, #EAF3FB 100%));
  padding: 72px max(24px, calc((100% - 1240px)/2)) 68px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, var(--contact-hero-glow, rgba(25, 168, 184, 0.15)) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--contact-hero-badge-color, #19A8B8);
  background: var(--contact-hero-badge-bg, rgba(25, 168, 184, 0.12));
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--contact-hero-title-color, #0C2740);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--contact-hero-desc-color, #51607A);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ CAREERS TEMPLATE STYLES ============ */
.careers-hero-section {
  background: var(--careers-hero-bg, linear-gradient(135deg, #F4F9FD 0%, #EAF3FB 100%));
  padding: 76px max(24px, calc((100% - 1240px)/2)) 68px;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #0C2740;
  box-sizing: border-box;
}

.careers-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 25%, var(--careers-hero-glow, rgba(25, 168, 184, 0.12)) 0%, transparent 60%);
  pointer-events: none;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.careers-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0F7E8C;
  background: #E6F6F8;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.careers-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.2;
  color: #0C2740;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.careers-hero-subtext {
  font-size: 17.5px;
  line-height: 1.65;
  color: #51607A;
  margin-bottom: 36px;
  max-width: 600px;
}

.careers-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.careers-hero-btn-primary {
  display: inline-block;
  background: #1366B6;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 25px -5px rgba(19, 102, 182, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, background-color 0.2s;
}

.careers-hero-btn-primary:hover {
  background: #0E5BA6;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -5px rgba(19, 102, 182, 0.45);
}

.careers-hero-image-col {
  position: relative;
}

.careers-hero-image-container {
  position: relative;
  width: 100%;
}

.careers-hero-image-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(25, 168, 184, 0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.careers-hero-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(12, 39, 64, 0.15);
  background: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
}

.careers-hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ============ POSITIONS SECTION ============ */
.careers-positions-section {
  background: #EAF3F7;
  padding: 48px max(24px, calc((100% - 1240px)/2));
  color: #0C2740;
}

.careers-positions-header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-positions-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  color: #0C2740;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.careers-positions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.careers-position-card {
  background: #FFFFFF;
  border: 1px solid rgba(19, 168, 184, 0.06);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 10px 30px -15px rgba(12, 39, 64, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.careers-position-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px -20px rgba(12, 39, 64, 0.15);
  border-color: rgba(19, 168, 184, 0.3);
}

.careers-position-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.careers-position-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #EAF3FB;
  color: #1366B6;
  transition: transform 0.3s;
}

.careers-position-card:hover .careers-position-icon-wrap {
  transform: scale(1.1);
}

.careers-position-card:nth-child(2n) .careers-position-icon-wrap {
  background: #E6F6F8;
  color: #0F7E8C;
}

.careers-position-num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E2ECF5;
  letter-spacing: -0.02em;
}

.careers-position-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: #0C2740;
  margin: 0 0 20px 0;
  transition: color 0.2s;
}

.careers-position-card:hover .careers-position-card-title {
  color: #1366B6;
}

.careers-position-card-content {
  flex-grow: 1;
  margin-bottom: 24px;
}

.careers-position-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-position-card-content li {
  font-size: 14px;
  line-height: 1.6;
  color: #51607A;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}

.bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EAF3FB;
  color: #1366B6;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.careers-position-card:nth-child(2n) .bullet-check {
  background: #E6F6F8;
  color: #0F7E8C;
}

.careers-position-card-footer {
  border-top: 1px solid #F0F5F8;
  padding-top: 18px;
  margin-top: auto;
}

.careers-position-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: #1366B6;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.careers-position-apply-link .link-arrow {
  transition: transform 0.2s;
}

.careers-position-apply-link:hover {
  color: #0E5BA6;
}

.careers-position-apply-link:hover .link-arrow {
  transform: translateX(4px);
}

.careers-apply-wrap {
  text-align: center;
  margin-top: 50px;
}

.careers-apply-btn {
  display: inline-block;
  background: transparent;
  color: #1366B6;
  border: 2px solid #1366B6;
  padding: 14px 42px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.careers-apply-btn:hover {
  background-color: #1366B6;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(19, 102, 182, 0.3);
}

/* ============ BOTTOM CONTACT REACH OUT SECTION ============ */
.careers-contact-section {
  background: #A9CCD6;
  padding: 90px max(24px, calc((100% - 1240px)/2));
  color: #0C2740;
}

.careers-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.careers-contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.careers-contact-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 32px);
  color: #0C2740;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.careers-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.careers-contact-item {
  font-size: 15px;
  line-height: 1.6;
  color: #0C2740;
}

.careers-contact-item strong {
  font-weight: 700;
}

.careers-contact-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.careers-contact-item a:hover {
  color: #1366B6;
}

.careers-contact-item.address-item {
  font-weight: 600;
  line-height: 1.45;
}

.careers-contact-item.address-item a {
  font-weight: 600;
}

.careers-contact-item.sub-location {
  color: #1366B6;
  font-weight: 700;
  margin-top: 4px;
}

.careers-google-reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -10px rgba(12, 39, 64, 0.15);
  max-width: 250px;
  margin-top: auto;
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-g-logo {
  flex: none;
}

.google-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.reviews-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #4285F4;
}

.reviews-sub {
  font-size: 9px;
  color: #51607A;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.google-stars-right {
  color: #FBBC05;
  font-size: 15px;
  letter-spacing: 1px;
}

/* Map Wrapper */
.careers-map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  border: 1px solid rgba(12, 39, 64, 0.08);
  box-shadow: 0 15px 35px -15px rgba(12, 39, 64, 0.1);
  display: flex;
}

.careers-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.careers-map-popup {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #FFFFFF;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 28px -10px rgba(12, 39, 64, 0.25);
  z-index: 2;
}

.map-popup-icon-wrap {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EAF3FB;
  color: #1366B6;
}

.map-popup-title {
  font-weight: 700;
  color: #0C2740;
  font-size: 13.5px;
}

.map-popup-subtitle {
  font-size: 11.5px;
  color: #7C93AC;
}

/* Form Card */
.careers-form-card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 20px 45px -20px rgba(12, 39, 64, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.careers-form-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: #1366B6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.45;
}

.careers-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.careers-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.careers-form-card .form-group label {
  font-size: 11px;
  font-weight: 600;
  color: #51607A;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.careers-form-input,
.careers-form-textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: #0C2740;
  padding: 12px 14px;
  border: 1px solid #DEE7F0;
  border-radius: 10px;
  outline: none;
  background: #FBFCFE;
  transition: border-color 0.2s, background-color 0.2s;
}

.careers-form-input:focus,
.careers-form-textarea:focus {
  border-color: #1366B6;
  background: #FFFFFF;
}

.careers-form-textarea {
  resize: vertical;
}

.careers-form-submit-btn {
  font-family: inherit;
  background: #1366B6;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 12px 24px -10px rgba(19, 102, 182, 0.5);
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.careers-form-submit-btn:hover {
  background-color: #0E5BA6;
  box-shadow: 0 16px 28px -10px rgba(19, 102, 182, 0.65);
}

.careers-form-submit-btn:active {
  transform: scale(0.98);
}

.careers-form-success-msg {
  color: #2e7d32;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1199px) {
  .careers-position-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .careers-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .careers-contact-info-col {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
  }

  .careers-google-reviews {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .careers-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .careers-hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .careers-hero-actions {
    justify-content: center;
  }

  .careers-hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .careers-position-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 28px 24px;
  }

  .careers-contact-grid {
    grid-template-columns: 1fr;
  }

  .careers-contact-info-col {
    grid-column: span 1;
    flex-direction: column;
    align-items: stretch;
  }

  .careers-google-reviews {
    margin-top: 24px;
  }

  .careers-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============ PRIVACY POLICY PAGE ============ */
.privacy-hero-section {
  position: relative;
  background: var(--sub-hero-bg, linear-gradient(135deg, #F4F9FD 0%, #EAF3FB 100%));
  padding: 80px max(24px, calc((100% - 1240px)/2)) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--ppi-border, #D6E2F0);
}

.privacy-hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sub-hero-glow, rgba(25, 168, 184, 0.12)), rgba(19, 102, 182, 0.04) 60%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.privacy-hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.privacy-hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.privacy-hero-badge {
  display: inline-flex;
  align-items: center;
  color: #0F7E8C;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #E6F6F8;
  padding: 6px 14px;
  border-radius: 99px;
  line-height: 1.2;
  margin-bottom: 0;
}

.privacy-hero-badge-wrap .sub-hero-badge {
  margin-bottom: 0;
  font-size: 12px;
  padding: 6px 14px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}

.privacy-updated-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #51607A;
  background: rgba(14, 91, 166, 0.06);
  padding: 6px 14px;
  border-radius: 99px;
  line-height: 1.2;
  margin-bottom: 0;
}

.privacy-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.privacy-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #51607A;
}

.privacy-content-wrapper {
  background: #FFFFFF;
  /* Matches services page main background */
  padding: 80px max(24px, calc((100% - 1240px)/2));
  position: relative;
}

.privacy-grid-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

/* Sidebar Navigation Styles */
.privacy-sidebar {
  position: sticky;
  top: 120px;
  /* Offset for header */
}

.privacy-sidebar-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #8595AB;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.privacy-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.nav-indicator-glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: rgba(19, 102, 182, 0.06);
  border-left: 3px solid #1366B6;
  border-radius: 12px;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease;
  opacity: 0;
  z-index: 0;
}

.privacy-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #51607A;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.privacy-nav-link:hover {
  color: #1366B6;
}

.privacy-nav-link.active {
  color: #1366B6;
}

.privacy-nav-link .nav-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #8595AB;
  transition: color 0.3s;
}

.privacy-nav-link.active .nav-number {
  color: #1366B6;
}

.privacy-nav-link .nav-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card Content Styles */
.privacy-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@keyframes privacyCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-card {
  display: none;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 30px -10px rgba(12, 39, 64, 0.05);
  border: 1px solid rgba(14, 91, 166, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.privacy-card.active {
  display: block;
  animation: privacyCardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.privacy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -15px rgba(12, 39, 64, 0.1);
  border-color: rgba(19, 168, 184, 0.2);
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.privacy-card-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1366B6, #0F7E8C);
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -4px rgba(19, 102, 182, 0.3);
}

.privacy-card-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.privacy-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 26px);
  color: #0C2740;
  letter-spacing: -0.015em;
  margin: 0;
}

.privacy-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #51607A;
}

.privacy-card-body p {
  margin-bottom: 20px;
}

.privacy-card-body p:last-child {
  margin-bottom: 0;
}

.privacy-card-body ul,
.privacy-card-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-card-body li {
  margin-bottom: 10px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .privacy-content-wrapper {
    padding: 40px 16px;
    overflow-x: hidden;
    max-width: 100%;
  }

  .privacy-grid-container {
    grid-template-columns: 100%;
    gap: 32px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .privacy-sidebar,
  .privacy-main-content {
    position: relative;
    top: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .privacy-sidebar-nav {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .privacy-sidebar-nav ul {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 12px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .privacy-sidebar-nav ul::-webkit-scrollbar {
    display: none;
  }

  .privacy-sidebar-nav li {
    flex-shrink: 0;
  }

  .privacy-nav-link {
    padding: 10px 16px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .nav-indicator-glow {
    border-left: none;
    border-bottom: 3px solid #1366B6;
    border-radius: 10px;
    height: 100%;
    width: 0;
  }

  .privacy-card {
    padding: 28px 20px;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 767px) {
  .privacy-hero-section {
    padding: 60px 16px 48px;
    text-align: center;
  }

  .privacy-hero-badge-wrap {
    justify-content: center;
  }

  .privacy-card-header {
    margin-bottom: 20px;
    gap: 14px;
  }

  .privacy-card-title {
    font-size: 20px;
  }

  .privacy-card-body {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .privacy-content-wrapper {
    padding: 28px 12px;
  }

  .privacy-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .privacy-card-badge-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .privacy-card-number {
    font-size: 13px;
  }

  .privacy-card-title {
    font-size: 18px;
  }
}

/* ============ CAREERS INTERACTIVE ACCORDION LAYOUT ============ */
.careers-positions-accordion-wrapper {
  max-width: 960px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.careers-accordion-item {
  background: #FFFFFF;
  border: 1px solid rgba(19, 168, 184, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(12, 39, 64, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.careers-accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -12px rgba(12, 39, 64, 0.08);
  border-color: rgba(19, 168, 184, 0.25);
}

.careers-accordion-item.active {
  border-color: rgba(19, 168, 184, 0.35);
  box-shadow: 0 20px 40px -15px rgba(12, 39, 64, 0.12);
}

/* Accordion Header */
.careers-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  cursor: pointer;
  user-select: none;
  background: #FFFFFF;
  transition: background-color 0.3s;
}

.careers-accordion-header:hover {
  background-color: #FAFDFE;
}

.careers-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.careers-accordion-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #19A8B8;
  background: #E6F6F8;
  padding: 6px 12px;
  border-radius: 10px;
  line-height: 1;
}

.careers-accordion-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 22px);
  color: #0C2740;
  margin: 0;
  transition: color 0.3s;
}

.careers-accordion-item.active .careers-accordion-title {
  color: #0F7E8C;
}

.careers-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.careers-accordion-location-badge {
  font-size: 12px;
  font-weight: 700;
  color: #51607A;
  background: rgba(14, 91, 166, 0.06);
  padding: 6px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.careers-accordion-toggle-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F4F9FD;
  color: #51607A;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s;
}

.careers-accordion-item:hover .careers-accordion-toggle-icon {
  background-color: #EAF3FB;
  color: #1366B6;
}

.careers-accordion-item.active .careers-accordion-toggle-icon {
  transform: rotate(180deg);
  background-color: #0F7E8C;
  color: #FFFFFF;
}

/* Accordion Content Panel */
.careers-accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  border-top: 1px solid rgba(19, 168, 184, 0.06);
  background: #FCFDFE;
}

.careers-accordion-content-inner {
  padding: 40px;
}

.careers-accordion-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Details Column */
.careers-accordion-details-col {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.careers-accordion-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #E6F6F8;
  color: #0F7E8C;
  flex-shrink: 0;
}

.careers-accordion-list-wrap {
  flex-grow: 1;
}

.careers-accordion-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0C2740;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}

.careers-accordion-list-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-accordion-list-wrap li {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #51607A;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}

.careers-accordion-list-wrap li:last-child {
  margin-bottom: 0;
}

/* Call to Action Column */
.careers-cta-card {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px -10px rgba(12, 39, 64, 0.05);
  text-align: center;
}

.careers-cta-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0C2740;
  margin: 0 0 10px 0;
}

.careers-cta-card-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #51607A;
  margin-bottom: 20px;
}

.careers-accordion-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1366B6;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 8px 20px -8px rgba(19, 102, 182, 0.4);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.careers-accordion-apply-btn:hover {
  background-color: #0E5BA6;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(19, 102, 182, 0.55);
}

.careers-accordion-apply-btn svg {
  transition: transform 0.2s;
}

.careers-accordion-apply-btn:hover svg {
  transform: translateX(3px);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .careers-accordion-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .careers-cta-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .careers-accordion-apply-btn {
    width: auto;
  }
}

@media (max-width: 767px) {
  .careers-accordion-header {
    padding: 24px 20px;
  }

  .careers-header-left {
    gap: 16px;
  }

  .careers-accordion-num {
    padding: 4px 8px;
    font-size: 15px;
  }

  .careers-header-right {
    gap: 12px;
  }

  .careers-accordion-location-badge {
    display: none;
    /* Hide badge on tiny mobile screens to prevent wrapping */
  }

  .careers-accordion-content-inner {
    padding: 24px 20px;
  }

  .careers-accordion-details-col {
    gap: 16px;
  }

  .careers-accordion-icon-wrap {
    display: none;
    /* Hide large category icon on small mobile to save space */
  }
}

/* ============ REFERRAL FORM PAGE ============ */
.referral-hero-section {
  position: relative;
  background-color: var(--ppi-bg, #F4F9FD);
  padding: 64px max(24px, calc((100% - 1240px)/2)) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--ppi-border, #D6E2F0);
  text-align: left;
}

.referral-hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(25, 168, 184, 0.12), rgba(19, 102, 182, 0.04) 60%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.referral-hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.referral-hero-badge {
  display: inline-block;
  color: #0F7E8C;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #E6F6F8;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.referral-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0C2740;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.referral-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #51607A;
}

.referral-content-wrapper {
  background: #F8FAFC;
  padding: 80px max(24px, calc((100% - 1240px)/2));
  position: relative;
  text-align: left;
}

.referral-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* Download Column & Card */
.referral-download-card {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.06);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 30px -10px rgba(12, 39, 64, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.referral-icon-badge-wrap {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #EAF3FB;
  color: #1366B6;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px -10px rgba(19, 102, 182, 0.3);
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.bounce-arrow {
  animation: arrowBounce 2s infinite ease-in-out;
}

.referral-download-heading {
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.referral-download-anchor-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #1366B6;
  text-decoration: none !important;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: -0.01em;
  font-size: clamp(20px, 3.5vw, 28px);
  transition: color 0.3s;
}

.referral-download-anchor-title:hover {
  color: #0F7E8C;
  text-decoration: none !important;
}

.referral-download-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #51607A;
  margin-bottom: 36px;
}

/* Instructions Step-List */
.referral-instructions-box {
  width: 100%;
  border-top: 1px solid #EEF3F8;
  padding-top: 28px;
}

.referral-instructions-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #8595AB;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.referral-instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.referral-instructions-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: #51607A;
}

.referral-instructions-list strong {
  color: #0C2740;
}

.bullet-step {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E6F6F8;
  color: #0F7E8C;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  flex-shrink: 0;
  line-height: 1;
}

/* Form Column & Card */
.referral-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 30px -10px rgba(12, 39, 64, 0.05);
  border: 1px solid rgba(14, 91, 166, 0.06);
}

.referral-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid #EEF3F8;
  padding-bottom: 16px;
}

.referral-form-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0C2740;
  margin: 0;
}

.referral-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

.referral-form-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: #1366B6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.referral-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.referral-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.referral-form-group label {
  font-size: 11px;
  font-weight: 600;
  color: #51607A;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.referral-form-group input[type="text"],
.referral-form-group input[type="email"],
.referral-form-group input[type="date"],
.referral-form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #0C2740;
  padding: 12px 14px;
  border: 1px solid #DEE7F0;
  border-radius: 10px;
  outline: none;
  background: #FBFCFE;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.referral-form-group input:focus,
.referral-form-group textarea:focus {
  border-color: #1366B6;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(19, 102, 182, 0.12);
}

.referral-form-group textarea {
  resize: vertical;
}

/* Custom File Upload Styling */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 46px;
  border: 1px dashed #DEE7F0;
  border-radius: 10px;
  background: #FBFCFE;
  display: flex;
  align-items: center;
  padding: 0 14px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.file-upload-wrapper:hover {
  border-color: #1366B6;
  background: #FAFDFE;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-custom-label {
  font-size: 13.5px;
  color: #8595AB;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

/* Submit Button */
.referral-submit-btn {
  font-family: inherit;
  background: #1366B6;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 12px 24px -10px rgba(19, 102, 182, 0.5);
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.referral-submit-btn:hover {
  background-color: #0E5BA6;
  box-shadow: 0 16px 28px -10px rgba(19, 102, 182, 0.65);
}

.referral-submit-btn:active {
  transform: scale(0.98);
}

/* Notification Alerts */
.referral-alert {
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.referral-alert.success-msg {
  background: #E8F5E9;
  border: 1px solid rgba(46, 125, 50, 0.15);
  color: #2E7D32;
}

.referral-alert.error-msg {
  background: #FFEBEE;
  border: 1px solid rgba(198, 40, 40, 0.15);
  color: #C62828;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .referral-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .referral-content-wrapper {
    padding: 40px 20px;
  }

  .referral-download-card,
  .referral-form-card {
    padding: 30px 20px;
  }

  .referral-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============ RESOURCES PAGE STYLES ============ */
:root {
  --ppi-blue: #0E5BA6;
  --ppi-blue-hover: #0E5096;
  --ppi-navy: #0C2740;
  --ppi-teal: #19A8B8;
  --ppi-teal-light: #E6F6F8;
  --ppi-bg: #F4F9FD;
  --ppi-text: #51607A;
  --ppi-border: #D6E2F0;
  --ppi-white: #FFFFFF;
}

.sub-hero {
  position: relative;
  background-color: var(--sub-hero-bg, var(--ppi-bg));
  overflow: hidden;
  padding: 64px max(24px, calc((100% - 1240px)/2)) 68px;
  border-bottom: 1px solid var(--ppi-border);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .sub-hero {
    min-height: 320px;
    padding: 50px 24px;
  }
}

@media (max-width: 600px) {
  .sub-hero {
    min-height: auto;
    padding: 40px 20px;
  }
}

.sub-hero-overlay {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sub-hero-glow, rgba(25, 168, 184, 0.12)), rgba(19, 102, 182, 0.04) 60%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.sub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sub-hero-badge-bg, var(--ppi-teal-light));
  color: var(--sub-hero-badge-color, #0F7E8C);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sub-hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sub-hero-badge-dot-color, var(--ppi-teal));
}

.sub-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--sub-hero-title-color, var(--ppi-navy));
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sub-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sub-hero-desc-color, var(--ppi-text));
  max-width: 650px;
}

/* Directory Section */
.resources-directory-section {
  padding: 80px max(24px, calc((100% - 1240px)/2));
  background: #FFFFFF;
}

.resources-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .resources-directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .resources-directory-grid {
    grid-template-columns: 1fr;
  }
}

.resources-group-card {
  background: #FFFFFF;
  border: 1px solid #EAF0F7;
  border-top: 4px solid var(--card-accent, #19A8B8);
  border-radius: 22px;
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.resources-group-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-accent-light, rgba(25, 168, 184, 0.08)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.resources-group-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(12, 39, 64, 0.15);
  border-color: #D6E2F0;
}

.resources-group-card:hover::after {
  opacity: 1;
}

/* Card Accent Themes */
.resources-group-card.accent-teal {
  --card-accent: #19A8B8;
  --card-accent-light: #E6F6F8;
}

.resources-group-card.accent-blue {
  --card-accent: #0E5BA6;
  --card-accent-light: #EAF3FB;
}

.resources-group-card.accent-purple {
  --card-accent: #8E24AA;
  --card-accent-light: #F3E5F5;
}

.resources-group-card.accent-green {
  --card-accent: #2E7D32;
  --card-accent-light: #E8F5E9;
}

.resources-group-card.accent-navy {
  --card-accent: #0C2740;
  --card-accent-light: #EAF0F7;
}

/* Group Card Header & Icon Wrapper */
.resources-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.resources-group-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card-accent-light, #E6F6F8);
  color: var(--card-accent, #19A8B8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s, color 0.4s;
  flex-shrink: 0;
}

.resources-group-card:hover .resources-group-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--card-accent);
  color: #FFFFFF;
}

.resources-group-title {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #0C2740;
  margin: 0;
}

/* Branch Tree list */
.branch-list {
  list-style: none;
  padding-left: 20px;
  margin: 0;
  position: relative;
  border-left: 1.5px solid #E2EBF4;
  z-index: 2;
  transition: border-color 0.4s;
}

.branch-item {
  position: relative;
  margin-bottom: 16px;
  padding-left: 5px;
}

.branch-item:last-child {
  margin-bottom: 0;
}

.branch-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 14px;
  height: 1.5px;
  background: #E2EBF4;
  transition: background-color 0.3s, width 0.3s, left 0.3s;
}

.branch-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #51607A;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.branch-link:hover {
  color: var(--card-accent, #19A8B8);
  transform: translateX(6px);
}

.resources-group-card:hover .branch-list {
  border-color: var(--card-accent-light);
}

.resources-group-card:hover .branch-item::before {
  background: var(--card-accent-light);
}

.branch-item:hover::before {
  background: var(--card-accent, #19A8B8) !important;
  width: 18px;
  left: -20px;
}

.resources-group-title-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.resources-group-title-link:hover {
  color: var(--card-accent, #19A8B8);
}

.resources-group-title-link .title-arrow-icon {
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.resources-group-title-link:hover .title-arrow-icon {
  opacity: 1;
  transform: translateX(4px);
}

/* Photo-Based Action Cards */
.resources-actions-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #EAF0F7;
}

.resources-photo-action-card {
  position: relative;
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(12, 39, 64, 0.08);
  border: 1px solid #EAF0F7;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.resources-photo-action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(12, 39, 64, 0.2);
}

.action-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.action-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.resources-photo-action-card:hover .action-card-bg img {
  transform: scale(1.08);
}

.action-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 39, 64, 0.2) 0%, rgba(12, 39, 64, 0.88) 100%);
  transition: background 0.4s ease;
}

.resources-photo-action-card:hover .action-card-overlay {
  background: linear-gradient(180deg, rgba(12, 39, 64, 0.3) 0%, rgba(12, 39, 64, 0.94) 100%);
}

.action-card-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  color: #FFFFFF;
}

.action-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.action-card-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #3AD0B4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, color 0.3s;
}

.resources-photo-action-card:hover .action-card-cta {
  transform: translateX(4px);
  color: #5CEAD1;
}

/* Publications Section */
.publications-section {
  background: #F4F9FD;
  padding: 80px max(24px, calc((100% - 1240px)/2));
  position: relative;
}

.publications-header-banner {
  background: #0E5BA6;
  padding: 24px 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.publications-header-banner .publications-title {
  color: #FFFFFF !important;
  font-size: 24px;
  margin: 0;
}

@media (max-width: 767px) {
  .publications-header-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.publications-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.publications-tabs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.publication-tab {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #C7DBF0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.publication-tab:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}

.publication-tab.active {
  color: #0E5BA6;
  background: #FFFFFF;
  border-color: #FFFFFF;
}

/* Publications List */
.publications-wrapper {
  position: relative;
  min-height: 720px;
  transition: opacity 0.25s ease;
}

.publications-wrapper.loading-state {
  opacity: 0.45;
  pointer-events: none;
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.publication-card {
  background: #FFFFFF;
  border: 1px solid #EAF0F7;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}

.publication-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -15px rgba(12, 39, 64, 0.12);
}

.publication-card-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F4F9FD;
}

.publication-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.publication-card:hover .publication-card-img-wrap img {
  transform: scale(1.06);
}

.publication-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 30px;
}

.publication-card-category {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1366B6;
  background: #EAF3FB;
  padding: 4px 10px;
  border-radius: 6px;
}

.publication-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0C2740;
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s;
}

.publication-card:hover .publication-card-title {
  color: #1366B6;
}

.publication-card-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: #51607A;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.publication-card-dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #AAB6C6;
  transition: color 0.3s;
}

.publication-card:hover .publication-card-dots {
  color: #1366B6;
}

.publication-card-dots span {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .publication-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .publication-card-img-wrap {
    width: 100%;
    height: 200px;
  }

  .publication-card-content {
    padding-right: 0;
  }

  .publication-card-dots {
    display: none;
  }
}

/* Loading/No Posts states */
.publications-no-posts,
.publications-skeleton {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  color: #51607A;
  background: #FFFFFF;
  border: 1px solid #EAF0F7;
  border-radius: 22px;
}

.publications-skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Publications Pagination */
.publications-feed-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.publications-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
  padding-top: 25px;
}

.pagination-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0C2740;
  background: #FFFFFF;
  border: 1.5px solid #D6E2F0;
  border-radius: 12px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(12, 39, 64, 0.04);
}

.pagination-btn:hover {
  background: #0E5BA6;
  color: #FFFFFF;
  border-color: #0E5BA6;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(14, 91, 166, 0.2);
}

.pagination-btn.active {
  background: #0E5BA6;
  color: #FFFFFF;
  border-color: #0E5BA6;
  box-shadow: 0 8px 18px rgba(14, 91, 166, 0.25);
}

.pagination-prev,
.pagination-next {
  padding: 8px 20px;
}

/* ============ RESOURCE DETAIL PAGE STYLES (REDESIGNED & MODERNIZED) ============ */
.resource-detail-hero-container {
  max-width: 1240px;
  margin: 0 auto;
}

.resource-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .resource-detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.resource-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(12, 39, 64, 0.12);
  border: 1px solid #D6E2F0;
  background: #FFFFFF;
}

.resource-hero-img-box {
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.resource-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-hero-card:hover .resource-hero-img-box img {
  transform: scale(1.06);
}

.resource-hero-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(12, 39, 64, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #3AD0B4;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(58, 208, 180, 0.7);
  animation: pulse-ring 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 208, 180, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(58, 208, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(58, 208, 180, 0);
  }
}

/* Sub-topic Pills */
.resource-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.resource-pill-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0E5BA6;
  background: #FFFFFF;
  border: 1.5px solid #D6E2F0;
  border-radius: 30px;
  padding: 8px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(12, 39, 64, 0.04);
}

.resource-pill-btn:hover,
.resource-pill-btn.active {
  color: #FFFFFF;
  background: #0F7E8C;
  border-color: #0F7E8C;
  box-shadow: 0 8px 20px rgba(15, 126, 140, 0.28);
  transform: translateY(-2px);
}

/* Body Content Section */
.resource-body-section {
  padding: 70px max(24px, calc((100% - 1240px)/2));
  background: #F4F9FD;
}

.resource-section-header {
  margin-bottom: 36px;
}

.resource-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F7E8C;
  background: #E6F6F8;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.resource-section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0C2740;
  margin: 0;
}

/* 2-Column Responsive Layout Grid */
.resource-body-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .resource-body-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Overview Text Block */
.resource-intro-wrapper {
  background: #FFFFFF;
  border: 1px solid #E2EBF4;
  border-radius: 20px;
  padding: 26px 30px;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(12, 39, 64, 0.03);
}

.resource-intro-text-block {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3A4B68;
}

.resource-intro-text-block p {
  margin: 0;
}

/* Clean Formatted Entry Content */
.resource-entry-content {
  background: #FFFFFF;
  border: 1px solid #E2EBF4;
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(12, 39, 64, 0.03);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3A4B68;
}

.resource-entry-content p {
  margin-top: 0;
  margin-bottom: 20px;
}

.resource-entry-content p:last-child {
  margin-bottom: 0;
}

.resource-entry-content h2,
.resource-entry-content h3,
.resource-entry-content h4 {
  font-family: 'Outfit', sans-serif;
  color: #0C2740;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 14px;
}

.resource-entry-content h2 {
  font-size: 24px;
}

.resource-entry-content h3 {
  font-size: 20px;
}

.resource-entry-content h4 {
  font-size: 18px;
}

.resource-entry-content ul,
.resource-entry-content ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 24px;
}

.resource-entry-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.resource-entry-content strong {
  color: #0C2740;
  font-weight: 600;
}

/* Spec Cards Stack */
.resource-spec-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.resource-spec-card {
  background: #FFFFFF;
  border: 1px solid #E2EBF4;
  border-left: 5px solid var(--spec-accent, #19A8B8);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s;
}

.resource-spec-card.accent-teal {
  --spec-accent: #19A8B8;
  --spec-bg: #E6F6F8;
}

.resource-spec-card.accent-blue {
  --spec-accent: #0E5BA6;
  --spec-bg: #EAF3FB;
}

.resource-spec-card.accent-navy {
  --spec-accent: #0C2740;
  --spec-bg: #EAF0F7;
}

.resource-spec-card:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 20px 40px -15px rgba(12, 39, 64, 0.12);
  border-color: #D6E2F0;
}

.spec-card-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--spec-bg, #E6F6F8);
  color: var(--spec-accent, #19A8B8);
  flex-shrink: 0;
  transition: transform 0.35s ease, background-color 0.35s, color 0.35s;
}

.resource-spec-card:hover .spec-card-icon-box {
  transform: scale(1.1) rotate(4deg);
  background: var(--spec-accent);
  color: #FFFFFF;
}

.spec-card-content {
  flex-grow: 1;
}

.spec-card-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--spec-accent);
  background: var(--spec-bg);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.spec-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4A5B78;
}

.spec-card-body p {
  margin: 0;
}

.spec-card-body strong {
  color: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
  margin-right: 6px;
}

/* Anatomy Diagram Showcase Card */
.resource-diagram-showcase-card {
  background: #FFFFFF;
  border: 1px solid #E2EBF4;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(12, 39, 64, 0.05);
  margin-top: 30px;
}

.diagram-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0F4F8;
}

.diagram-card-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0C2740;
  margin: 4px 0 0 0;
}

.diagram-zoom-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0E5BA6;
  background: #EAF3FB;
  border: 1px solid #CBE0F5;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.diagram-zoom-trigger:hover {
  background: #0E5BA6;
  color: #FFFFFF;
  border-color: #0E5BA6;
  box-shadow: 0 6px 16px rgba(14, 91, 166, 0.25);
}

.resource-diagram-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #F8FBFE;
  border: 1px solid #EAF0F7;
  cursor: pointer;
  text-align: center;
  padding: 16px;
}

.resource-diagram-img-wrapper img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  transition: transform 0.5s ease;
}

.resource-diagram-img-wrapper:hover img {
  transform: scale(1.04);
}

.diagram-overlay-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 39, 64, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.resource-diagram-img-wrapper:hover .diagram-overlay-hint {
  opacity: 1;
}

/* Lightbox Modal */
.diagram-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 39, 64, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 24px;
}

.diagram-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.diagram-modal-container {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.diagram-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #EAF3FB;
  border: none;
  font-size: 26px;
  color: #0C2740;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.diagram-modal-close:hover {
  background: #0C2740;
  color: #FFFFFF;
}

.diagram-modal-header h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0C2740;
  margin: 0 0 16px 0;
}

.diagram-modal-body {
  overflow-y: auto;
  text-align: center;
  max-height: calc(90vh - 80px);
}

.diagram-modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Video Showcase & Multi-Video Grid */
.resource-video-container {
  margin-top: 24px;
}

.resource-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.resource-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(12, 39, 64, 0.1);
  background: #0C2740;
}

.resource-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Resource Sidebar Column */
.resource-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Downloads Card */
.resource-downloads-card {
  background: #FFFFFF;
  border: 1px solid #EAF0F7;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(12, 39, 64, 0.05);
}

.downloads-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EAF0F7;
}

.downloads-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #E6F6F8;
  color: #0F7E8C;
}

.downloads-card-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #0C2740;
  margin: 0;
}

.downloads-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6C7D93;
  margin: 2px 0 0 0;
}

.resource-pdf-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-pdf-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #F8FBFE;
  border: 1.5px solid #E2EBF4;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.resource-pdf-card.highlighted {
  background: linear-gradient(135deg, #E6F6F8 0%, #F4F9FD 100%);
  border-color: #19A8B8;
}

.pdf-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdf-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0F7E8C;
}

.pdf-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0C2740;
}

.pdf-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0E5BA6;
  box-shadow: 0 4px 10px rgba(12, 39, 64, 0.06);
  transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
}

.resource-pdf-card:hover {
  transform: translateY(-2px) translateX(4px);
  background: #FFFFFF;
  border-color: #0E5BA6;
  box-shadow: 0 12px 25px rgba(14, 91, 166, 0.12);
}

.resource-pdf-card:hover .pdf-card-arrow {
  transform: translateX(4px);
  background: #0E5BA6;
  color: #FFFFFF;
}

/* Sidebar CTA Consultation Card */
.resource-cta-widget-card {
  margin-top: 24px;
  background: linear-gradient(135deg, #0C2740 0%, #0E5BA6 100%);
  border-radius: 24px;
  padding: 28px;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(12, 39, 64, 0.14);
  position: relative;
  overflow: hidden;
}

.cta-widget-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  color: #3AD0B4;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.resource-cta-widget-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.resource-cta-widget-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #D6E2F0;
  margin: 0 0 16px 0;
}

.cta-widget-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #3AD0B4;
  color: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(58, 208, 180, 0.3);
}

.cta-widget-btn:hover {
  background: #FFFFFF;
  color: #0C2740;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.3);
}

/* Video Showcase Section */
.resource-video-showcase {
  margin-top: 70px;
  background: #FFFFFF;
  border: 1px solid #EAF0F7;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(12, 39, 64, 0.06);
}

.video-showcase-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0E5BA6;
  background: #EAF3FB;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.video-showcase-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0C2740;
  margin-bottom: 10px;
}

.video-showcase-header p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #51607A;
  margin: 0;
}

.resource-video-container {
  max-width: 840px;
  margin: 0 auto;
}

.resource-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(12, 39, 64, 0.2);
  border: 4px solid #FFFFFF;
  background: #0C2740;
}

.resource-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Topic Navigation Bar */
.resource-footer-nav-container {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #E2EBF4;
  text-align: center;
}

.footer-nav-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 20px;
}

.resource-footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.resource-footer-pill-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0C2740;
  background: #FFFFFF;
  border: 1px solid #D6E2F0;
  border-radius: 30px;
  padding: 10px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(12, 39, 64, 0.03);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #19A8B8;
  transition: transform 0.3s ease, background-color 0.3s;
}

.resource-footer-pill-btn:hover,
.resource-footer-pill-btn.active {
  background: #0C2740;
  color: #FFFFFF;
  border-color: #0C2740;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(12, 39, 64, 0.2);
}

.resource-footer-pill-btn:hover .pill-dot,
.resource-footer-pill-btn.active .pill-dot {
  background: #3AD0B4;
  transform: scale(1.5);
}

/* ============ OTHER PUBLICATIONS SECTION (REDESIGNED) ============ */
.publications-section {
  padding: 80px max(24px, calc((100% - 1240px)/2));
  background: #FFFFFF;
}

.publications-header {
  margin-bottom: 40px;
}

.publications-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0E5BA6;
  background: #EAF3FB;
  padding: 6px 14px;
  border-radius: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0E5BA6;
}

.publications-title {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0C2740 !important;
  /* Fixed: explicitly dark navy for proper contrast */
  letter-spacing: -0.02em;
  margin: 12px 0 0 0;
}

.publications-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 991px) {
  .publications-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .publications-feed-grid {
    grid-template-columns: 1fr;
  }
}

.pub-card {
  background: #FFFFFF;
  border: 1px solid #E2EBF4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.pub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 39, 64, 0.1);
  border-color: #CBE0F5;
}

.pub-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #F4F9FD;
}

.pub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pub-card:hover .pub-card-image img {
  transform: scale(1.06);
}

.pub-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 39, 64, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 8px;
}

.pub-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pub-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0F7E8C;
  margin-bottom: 8px;
}

.pub-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.pub-card-title a {
  color: #0C2740;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pub-card-title a:hover {
  color: #0E5BA6;
}

.pub-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #51607A;
  margin: 0 0 20px 0;
}

.pub-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0E5BA6;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.pub-card:hover .pub-read-more {
  gap: 10px;
  color: #0F7E8C;
}

/* ==========================================================================
   Page Hero (Sub-pages & Doctor Bio)
   ========================================================================== */

.sub-hero {
  position: relative;
  background-color: var(--ppi-bg, #F4F9FD);
  overflow: hidden;
  padding: 64px max(24px, calc((100% - 1240px)/2)) 68px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--ppi-border, #D6E2F0);
  box-sizing: border-box;
}

.sub-hero-overlay {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(25, 168, 184, 0.12), rgba(19, 102, 182, 0.04) 60%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.sub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ppi-teal-light, #E6F6F8);
  color: #0F7E8C;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sub-hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ppi-teal, #19A8B8);
}

.sub-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ppi-navy, #0C2740);
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sub-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ppi-text, #51607A);
  max-width: 650px;
}

/* ==========================================================================
   Doctor Bio Detail Page
   ========================================================================== */

.doctor-bio-section {
  padding: 80px max(24px, calc((100% - 1240px)/2));
  background: var(--ppi-white, #FFFFFF);
}

.doctor-bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
}

@media (max-width: 900px) {
  .doctor-bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.doctor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.doctor-sidebar-img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  background: #EAF3FB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(12, 39, 64, 0.12);
  border: 1px solid var(--ppi-border, #D6E2F0);
  display: block;
  position: relative;
}

.doctor-sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctor-quick-card {
  background: var(--ppi-bg, #F4F9FD);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--ppi-border, #D6E2F0);
}

.doctor-quick-card h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--ppi-navy, #0C2740);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.doctor-quick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.doctor-quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ppi-text, #51607A);
}

.doctor-quick-list li .bullet {
  color: var(--ppi-teal, #19A8B8);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.doctor-main-content {
  display: flex;
  flex-direction: column;
}

.doctor-meta-header {
  border-bottom: 1px solid var(--ppi-border, #D6E2F0);
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.doctor-meta-creds {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ppi-teal, #19A8B8);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.doctor-meta-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--ppi-navy, #0C2740);
  margin-bottom: 12px;
}

.doctor-meta-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ppi-text, #51607A);
  line-height: 1.5;
}

.doctor-rich-text h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ppi-navy, #0C2740);
  margin-top: 36px;
  margin-bottom: 16px;
}

.doctor-rich-text h3:first-of-type {
  margin-top: 0;
}

.doctor-rich-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ppi-text, #51607A);
  margin-bottom: 20px;
}

.doctor-check-list {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doctor-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ppi-navy, #0C2740);
}

.doctor-check-list li .check-circle {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ppi-teal-light, #E6F6F8);
  color: #0F7E8C;
  font-size: 13px;
  font-weight: 700;
  flex: none;
}

.doctor-cta-box {
  background: linear-gradient(135deg, #0E5BA6 0%, #0C2740 100%);
  border-radius: 20px;
  padding: 30px;
  color: var(--ppi-white, #FFFFFF);
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 40px -16px rgba(12, 39, 64, 0.3);
}

@media (max-width: 600px) {
  .doctor-cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.doctor-cta-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.doctor-cta-text p {
  font-size: 14px;
  opacity: 0.85;
  color: #FFFFFF;
  margin: 0;
}

.doctor-cta-btn {
  background: var(--ppi-white, #FFFFFF);
  color: var(--ppi-blue, #0E5BA6);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.25);
}

.doctor-cta-btn:hover {
  background: #EAF3FB;
  transform: translateY(-1px);
}

/* ==========================================================================
   Service Sub-page Details
   ========================================================================== */

.service-detail-section {
  padding: 80px max(24px, calc((100% - 1240px)/2));
  background: var(--ppi-white, #FFFFFF);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service-text-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ppi-navy, #0C2740);
  margin-top: 40px;
  margin-bottom: 16px;
}

.service-text-content h3:first-of-type {
  margin-top: 0;
}

.service-text-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ppi-text, #51607A);
  margin-bottom: 24px;
}

.treatment-sub-block,
.service-text-content blockquote {
  background: var(--ppi-bg, #F4F9FD);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--ppi-blue, #0E5BA6);
  margin-bottom: 24px;
}

.treatment-sub-block h4,
.service-text-content blockquote h4,
.service-text-content blockquote strong:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ppi-navy, #0C2740);
  margin-bottom: 8px;
  display: block;
}

.treatment-sub-block p,
.service-text-content blockquote p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ppi-text, #51607A);
  margin-bottom: 16px;
}

.treatment-sub-block p:last-child,
.service-text-content blockquote p:last-child {
  margin-bottom: 0;
}

.treatment-sub-block .cta-link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ppi-blue, #0E5BA6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.treatment-sub-block .cta-link:hover {
  color: var(--ppi-navy, #0C2740);
}

.service-sidebar-card {
  background: var(--ppi-bg, #F4F9FD);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--ppi-border, #D6E2F0);
  box-shadow: 0 15px 30px rgba(12, 39, 64, 0.03);
}

.service-sidebar-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ppi-navy, #0C2740);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ppi-border, #D6E2F0);
  padding-bottom: 12px;
}

.service-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.service-list-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ppi-navy, #0C2740);
}

.service-list-items li strong {
  display: block;
  margin-bottom: 2px;
}

.service-list-items li span.bullet-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ppi-teal-light, #E6F6F8);
  color: #0F7E8C;
  font-size: 13px;
  font-weight: 700;
  flex: none;
  margin-top: 2px;
}

/* Default state for Mobile Drawer Components (Hidden on Desktop >1024px) */
.ppi-mobile-toggle,
.ppi-mobile-drawer,
.ppi-mobile-drawer-overlay {
  display: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (MOBILE & TABLET BREAKPOINTS)
   Strictly scoped to <= 1024px and <= 768px so Desktop (>1024px) remains 100% untouched.
   ========================================================================== */

/* Default state for Mobile Drawer Components (Hidden on Desktop >1024px) */
.ppi-mobile-toggle,
.ppi-mobile-drawer,
.ppi-mobile-drawer-overlay {
  display: none;
}

/* -------------------------------------------------------------------------
   TABLET & LANDSCAPE MOBILE BREAKPOINT (<= 1024px)
   ------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {

  html,
  body,
  .ppi-style-1 {
    overflow-x: clip !important;
    max-width: 100vw !important;
  }

  img,
  video,
  iframe,
  svg,
  canvas,
  embed {
    max-width: 100% !important;
    height: auto;
  }

  /* Header & Navigation Sticky */
  .ppi-style-2 {
    position: sticky !important;
    top: 0 !important;
    z-index: 990 !important;
  }

  .ppi-style-9 {
    padding: 14px 20px !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Hide Desktop Nav Links & CTA on Mobile/Tablet */
  .ppi-style-12,
  .ppi-style-14,
  .ppi-style-6 {
    display: none !important;
  }

  /* Hamburger Toggle Button */
  .ppi-mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 28px !important;
    height: 20px !important;
    min-height: 20px !important;
    max-width: 28px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: none !important;
    z-index: 1001 !important;
  }

  .ppi-mobile-toggle-bar {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #FFFFFF !important;
    border-radius: 3px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-origin: center !important;
  }

  .ppi-mobile-toggle.ppi-active .ppi-mobile-toggle-bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg) !important;
  }

  .ppi-mobile-toggle.ppi-active .ppi-mobile-toggle-bar:nth-child(2) {
    opacity: 0 !important;
  }

  .ppi-mobile-toggle.ppi-active .ppi-mobile-toggle-bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg) !important;
  }

  /* Mobile Drawer Overlay */
  .ppi-mobile-drawer-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 25, 47, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }

  .ppi-mobile-drawer-overlay.ppi-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile Navigation Drawer */
  .ppi-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: #0E5BA6;
    background: linear-gradient(180deg, #0E5BA6 0%, #0A437C 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
  }

  .ppi-mobile-drawer.ppi-active {
    transform: translateX(0);
  }

  .ppi-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ppi-mobile-drawer-logo img {
    height: 34px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
  }

  .ppi-mobile-drawer-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .ppi-mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    -webkit-overflow-scrolling: touch;
  }

  .ppi-mobile-menu-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .ppi-mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ppi-mobile-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .ppi-mobile-menu-link {
    display: block;
    padding: 14px 0;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.2s ease;
    flex: 1;
  }

  .ppi-mobile-menu-link:hover {
    color: #8CE0F0 !important;
  }

  .ppi-mobile-accordion-toggle {
    background: transparent;
    border: none;
    color: #FFFFFF;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .ppi-mobile-menu-item.ppi-expanded>.ppi-mobile-accordion-header .ppi-mobile-accordion-toggle svg {
    transform: rotate(180deg);
  }

  .ppi-mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .ppi-mobile-menu-item.ppi-expanded>.ppi-mobile-accordion-content {
    max-height: 800px;
    padding-bottom: 10px;
  }

  .ppi-mobile-depth-1 .ppi-mobile-menu-link {
    padding-left: 16px;
    font-size: 15px;
    opacity: 0.9;
  }

  .ppi-mobile-depth-2 .ppi-mobile-menu-link {
    padding-left: 32px;
    font-size: 14px;
    opacity: 0.8;
  }

  .ppi-mobile-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.15);
  }

  .ppi-mobile-drawer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    justify-content: center;
  }

  .ppi-mobile-drawer-cta {
    display: block;
    text-align: center;
    background: #FFFFFF !important;
    color: #0E5BA6 !important;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }

  .ppi-mobile-drawer-cta:hover {
    background: #EAF3FB !important;
    color: #0E5BA6 !important;
  }

  /* -------------------------------------------------------------------------
     FORCE VERTICAL STACKING FOR ALL HERO & SIDE-BY-SIDE SECTIONS (<= 1024px)
     ------------------------------------------------------------------------- */

  /* Hero Section Stacking across all page templates */
  .ppi-style-15,
  .ppi-style-17,
  .about-hero-grid,
  .about-story-grid,
  .resource-detail-hero-grid,
  .resource-body-layout,
  .practitioner-hero-grid,
  .practitioner-content-grid,
  .single-service-grid,
  .contact-layout-grid,
  .careers-hero-grid,
  .referral-form-grid,
  .service-panel-grid,
  .services-detail-wrap {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 28px !important;
  }

  .ppi-style-17>div,
  .about-hero-content-col,
  .about-hero-image-col,
  .about-story-left,
  .about-story-right,
  .resource-detail-hero-content,
  .resource-detail-hero-media,
  .resource-main-col,
  .resource-sidebar-col,
  .practitioner-main-col,
  .practitioner-sidebar-col,
  .service-main-col,
  .service-sidebar-col,
  .contact-info-col,
  .contact-form-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .ppi-style-28 {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  /* Split Layouts & Sidebars (Our Approach, No Referral, Podcasts, Resources, Insights, Global Contact) */
  .ppi-style-57,
  .ppi-style-71,
  .ppi-style-73,
  .ppi-style-88,
  .ppi-style-116,
  .ppi-style-127,
  .ppi-style-153,
  .resource-detail-layout,
  .contact-layout-grid,
  .practitioner-grid,
  .service-detail-grid,
  .referral-form-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 28px !important;
  }

  .ppi-approach-media-desktop {
    display: none !important;
  }

  .ppi-approach-media-mobile {
    display: block !important;
    margin: 24px 0 !important;
    width: 100% !important;
  }

  /* Insights Section Mobile/Tablet View All Articles Button Positioning */
  .ppi-insights-header-btn {
    display: none !important;
  }

  .ppi-insights-mobile-btn-wrap {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 28px !important;
  }

  .ppi-insights-mobile-btn-wrap .ppi-style-126 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .ppi-style-57>div,
  .ppi-style-73>div,
  .ppi-style-88>div,
  .ppi-style-116>div,
  .ppi-style-127>div,
  .ppi-style-153>div,
  .resource-main-content,
  .resource-sidebar,
  .contact-form-wrapper,
  .contact-info-cards,
  .practitioner-hero,
  .practitioner-sidebar,
  .service-main-content,
  .service-sidebar-card,
  .ppi-style-154,
  .ppi-style-163,
  .ppi-style-169 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Grid Layouts (2-column on tablet) */
  [class*="grid"],
  .ppi-style-49,
  .ppi-style-82,
  .ppi-style-177,
  .about-callout-grid,
  .about-mission-grid,
  .about-team-grid,
  .team-grid,
  .facilities-grid,
  .services-grid,
  .services-nav-grid,
  .process-steps-grid,
  .resources-grid,
  .resources-directory-grid,
  .publications-grid,
  .relief-options-grid,
  .benefits-grid,
  .job-listings-grid,
  .conditions-treated-grid,
  .treatment-steps-grid,
  .global-contact-grid,
  .hours-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
  }
}

/* -------------------------------------------------------------------------
   COMPLETE MOBILE STACKING (<= 768px) - STACK EVERYTHING VERTICALLY
   ------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {

  /* Mobile Hero Section Optimization */
  .sub-hero,
  .services-hero-section,
  .about-hero-section,
  .practitioner-hero-section,
  .contact-hero-section,
  .careers-hero-section {
    padding: 40px 20px !important;
    min-height: 200px !important;
  }

  /* Mobile Content Body Section Spacing Optimization */
  section:not(.sub-hero):not(.services-hero-section):not(.about-hero-section):not(.practitioner-hero-section):not(.contact-hero-section):not(.careers-hero-section),
  .ppi-style-44,
  .ppi-style-56,
  .service-category-section,
  .about-story-section,
  .about-team-section,
  .practitioner-profile-section,
  .careers-positions-section {
    padding: 32px 16px !important;
  }

  .about-cta-section {
    padding: 28px 16px !important;
    min-height: auto !important;
    padding-top: 0px !important;
  }

  .category-banner-header,
  .service-intro-grid,
  .ppi-style-45,
  .panel-header-block {
    margin-bottom: 20px !important;
  }

  /* Homepage Mobile Section Spacing & Padding Fixes */
  .ppi-style-44,
  .ppi-style-56 {
    padding: 36px 16px !important;
  }

  .ppi-style-17 {
    padding: 28px 16px 24px !important;
    gap: 24px !important;
  }

  .ppi-style-40 {
    padding: 16px 0 20px !important;
  }

  .ppi-style-45 {
    margin-bottom: 24px !important;
  }

  .ppi-style-142 {
    margin-top: 32px !important;
    padding-top: 28px !important;
  }

  /* Announcement Top Bar Stacking */
  .ppi-style-3 {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 10px 16px !important;
    gap: 8px !important;
    font-size: 13px !important;
  }

  .ppi-style-4 {
    display: block !important;
    width: 100% !important;
    margin-bottom: 4px !important;
  }

  /* FORCE ALL MULTI-COLUMN GRIDS TO 1-COLUMN VERTICAL STACK ACROSS ALL PAGES */
  [class*="grid"],
  .ppi-style-49,
  .ppi-style-82,
  .ppi-style-135,
  .ppi-style-177,
  .about-callout-grid,
  .about-mission-grid,
  .about-team-grid,
  .team-grid,
  .facilities-grid,
  .services-grid,
  .services-nav-grid,
  .process-steps-grid,
  .resources-grid,
  .resources-directory-grid,
  .publications-grid,
  .relief-options-grid,
  .benefits-grid,
  .job-listings-grid,
  .conditions-treated-grid,
  .treatment-steps-grid,
  .global-contact-grid,
  .contact-info-grid,
  .hours-grid,
  .related-resources-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* FORCE ALL FLEX BUTTON ROWS & BADGES TO STACK VERTICALLY */
  .about-hero-actions,
  .team-card-actions,
  .resource-pill-row,
  .ppi-style-22,
  .ppi-style-25,
  .ppi-style-78,
  .ppi-style-93,
  .form-row-2col,
  .form-row-3col,
  .practitioner-tabs,
  .condition-filters,
  .resource-filter-pills,
  .ppi-style-119,
  .ppi-style-145 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  /* Scaled Mobile Typography & Headings */
  h1,
  .ppi-style-20,
  .about-hero-title,
  .sub-hero-title {
    font-size: clamp(1.4rem, 5vw, 1.95rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
  }

  h2,
  .ppi-style-47,
  .ppi-style-63,
  .ppi-style-76,
  .ppi-style-90,
  .about-story-title,
  .about-callout-text {
    font-size: clamp(1.25rem, 4.2vw, 1.6rem) !important;
    line-height: 1.3 !important;
  }

  h3,
  .ppi-style-52,
  .ppi-style-85,
  .ppi-style-132,
  .resources-group-title {
    font-size: 1.1rem !important;
    line-height: 1.35 !important;
  }

  p,
  .ppi-style-21,
  .sub-hero-subtitle,
  .ppi-style-48,
  .ppi-style-64,
  .ppi-style-77,
  .ppi-style-118,
  .ppi-style-133,
  .about-hero-subtext {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
  }

  /* FULL WIDTH VERTICAL BUTTONS & LINKS */
  .about-hero-btn-primary,
  .about-hero-btn-secondary,
  .team-btn-primary,
  .team-btn-secondary,
  .about-cta-btn,
  .resource-pill-btn,
  .ppi-style-23,
  .ppi-style-24,
  .ppi-style-70,
  .ppi-style-81,
  .ppi-style-94,
  .ppi-style-95,
  .ppi-style-115,
  .ppi-style-126,
  .ppi-style-120,
  .ppi-style-122,
  .ppi-mobile-drawer-cta,
  input[type="submit"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 44px !important;
    font-size: 15px !important;
    padding: 10px 16px !important;
  }

  /* Reduced Mobile Inner Card & Video Container Padding */
  .resource-video-showcase,
  .resource-video-container,
  .resource-cta-widget-card,
  .resource-diagram-showcase-card,
  .about-team-card,
  .resources-group-card,
  .service-card,
  .ppi-style-50,
  .ppi-style-83,
  .ppi-style-106,
  .ppi-style-128,
  .ppi-style-136,
  .about-callout-stat-card,
  .about-callout-center-card,
  .about-cta-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 12px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .resource-video-container {
    padding: 0 !important;
    margin-top: 14px !important;
    width: 100% !important;
  }

  .resource-video-wrapper {
    width: 100% !important;
    border-radius: 12px !important;
    border: none !important;
  }

  /* Side Post Cards Stack Vertically */
  .ppi-style-136 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .ppi-style-137,
  .ppi-style-138 {
    width: 100% !important;
    max-width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  /* Satisfaction Badge Inside Our Approach */
  .ppi-style-60 {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 16px !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* Forms & Touch Targets */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  input[type="number"],
  select,
  textarea {
    width: 100% !important;
    font-size: 16px !important;
    /* Prevents auto-zoom on iOS safari */
    min-height: 48px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }

  /* Footer Stacking */
  footer,
  .ppi-style-176 {
    padding: 40px 16px 24px !important;
  }

  .ppi-style-177 {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
    text-align: left !important;
  }

  .ppi-style-185 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    margin-top: 32px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* -------------------------------------------------------------------------
   SMALL MOBILE BREAKPOINT (<= 480px)
   ------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .ppi-mobile-drawer {
    width: 90% !important;
  }

  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ppi-style-9 {
    padding: 10px 16px !important;
  }
}

/* =========================================================================
   HOMEPAGE HERO SECTION MOBILE REDESIGN (MOBILE ONLY: <= 767px)
   ========================================================================= */
@media screen and (max-width: 767px) {

  /* Hero Container */
  .ppi-style-15 {
    padding: 24px 0 36px !important;
    background-color: #F4F9FD !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* Radial glow overlay on mobile */
  .ppi-style-16 {
    top: -120px !important;
    right: -100px !important;
    width: 380px !important;
    height: 380px !important;
    opacity: 0.7 !important;
  }

  /* Hero Main Grid/Wrapper */
  .ppi-style-17 {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 16px !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ppi-style-17>div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* 1. Accepting New Patients Badge */
  .ppi-style-18 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    color: #0F7E8C !important;
    background: #E6F6F8 !important;
    border: 1px solid rgba(25, 168, 184, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    margin: 0 auto !important;
    box-shadow: 0 2px 8px rgba(25, 168, 184, 0.08) !important;
  }

  .ppi-style-19 {
    position: relative !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #19A8B8 !important;
    flex-shrink: 0 !important;
  }

  /* 2. Hero Title */
  .ppi-style-20 {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(26px, 7.5vw, 34px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    letter-spacing: -0.02em !important;
    margin: 14px 0 0 !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  /* 3. Hero Description Subtitle */
  .ppi-style-21 {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    color: #51607A !important;
    margin: 12px auto 0 !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  /* 4. Action Buttons Container */
  .ppi-style-22 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin: 22px 0 0 !important;
  }

  /* Primary Button: Book Appointment */
  .ppi-style-23 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: linear-gradient(135deg, #1366B6 0%, #0E5096 100%) !important;
    color: #FFFFFF !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px -4px rgba(19, 102, 182, 0.4) !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Secondary Button: Explore Treatments */
  .ppi-style-24 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: #FFFFFF !important;
    color: #0C2740 !important;
    border: 1.5px solid #D6E2F0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 13px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(12, 39, 64, 0.03) !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* 5. Trust Features Checklist Box */
  .ppi-style-25 {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 16px !important;
    margin: 20px 0 0 !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(214, 226, 240, 0.8) !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ppi-style-26 {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #36435C !important;
  }

  .ppi-style-27 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 17px !important;
    height: 17px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    border-radius: 50% !important;
    background: #E6F6F8 !important;
    color: #0F7E8C !important;
    flex-shrink: 0 !important;
  }

  /* 6. Doctor Showcase Graphic Card */
  .ppi-style-28 {
    width: 100% !important;
    margin-top: 6px !important;
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 32px -8px rgba(12, 39, 64, 0.12) !important;
    border: 1px solid rgba(14, 91, 166, 0.1) !important;
    background: #FFFFFF !important;
  }

  .ppi-style-29 {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    aspect-ratio: auto !important;
    background: linear-gradient(165deg, #E9F4FA 0%, #E2F3F4 100%) !important;
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .ppi-style-30 {
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at 50% 120%, rgba(25, 168, 184, 0.25), transparent 60%) !important;
  }

  /* 20+ Years Badge */
  .ppi-style-31 {
    position: absolute !important;
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    padding: 4px 12px !important;
    border-radius: 99px !important;
    box-shadow: 0 4px 14px rgba(12, 39, 64, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    white-space: nowrap !important;
  }

  .ppi-style-32 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    color: #1366B6 !important;
    line-height: 1 !important;
  }

  .ppi-style-33 {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #51607A !important;
    line-height: 1.1 !important;
    text-align: left !important;
  }

  /* Doctor Images inside image container */
  .ppi-style-34,
  .ppi-style-35 {
    position: absolute !important;
    bottom: 0 !important;
    border-radius: 0 !important;
  }

  /* Dr. Sev Perelman (Left) - scaled down to match */
  .ppi-style-34 {
    left: 1% !important;
    height: 80% !important;
    width: 49% !important;
    object-fit: cover !important;
    object-position: top center !important;
    z-index: 2 !important;
  }

  /* Dr. Michael Wansbrough (Right) - scaled up to match */
  .ppi-style-35 {
    right: 0% !important;
    height: 81% !important;
    width: 60% !important;
    object-fit: cover !important;
    object-position: top center !important;
    z-index: 3 !important;
  }

  /* Doctor Name/Title Card Bar at Bottom of Showcase */
  .ppi-style-36 {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    width: 100% !important;
    background: #FFFFFF !important;
    padding: 12px 10px !important;
    border-top: 1px solid #EDF4FA !important;
    z-index: 10 !important;
    gap: 8px !important;
    box-sizing: border-box !important;
  }

  .ppi-style-37 {
    text-align: center !important;
    flex: 1 !important;
  }

  .ppi-style-38 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    line-height: 1.2 !important;
  }

  .ppi-style-39 {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #0F7E8C !important;
    margin-top: 2px !important;
    line-height: 1.15 !important;
  }

  /* Our Approach 4 Points Vertically Stacked on Mobile */
  .ppi-style-65 {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .ppi-style-66 {
    width: 100% !important;
  }

  /* Ensure header View All Articles button is hidden on mobile & tab */
  #insights .ppi-insights-header-btn,
  .ppi-style-98 .ppi-insights-header-btn {
    display: none !important;
  }

  /* About Us Hero Mobile Redesign Overrides */
  .about-hero-section {
    padding: 24px 16px 36px !important;
    background-color: #F4F9FD !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .about-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .about-hero-content-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .about-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    color: #0F7E8C !important;
    background: #E6F6F8 !important;
    border: 1px solid rgba(25, 168, 184, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    margin: 0 auto !important;
    box-shadow: 0 2px 8px rgba(25, 168, 184, 0.08) !important;
  }

  .about-hero-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(22px, 6.5vw, 28px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    letter-spacing: -0.02em !important;
    margin: 14px 0 0 !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  .about-hero-subtext {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    color: #51607A !important;
    margin: 12px auto 0 !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  .about-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin: 20px 0 0 !important;
  }

  .about-hero-btn-primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: linear-gradient(135deg, #1366B6 0%, #0E5096 100%) !important;
    color: #FFFFFF !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    padding: 13px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px -4px rgba(19, 102, 182, 0.4) !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .about-hero-btn-secondary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: #FFFFFF !important;
    color: #0C2740 !important;
    border: 1.5px solid #D6E2F0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(12, 39, 64, 0.03) !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .about-hero-image-col {
    width: 100% !important;
    margin-top: 10px !important;
  }

  .about-hero-image-container {
    position: relative !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .about-hero-image-wrap {
    width: 100% !important;
    height: 230px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    position: relative !important;
    padding: 0 !important;
    background: none !important;
    border: 1px solid rgba(12, 39, 64, 0.1) !important;
    box-shadow: 0 12px 32px -8px rgba(12, 39, 64, 0.15) !important;
  }

  .about-hero-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 20px !important;
  }

  .about-hero-experience-badge {
    position: absolute !important;
    bottom: 12px !important;
    left: 12px !important;
    top: auto !important;
    right: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 6px 14px !important;
    border-radius: 99px !important;
    box-shadow: 0 4px 16px rgba(12, 39, 64, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    z-index: 10 !important;
  }

  .about-hero-experience-badge .exp-num {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1366B6 !important;
    line-height: 1 !important;
  }

  .about-hero-experience-badge .exp-label {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #51607A !important;
    line-height: 1.15 !important;
    text-transform: uppercase !important;
    text-align: left !important;
  }

  /* =========================================================================
     OUR STORY SECTION MOBILE REDESIGN (<= 767px)
     ========================================================================= */
  .about-story-section {
    padding: 36px 0 44px !important;
    background: #F4F9FD !important;
    position: relative !important;
  }

  .about-story-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 16px !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .about-story-left {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .about-story-left .blue-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    color: #0F7E8C !important;
    background: #E6F6F8 !important;
    border: 1px solid rgba(25, 168, 184, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    margin: 0 auto 14px !important;
  }

  .about-story-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(22px, 6.5vw, 28px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .about-story-timeline-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 14px !important;
  }

  .about-story-timeline-wrap .timeline-line {
    width: 40px !important;
  }

  .about-story-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .story-panel-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
    background: #FFFFFF !important;
    border: 1px solid #EAF0F7 !important;
    box-shadow: 0 6px 20px rgba(12, 39, 64, 0.06) !important;
    text-align: left !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .story-panel-icon-wrap {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 12px !important;
    background: #E6F6F8 !important;
    color: #0F7E8C !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .story-panel-content {
    flex: 1 !important;
    text-align: left !important;
  }

  .story-panel-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    margin: 0 0 6px !important;
  }

  .story-panel-content p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: #51607A !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* =========================================================================
     SERVICES PAGE MOBILE OVERFLOW & CARD FIX (MOBILE-ONLY: <= 767px)
     ========================================================================= */
  .services-nav-section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: #FFFFFF !important;
    position: relative !important;
  }

  .services-nav-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Force Quick Links Grid to 1-Column Stacking with 100% Card Width */
  .services-nav-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Service Quick Link Card */
  .services-nav-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 14px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2EAF2 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(12, 39, 64, 0.03) !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    overflow: hidden !important;
  }

  /* Fixed Icon Box */
  .services-nav-icon-wrap {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Text Wrapper: Fluid Flex Child with zero min-width to prevent overflow */
  .services-nav-card-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    text-align: left !important;
  }

  /* Title: Allow clean text wrapping and wrap long words cleanly */
  .services-nav-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
    display: block !important;
  }

  /* View Details Arrow Link */
  .services-nav-card-action {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #0E5BA6 !important;
    text-transform: uppercase !important;
    margin-top: 3px !important;
    letter-spacing: 0.04em !important;
    display: inline-block !important;
    white-space: nowrap !important;
  }

  /* Service Category Sections Containment */
  .services-detail-wrap {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .service-category-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 16px 36px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-bottom: 1px solid #EDF4FA !important;
  }

  .category-banner-header {
    width: 100% !important;
    padding: 14px 18px !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    border-left: 4px solid #0E5BA6 !important;
    background: #EAF2FA !important;
  }

  .category-banner-header h2 {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(18px, 5.2vw, 22px) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #0C2740 !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
  }

  .service-intro-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
  }

  .service-wysiwyg-desc {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #4D5E7A !important;
  }

  .service-wysiwyg-desc p {
    margin-bottom: 12px !important;
  }

  .chronic-pain-custom-img,
  .chronic-pain-custom-image-wrap img {
    width: 100% !important;
    height: auto !important;
    max-height: 220px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    margin-top: 6px !important;
  }

  .expert-care-card-box {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    background: #F7FAFD !important;
    border: 1px solid #EAEFF5 !important;
  }

  .expert-care-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #E2EBF5 !important;
  }

  .expert-care-card-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .expert-care-card-item {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: #3B4B66 !important;
  }

  /* Interventional Video & Why Important Panels */
  .interventional-video-panel,
  .chronic-pain-importance-panel {
    padding: 22px 16px !important;
    border-radius: 18px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
  }

  .chronic-pain-importance-panel {
    background: linear-gradient(135deg, #0C2740 0%, #081B2E 100%) !important;
    color: #FFFFFF !important;
  }

  .importance-panel-grid,
  .video-panel-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .importance-panel-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(18px, 5vw, 21px) !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .importance-panel-desc,
  .video-panel-wysiwyg {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .importance-panel-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    margin-top: 14px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* Detailed Dark Blue Service Container Panels */
  .service-detailed-panel {
    padding: 22px 16px !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    background: #0C2740 !important;
    box-sizing: border-box !important;
  }

  .panel-header-top-row {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .panel-header-cta-wrap {
    display: none !important;
  }

  .panel-mobile-footer-cta {
    display: flex !important;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }

  .panel-mobile-footer-cta .panel-header-cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 24px !important;
    font-size: 15px !important;
  }

  .panel-title-text {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(20px, 5.8vw, 24px) !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .panel-desc-wysiwyg {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 14px !important;
  }

  .treatment-filter-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
    margin-bottom: 16px !important;
  }

  .filter-tab-btn {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
  }

  .panel-cards-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .panel-treatment-card {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-sizing: border-box !important;
  }

  .panel-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 5px !important;
    line-height: 1.3 !important;
  }

  .panel-card-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 10px !important;
  }

  .panel-card-link {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #3AD0B4 !important;
  }

  /* Two Column Layouts & Affiliate Cards */
  .panel-two-column-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .partner-branding-box {
    padding: 18px 14px !important;
    border-radius: 14px !important;
    margin-top: 16px !important;
  }

  .partner-name {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    margin-bottom: 6px !important;
  }

  .partner-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .partner-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .panel-right-header {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.04em !important;
  }

  .panel-therapies-grid,
  .panel-treatments-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .panel-therapy-card,
  .panel-treatment-list-item {
    padding: 14px 12px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .therapy-card-title,
  .treatment-item-title {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 4px !important;
  }

  .therapy-card-desc,
  .treatment-item-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    margin: 0 !important;
  }

  /* =========================================================================
     RESOURCES PAGE MOBILE TYPOGRAPHY & SPACING REDESIGN (MOBILE-ONLY: <= 767px)
     ========================================================================= */
  .resources-directory-section {
    padding: 24px 16px 32px !important;
    background: #FFFFFF !important;
  }

  .resources-directory-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .resources-group-card {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    border-top-width: 3px !important;
    box-shadow: 0 2px 10px rgba(12, 39, 64, 0.03) !important;
  }

  .resources-group-header {
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .resources-group-icon-wrapper {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 8px !important;
  }

  .resources-group-icon-wrapper svg {
    width: 18px !important;
    height: 18px !important;
  }

  .resources-group-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
  }

  .branch-list {
    padding-left: 14px !important;
    margin: 0 !important;
    border-left-width: 1.5px !important;
  }

  .branch-item {
    margin-bottom: 8px !important;
    padding-left: 4px !important;
  }

  .branch-item::before {
    top: 8px !important;
    width: 10px !important;
  }

  .branch-link {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #4B5973 !important;
  }

  .resources-actions-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
  }

  .resources-photo-action-card {
    height: 160px !important;
    padding: 16px 14px !important;
    border-radius: 16px !important;
  }

  .action-card-badge {
    font-size: 9.5px !important;
    padding: 4px 8px !important;
    gap: 5px !important;
  }

  .action-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
  }

  .action-card-cta {
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  /* Publications Banner & Tabs */
  .publications-section {
    padding: 28px 16px 36px !important;
    background: #F4F9FD !important;
  }

  .publications-header-banner {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
    gap: 12px !important;
    background: #0E5BA6 !important;
  }

  .publications-header-banner .publications-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    line-height: 1.25 !important;
  }

  .publications-header .publications-title,
  .publications-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    line-height: 1.25 !important;
  }

  .publications-tabs-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .publication-tab {
    font-size: 11px !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
  }

  /* Publication Cards List */
  .publications-wrapper {
    min-height: auto !important;
  }

  .publications-list,
  .publications-feed-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .publication-card {
    padding: 14px !important;
    border-radius: 16px !important;
    gap: 12px !important;
    background: #FFFFFF !important;
    border: 1px solid #EAF0F7 !important;
    box-shadow: 0 2px 8px rgba(12, 39, 64, 0.02) !important;
  }

  .publication-card-img-wrap {
    width: 100% !important;
    height: 170px !important;
    border-radius: 12px !important;
  }

  .publication-card-content {
    gap: 6px !important;
    padding-right: 0 !important;
  }

  .publication-card-category {
    font-size: 10px !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    margin-bottom: 2px !important;
  }

  .publication-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #0C2740 !important;
    margin: 0 !important;
  }

  .publication-card-excerpt {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #51607A !important;
  }

  .publications-pagination-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 20px !important;
  }

  .publications-pagination-wrap .pagination-btn {
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 10px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
  }

  /* =========================================================================
     SINGLE PRACTITIONER PAGE MOBILE TYPOGRAPHY & SPACING REDESIGN (<= 767px)
     ========================================================================= */
  .doctor-bio-section {
    padding: 24px 16px 36px !important;
    background: #FFFFFF !important;
  }

  .doctor-bio-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .doctor-sidebar,
  .doctor-main-content {
    display: contents !important;
  }

  .doctor-sidebar-img {
    order: 1 !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    aspect-ratio: 4 / 4.5 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #EAF3FB !important;
    display: block !important;
  }

  .doctor-sidebar-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
  }

  .doctor-meta-header {
    order: 2 !important;
    padding-bottom: 14px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #EAF0F7 !important;
    text-align: center !important;
  }

  .doctor-meta-creds {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #19A8B8 !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 6px !important;
    line-height: 1.35 !important;
  }

  .doctor-meta-name {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(22px, 6vw, 26px) !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
  }

  .doctor-meta-title {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #51607A !important;
    line-height: 1.4 !important;
  }

  .doctor-quick-card {
    order: 3 !important;
    padding: 16px 14px !important;
    border-radius: 14px !important;
    background: #F4F9FD !important;
    border: 1px solid #D6E2F0 !important;
  }

  .doctor-quick-card h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    padding-bottom: 6px !important;
    border-bottom: 1px solid #E2EBF5 !important;
  }

  .doctor-quick-list {
    gap: 8px !important;
  }

  .doctor-quick-list li {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #3B4B66 !important;
  }

  .doctor-rich-text {
    order: 4 !important;
  }

  .doctor-rich-text h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 17.5px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    margin-top: 14px !important;
    margin-bottom: 10px !important;
  }

  .doctor-rich-text p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #4D5E7A !important;
    margin-bottom: 12px !important;
  }

  .doctor-check-list {
    gap: 8px !important;
    margin: 12px 0 18px !important;
  }

  .doctor-check-list li {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    color: #0C2740 !important;
    gap: 10px !important;
  }

  .doctor-check-list li .check-circle {
    width: 20px !important;
    height: 20px !important;
    font-size: 11px !important;
  }

  .doctor-cta-box {
    order: 5 !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
    margin-top: 10px !important;
    gap: 14px !important;
    text-align: center !important;
    box-shadow: 0 10px 24px rgba(12, 39, 64, 0.12) !important;
  }

  .doctor-cta-text h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    color: #FFFFFF !important;
  }

  .doctor-cta-text p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 0 !important;
  }

  .doctor-cta-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    padding: 11px 16px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* =========================================================================
     SINGLE SERVICE PAGE MOBILE TYPOGRAPHY & SPACING REDESIGN (<= 767px)
     ========================================================================= */
  .service-detail-section {
    padding: 24px 16px 36px !important;
    background: #FFFFFF !important;
  }

  .service-detail-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .service-text-content h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }

  .service-text-content p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #4D5E7A !important;
    margin-bottom: 12px !important;
  }

  .treatment-sub-block,
  .service-text-content blockquote {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    border-left-width: 4px !important;
    background: #F4F9FD !important;
    margin-bottom: 14px !important;
  }

  .treatment-sub-block h4,
  .service-text-content blockquote h4,
  .service-text-content blockquote strong:first-child {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #0C2740 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }

  .treatment-sub-block p,
  .service-text-content blockquote p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: #4B5973 !important;
    margin-bottom: 0 !important;
  }

  .service-sidebar-card {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    background: #F4F9FD !important;
    border: 1px solid #D6E2F0 !important;
    margin-top: 8px !important;
  }

  .service-sidebar-card h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #E2EBF5 !important;
  }

  .service-sidebar-card>p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
    color: #51607A !important;
  }

  .service-list-items {
    gap: 10px !important;
  }

  .service-list-items li {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    gap: 10px !important;
  }

  .service-list-items li strong {
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  .service-list-items li span.bullet-check {
    width: 20px !important;
    height: 20px !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
  }

  .service-sidebar-card a.team-btn-primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    padding: 11px 16px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* =========================================================================
     RESOURCE DETAIL PAGE MOBILE TYPOGRAPHY & SPACING REDESIGN (<= 767px)
     ========================================================================= */
  .resource-detail-hero {
    padding: 36px 16px 28px !important;
  }

  .resource-detail-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .resource-pill-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 14px !important;
    width: 100% !important;
  }

  .resource-pill-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .resource-hero-card {
    border-radius: 16px !important;
    margin-top: 8px !important;
  }

  .resource-hero-img-box {
    height: 200px !important;
  }

  .resource-hero-card-badge {
    padding: 8px 12px !important;
    font-size: 11.5px !important;
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
  }

  .resource-body-section {
    padding: 24px 16px 36px !important;
    background: #F4F9FD !important;
  }

  .resource-section-header {
    margin-bottom: 16px !important;
  }

  .resource-header-tag {
    font-size: 10.5px !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
  }

  .resource-section-heading {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(20px, 5.8vw, 24px) !important;
    font-weight: 800 !important;
    color: #0C2740 !important;
    line-height: 1.25 !important;
  }

  .resource-body-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .resource-entry-content,
  .resource-intro-wrapper {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    margin-bottom: 18px !important;
  }

  .resource-entry-content p,
  .resource-intro-text-block {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #4D5E7A !important;
    margin-bottom: 12px !important;
  }

  .resource-entry-content h2,
  .resource-entry-content h3,
  .resource-entry-content h4 {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }

  .resource-entry-content h2 {
    font-size: 19px !important;
  }

  .resource-entry-content h3 {
    font-size: 17.5px !important;
  }

  .resource-entry-content h4 {
    font-size: 16px !important;
  }

  /* Diagram Showcase Card */
  .resource-diagram-showcase-card {
    padding: 18px 14px !important;
    border-radius: 16px !important;
    margin-top: 18px !important;
  }

  .diagram-showcase-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }

  .diagram-card-heading {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
  }

  .diagram-zoom-trigger {
    font-size: 11.5px !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
  }

  .resource-diagram-img-wrapper {
    padding: 10px !important;
    border-radius: 12px !important;
  }

  /* Sidebar Cards & PDF Downloads */
  .resource-downloads-card,
  .resource-cta-widget-card {
    padding: 18px 14px !important;
    border-radius: 16px !important;
    margin-top: 16px !important;
  }

  .resource-pdf-card {
    padding: 12px 10px !important;
    border-radius: 10px !important;
    gap: 8px !important;
  }

  .pdf-card-title {
    font-size: 13px !important;
    font-weight: 700 !important;
  }

  .pdf-card-tag {
    font-size: 9.5px !important;
  }

  /* Video & Footer Pills */
  .resource-video-showcase {
    margin-top: 22px !important;
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  .video-showcase-header h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .resource-footer-nav-container {
    margin-top: 22px !important;
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  .footer-nav-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
  }

  .resource-footer-pill-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .resource-footer-pill-btn {
    font-size: 11.5px !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
  }

  /* Other Publications Section */
  .publications-container {
    padding: 24px 16px 36px !important;
  }

  .publications-feed-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .pub-card {
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .pub-card-image {
    height: 170px !important;
  }

  .pub-card-body {
    padding: 14px !important;
  }

  .pub-card-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }

  .pub-card-excerpt {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}

/* =========================================================================
   PREMIUM PATIENT BOOKING MODAL STYLES
   ========================================================================= */

.ppi-booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(14, 91, 166, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.ppi-booking-modal-overlay.ppi-active {
  opacity: 1;
  visibility: visible;
}

.ppi-booking-modal-container {
  background: #FFFFFF;
  border-radius: 24px;
  width: 95%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px -16px rgba(14, 91, 166, 0.35);
  position: relative;
  padding: 48px;
  transform: scale(0.92) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

.ppi-booking-modal-container::-webkit-scrollbar {
  width: 6px;
}

.ppi-booking-modal-container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.ppi-booking-modal-container::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}

.ppi-booking-modal-container::-webkit-scrollbar-thumb:hover {
  background: #0E5BA6;
}

.ppi-booking-modal-overlay.ppi-active .ppi-booking-modal-container {
  transform: scale(1) translateY(0);
}

.ppi-booking-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  color: #AAB6C6;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
}

.ppi-booking-modal-close:hover {
  color: #0E5BA6;
  transform: scale(1.1);
}

.ppi-booking-modal-wizard {
  position: relative;
  width: 100%;
}

.ppi-booking-screen {
  display: none;
  width: 100%;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.ppi-booking-screen.ppi-active {
  display: block;
  animation-name: ppiModalScreenFade;
}

@keyframes ppiModalScreenFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Screen Typography */
.ppi-booking-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1366B6;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ppi-booking-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0E5BA6;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.ppi-booking-card-welcome {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #AAB6C6;
  letter-spacing: 0.15em;
  display: block;
  text-align: center;
  margin-bottom: 4px;
}

.ppi-booking-title-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #0E5BA6;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ppi-booking-subtitle-question {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #51607A;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.ppi-booking-title-large {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0E5BA6;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 24px;
}

/* Card Selection Row */
.ppi-booking-options-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 8px;
}

.ppi-booking-option-card {
  flex: 1;
  max-width: 320px;
  background: #F4F9FD;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 28px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 8px 24px rgba(14, 91, 166, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ppi-booking-option-card:hover {
  background: #FFFFFF;
  border-color: #E2E8F0;
  transform: none;
  box-shadow: 0 16px 40px rgba(14, 91, 166, 0.15);
}

.ppi-booking-card-btn-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  background: #0E5BA6;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(14, 91, 166, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ppi-booking-option-card:hover .ppi-booking-card-btn-text {
  background: linear-gradient(135deg, #1877F2 0%, #0A4E91 100%);
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.45);
  letter-spacing: 0.3px;
}

.ppi-booking-card-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #51607A;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  transition: color 0.3s ease;
}

.ppi-booking-option-card:hover .ppi-booking-card-subtext {
  color: #1E293B;
}

/* Info Text Content & Sub-elements */
.ppi-booking-text-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}

.ppi-booking-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #51607A;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ppi-booking-info-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0E5BA6;
}

.ppi-text-danger {
  color: #D32F2F;
  font-weight: 700;
}

.ppi-booking-link-highlight {
  color: #0E5BA6;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted #0E5BA6;
  padding-bottom: 1px;
}

.ppi-booking-link-highlight:hover {
  color: #1366B6;
  border-color: #1366B6;
}

.ppi-booking-link-underlined {
  color: #0E5BA6;
  font-weight: 700;
  text-decoration: underline;
}

.ppi-booking-link-underlined:hover {
  color: #1366B6;
}

.ppi-center {
  text-align: center;
}

/* Back Button */
.ppi-booking-back-btn {
  background: none;
  border: none;
  color: #51607A;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 24px;
  transition: color 0.2s, background-color 0.2s;
}

.ppi-booking-back-btn:hover {
  color: #0E5BA6;
  background-color: #F4F9FD;
}

/* Assistance Form Card Panel */
.ppi-booking-assistance-section {
  background: #F4F9FD;
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: inset 0 2px 8px rgba(14, 91, 166, 0.03);
}

.ppi-booking-assistance-header {
  margin-bottom: 24px;
}

.ppi-booking-assistance-badge {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1366B6;
  background: rgba(19, 102, 182, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.ppi-booking-assistance-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #51607A;
  line-height: 1.55;
  margin: 0;
}

/* Booking Sections & Section Headings */
.ppi-booking-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ppi-booking-section-group {
  width: 100%;
}

.ppi-booking-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0E5BA6;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Native Booking Assistance Form */
.ppi-booking-assistance-form {
  margin-top: 20px;
}

.ppi-booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.ppi-booking-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ppi-booking-form-field.ppi-full-width {
  grid-column: span 2;
}

.ppi-booking-form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.ppi-booking-form-field input[type="text"],
.ppi-booking-form-field input[type="email"],
.ppi-booking-form-field input[type="tel"],
.ppi-booking-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1E293B;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ppi-booking-form-field input:focus,
.ppi-booking-form-field textarea:focus {
  outline: none;
  border-color: #0E5BA6;
  box-shadow: 0 0 0 3px rgba(14, 91, 166, 0.15);
}

/* File Upload Field & 2MB Notice Styling */
.ppi-file-upload-field {
  background: #FFFFFF;
  border: 2px dashed #CBD5E1;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.ppi-file-upload-field:hover {
  border-color: #0E5BA6;
}

.ppi-file-label {
  cursor: pointer;
  display: inline-block;
}

.ppi-file-label input[type="file"] {
  display: none;
}

.ppi-file-btn-text {
  display: inline-block;
  background: #E2E8F0;
  color: #0E5BA6;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s;
}

.ppi-file-label:hover .ppi-file-btn-text {
  background: #0E5BA6;
  color: #FFFFFF;
}

.ppi-file-size-notice {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #D32F2F;
  margin-top: 8px;
}

.ppi-selected-file-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #64748B;
  margin-top: 4px;
  font-style: italic;
}

.ppi-booking-submit-btn {
  width: 100%;
  background: #0E5BA6;
  color: #FFFFFF;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.ppi-booking-submit-btn:hover {
  background: #1366B6;
}

.ppi-booking-form-status {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.ppi-booking-form-status.ppi-error {
  color: #DC2626;
  font-weight: 600;
}

/* Drag and Drop Multiple File Upload for Contact Form 7 Plugin Styling */
.ppi-booking-cf7-wrapper .codedropz-upload-wrapper {
  background: #FFFFFF !important;
  border: 2px dashed #CBD5E1 !important;
  border-radius: 14px !important;
  padding: 24px 16px !important;
  text-align: center !important;
  transition: border-color 0.3s, background 0.3s !important;
}

.ppi-booking-cf7-wrapper .codedropz-upload-wrapper:hover {
  border-color: #0E5BA6 !important;
  background: #F8FAFC !important;
}

.ppi-booking-cf7-wrapper .codedropz-upload-handler {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #475569 !important;
}

.ppi-booking-cf7-wrapper .codedropz-btn {
  background: #0E5BA6 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  text-decoration: none !important;
  display: inline-block !important;
  margin-top: 8px !important;
}

.ppi-booking-cf7-wrapper .dnd-upload-counter {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #64748B !important;
}

.ppi-booking-cf7-wrapper .dnd-upload-status {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #D32F2F !important;
  font-weight: 600 !important;
}

/* Form Styles */
/* Success Screen */
.ppi-booking-success-screen {
  text-align: center;
  padding: 40px 20px;
}

.ppi-booking-success-icon {
  font-size: 48px;
  color: #2E7D32;
  margin-bottom: 24px;
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: #E8F5E9;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.ppi-booking-success-title {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #0E5BA6;
  margin-bottom: 16px;
}

.ppi-booking-success-message {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #51607A;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.ppi-booking-close-btn-large {
  background: #0E5BA6;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 14px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(14, 91, 166, 0.25);
  transition: background 0.2s, transform 0.2s;
}

.ppi-booking-close-btn-large:hover {
  background: #1366B6;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14, 91, 166, 0.3);
}

/* Mobile Responsiveness for Booking Modal & CF7 Form */
@media screen and (max-width: 768px) {
  .ppi-booking-modal-container {
    padding: 32px 20px 24px !important;
    width: 92% !important;
    max-height: 90vh !important;
    border-radius: 20px !important;
  }

  .ppi-booking-modal-close {
    top: 14px !important;
    right: 16px !important;
    font-size: 28px !important;
  }

  .ppi-booking-title-main {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }

  .ppi-booking-title-logo {
    font-size: 24px !important;
  }

  .ppi-booking-subtitle-question {
    font-size: 16px !important;
    margin-bottom: 24px !important;
  }

  .ppi-booking-title-large {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }

  .ppi-booking-info-text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .ppi-booking-options-row {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  .ppi-booking-option-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 16px !important;
  }

  .ppi-booking-assistance-section {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    margin-top: 20px !important;
  }

  /* CF7 Form Mobile Layout: 1 Single Column Vertical Stack on Mobile */
  .ppi-booking-cf7-wrapper .wpcf7 form,
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid,
  .ppi-booking-form-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .ppi-booking-cf7-wrapper .wpcf7 form>p,
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p,
  .ppi-booking-cf7-wrapper .wpcf7 form>p:nth-child(1),
  .ppi-booking-cf7-wrapper .wpcf7 form>p:nth-child(2),
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p:nth-child(1),
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p:nth-child(2) {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .ppi-booking-cf7-wrapper input[type="submit"],
  .ppi-booking-cf7-wrapper button[type="submit"] {
    width: 100% !important;
    margin-top: 8px !important;
  }

  .ppi-booking-close-btn-large {
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  .ppi-booking-modal-container {
    padding: 28px 16px 20px !important;
    width: 95% !important;
  }

  .ppi-booking-title-main {
    font-size: 20px !important;
  }

  .ppi-booking-title-logo {
    font-size: 20px !important;
  }

  .ppi-booking-title-large {
    font-size: 18px !important;
  }

  .ppi-booking-option-card {
    padding: 20px 14px !important;
  }

  .ppi-booking-card-btn-text {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
}

/* ==========================================================================
   CONTACT FORM 7 & BOOKING ASSISTANCE FORM - DESKTOP 2-COLUMN GRID & DESIGN
   ========================================================================== */

/* Main CF7 Form Container & Grid Layout */
.ppi-booking-cf7-wrapper .wpcf7 form,
.ppi-booking-cf7-wrapper .ppi-cf7-form-grid {
  text-align: left;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Individual CF7 Paragraph & Field Wrapper Reset */
.ppi-booking-cf7-wrapper .wpcf7 form>p,
.ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p,
.ppi-booking-cf7-wrapper .wpcf7-form-control-wrap {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Inter', sans-serif !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Desktop Only: 2-Column Grid for min-width: 769px */
@media screen and (min-width: 769px) {

  .ppi-booking-cf7-wrapper .wpcf7 form,
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 24px !important;
    align-items: start !important;
  }

  .ppi-booking-cf7-wrapper .wpcf7 form>div,
  .ppi-booking-cf7-wrapper .wpcf7 form>.screen-reader-response,
  .ppi-booking-cf7-wrapper .wpcf7 form>.wpcf7-response-output,
  .ppi-booking-cf7-wrapper .wpcf7 form>.ppi-cf7-form-grid {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  /* Desktop Column Assignments */
  .ppi-booking-cf7-wrapper .wpcf7 form>p:nth-child(1),
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p:nth-child(1) {
    grid-column: 1 / 2 !important;
  }

  .ppi-booking-cf7-wrapper .wpcf7 form>p:nth-child(2),
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p:nth-child(2) {
    grid-column: 2 / 3 !important;
  }

  .ppi-booking-cf7-wrapper .wpcf7 form>p:nth-child(n+3),
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid>p:nth-child(n+3),
  .ppi-booking-cf7-wrapper .wpcf7 form p.ppi-full-width,
  .ppi-booking-cf7-wrapper .ppi-cf7-form-grid p.ppi-full-width,
  .ppi-booking-cf7-wrapper .codedropz-upload-wrapper,
  .ppi-booking-cf7-wrapper input[type="submit"],
  .ppi-booking-cf7-wrapper button[type="submit"] {
    grid-column: 1 / -1 !important;
  }
}

/* Manual Utility Classes for CF7 Form Layout */
.ppi-booking-cf7-wrapper .ppi-col-6,
.ppi-booking-cf7-wrapper .ppi-half {
  grid-column: span 1 !important;
}

.ppi-booking-cf7-wrapper .ppi-col-12,
.ppi-booking-cf7-wrapper .ppi-full {
  grid-column: 1 / -1 !important;
}

/* Field Labels */
.ppi-booking-cf7-wrapper label {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  display: block !important;
  margin-bottom: 6px !important;
  text-align: left !important;
  width: 100% !important;
}

/* Input Fields (Text, Email, Tel, Select, Textarea) */
.ppi-booking-cf7-wrapper input[type="text"],
.ppi-booking-cf7-wrapper input[type="email"],
.ppi-booking-cf7-wrapper input[type="tel"],
.ppi-booking-cf7-wrapper input[type="number"],
.ppi-booking-cf7-wrapper input[type="date"],
.ppi-booking-cf7-wrapper select,
.ppi-booking-cf7-wrapper textarea {
  width: 100% !important;
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 12px !important;
  padding: 13px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #1E293B !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.ppi-booking-cf7-wrapper input:focus,
.ppi-booking-cf7-wrapper select:focus,
.ppi-booking-cf7-wrapper textarea:focus {
  border-color: #0E5BA6 !important;
  box-shadow: 0 0 0 3px rgba(14, 91, 166, 0.15) !important;
}

/* Drag and Drop Multiple File Upload Plugin Dropzone */
.ppi-booking-cf7-wrapper .codedropz-upload-wrapper {
  grid-column: 1 / -1 !important;
  background: #FFFFFF !important;
  border: 2px dashed #0E5BA6 !important;
  border-radius: 16px !important;
  padding: 28px 20px !important;
  text-align: center !important;
  margin-top: 6px !important;
  box-shadow: 0 4px 12px rgba(14, 91, 166, 0.04) !important;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ppi-booking-cf7-wrapper .codedropz-upload-wrapper:hover {
  border-color: #1366B6 !important;
  background: #F8FAFC !important;
  box-shadow: 0 8px 20px rgba(14, 91, 166, 0.1) !important;
}

.ppi-booking-cf7-wrapper .codedropz-upload-handler {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #0E5BA6 !important;
  border: none !important;
}

.ppi-booking-cf7-wrapper .codedropz-btn {
  background: #0E5BA6 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  text-decoration: none !important;
  display: inline-block !important;
  margin-top: 10px !important;
  box-shadow: 0 4px 12px rgba(14, 91, 166, 0.2) !important;
  transition: background 0.2s, transform 0.1s !important;
}

.ppi-booking-cf7-wrapper .codedropz-btn:hover {
  background: #1366B6 !important;
  transform: translateY(-1px) !important;
}

.ppi-booking-cf7-wrapper .dnd-upload-counter {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #64748B !important;
  margin-top: 8px !important;
  font-weight: 500 !important;
}

.ppi-booking-cf7-wrapper .dnd-upload-status {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #D32F2F !important;
  font-weight: 600 !important;
  margin-top: 8px !important;
}

/* Submit Button Premium Styling */
.ppi-booking-cf7-wrapper input[type="submit"],
.ppi-booking-cf7-wrapper button[type="submit"] {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  height: 52px !important;
  background: linear-gradient(135deg, #0E5BA6 0%, #1366B6 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(14, 91, 166, 0.3) !important;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s !important;
  margin-top: 12px !important;
  display: block !important;
}

.ppi-booking-cf7-wrapper input[type="submit"]:hover,
.ppi-booking-cf7-wrapper button[type="submit"]:hover {
  background: linear-gradient(135deg, #0B4E90 0%, #0E5BA6 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(14, 91, 166, 0.4) !important;
}

/* Validation & Status Responses */
.ppi-booking-cf7-wrapper .wpcf7-not-valid-tip {
  color: #D32F2F !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
}

.ppi-booking-cf7-wrapper .wpcf7-response-output {
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 16px 0 0 0 !important;
  text-align: center !important;
}

.ppi-booking-cf7-wrapper .wpcf7-mail-sent-ok {
  background: #E8F5E9 !important;
  color: #2E7D32 !important;
}

.ppi-booking-cf7-wrapper .wpcf7-validation-errors,
.ppi-booking-cf7-wrapper .wpcf7-acceptance-missing {
  background: #FFEBEE !important;
  color: #C62828 !important;
}

.ppi-booking-cf7-wrapper .wpcf7-spinner {
  margin-left: 12px !important;
}

/* ==========================================================================
   PODCAST TEMPLATES (ARCHIVE & SINGLE) - STYLING
   ========================================================================== */

/* Hero & Header Section */
.podcast-hero {
  background: linear-gradient(135deg, #051b3d 0%, #0e3b79 60%, #00a896 100%);
  padding: 60px 24px 80px;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.podcast-hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

.podcast-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #7ce3d2;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.podcast-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 36px;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* Show Card */
.podcast-show-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.podcast-show-art img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.podcast-show-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.podcast-show-host {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #a8d5e5;
  margin-bottom: 16px;
}

.podcast-social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.podcast-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.podcast-social-btn:hover {
  background: #00a896;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 168, 150, 0.4);
}

.podcast-show-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #e0eef7;
  margin: 0;
}

/* Search Box */
.podcast-search-wrap {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.podcast-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 0 18px;
  height: 46px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: #051b3d;
  box-sizing: border-box;
}

.podcast-search-box svg {
  color: #64748b;
  margin-right: 10px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.podcast-search-box input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #0f172a !important;
  box-shadow: none !important;
}

.podcast-search-box input::placeholder {
  color: #94a3b8;
}

/* Episodes Listing Section */
.podcast-episodes-section {
  background: #f8fafc;
  padding: 60px 24px 80px;
}

.podcast-episodes-container {
  max-width: 1000px;
  margin: 0 auto;
}

.podcast-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.podcast-episode-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-episode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(5, 27, 61, 0.08);
  border-color: #cbd5e1;
}

.podcast-episode-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  object-fit: cover;
}

.podcast-episode-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.podcast-episode-title a {
  color: #051b3d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.podcast-episode-title a:hover {
  color: #00a896;
}

.podcast-episode-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.meta-sep {
  color: #cbd5e1;
}

.podcast-episode-excerpt p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 16px;
}

.podcast-play-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #051b3d;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.podcast-play-link:hover {
  background: #051b3d;
  color: #ffffff;
}

.podcast-no-results {
  text-align: center;
  padding: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #64748b;
}

.podcast-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.podcast-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #051b3d;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.podcast-pagination .page-numbers.current,
.podcast-pagination .page-numbers:hover {
  background: #051b3d;
  color: #ffffff;
  border-color: #051b3d;
}

/* Single Podcast Page */
.single-podcast-section {
  background: #f8fafc;
  padding: 40px 24px 80px;
}

.single-podcast-container {
  max-width: 900px;
  margin: 0 auto;
}

.podcast-back-wrap {
  margin-bottom: 24px;
}

.podcast-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #00a896;
  text-decoration: none;
  transition: color 0.2s ease;
}

.podcast-back-link:hover {
  color: #051b3d;
}

.single-podcast-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(5, 27, 61, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 32px;
}

.single-podcast-art img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.single-podcast-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #051b3d;
  margin: 0 0 10px;
  line-height: 1.25;
}

.single-podcast-show-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 20px;
}

.single-podcast-platforms {
  display: flex;
  gap: 12px;
}

.single-podcast-platforms .podcast-social-btn {
  background: #f1f5f9;
  color: #051b3d;
  border-color: #cbd5e1;
}

.single-podcast-platforms .podcast-social-btn:hover {
  background: #00a896;
  color: #ffffff;
  border-color: #00a896;
}

/* Custom Audio Player */
.podcast-player-wrapper {
  background: #051b3d;
  border-radius: 18px;
  padding: 24px 32px;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(5, 27, 61, 0.25);
  margin-bottom: 40px;
}

.player-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.player-time {
  font-family: 'Inter', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  min-width: 48px;
}

.player-timeline-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.audio-scrubber {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.audio-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00a896;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s ease;
}

.audio-scrubber::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.audio-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  border-radius: 3px;
  background: #00a896;
  pointer-events: none;
  width: 0%;
  z-index: 1;
}

.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.player-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00a896;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 168, 150, 0.4);
  transition: all 0.2s ease;
}

.player-play-btn:hover {
  background: #02c3a7;
  transform: scale(1.06);
}

.player-tool-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.player-tool-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.player-skip-btn span {
  font-size: 12px;
}

/* Single Episode Content Card */
.single-podcast-content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(5, 27, 61, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.podcast-meta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.podcast-rich-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}

.podcast-rich-content p {
  margin-bottom: 20px;
}

.podcast-rich-content a {
  color: #00a896;
  text-decoration: underline;

}

/* Post Pagination Nav */
.podcast-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.podcast-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #051b3d;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.podcast-nav-link:hover {
  background: #051b3d;
  color: #ffffff;
  border-color: #051b3d;
}

/* Disclaimer Notice */
.podcast-disclaimer-section {
  background: #051b3d;
  color: #94a3b8;
  padding: 24px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.podcast-disclaimer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.podcast-disclaimer-container p {
  margin: 0;
}

/* Responsive Rules & Mobile View Optimization */
@media (max-width: 991px) {
  .podcast-hero {
    padding: 48px 20px 60px;
  }

  .podcast-hero-title {
    font-size: 38px;
    margin-bottom: 28px;
  }

  .podcast-show-card,
  .single-podcast-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }

  .podcast-show-art,
  .single-podcast-art {
    max-width: 180px;
    margin: 0 auto;
  }

  .podcast-show-info,
  .single-podcast-header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .podcast-social-links,
  .single-podcast-platforms {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .podcast-hero {
    padding: 32px 16px 44px;
  }

  .podcast-hero-badge {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 14px;
  }

  .podcast-hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .podcast-show-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .podcast-show-art {
    max-width: 140px;
    margin: 0 auto 12px;
  }

  .podcast-show-name {
    font-size: 22px;
  }

  .podcast-show-desc {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .podcast-search-wrap {
    margin-top: 16px;
    padding: 0 4px;
  }

  .podcast-search-box {
    height: 40px;
    padding: 0 14px;
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  .podcast-search-box svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .podcast-search-box input {
    font-size: 13.5px !important;
  }

  .podcast-episodes-section {
    padding: 32px 14px 50px;
  }

  /* Sleek Horizontal Feed Row on Mobile for Archive */
  .podcast-episode-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 16px;
    border-radius: 14px;
  }

  .podcast-episode-thumb {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    max-width: none;
    margin: 0;
  }

  .podcast-episode-thumb img {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    object-fit: cover;
  }

  .podcast-episode-details {
    flex: 1;
    min-width: 0;
  }

  .podcast-episode-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 4px;
  }

  .podcast-episode-meta {
    justify-content: flex-start;
    font-size: 12px;
    gap: 6px;
    margin-bottom: 6px;
  }

  .podcast-episode-excerpt p {
    font-size: 12.5px;
    line-height: 1.45;
    color: #475569;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .podcast-episode-actions {
    display: flex;
    justify-content: flex-start;
  }

  .podcast-play-link {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 6px;
    gap: 6px;
  }

  /* Single Podcast Page Mobile View */
  .single-podcast-section {
    padding: 20px 14px 44px;
  }

  .single-podcast-card {
    padding: 20px 16px;
    border-radius: 16px;
    gap: 16px;
    margin-bottom: 20px;
  }

  .single-podcast-art {
    max-width: 130px;
    margin: 0 auto;
  }

  .single-podcast-title {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 8px;
  }

  .single-podcast-show-name {
    font-size: 13.5px;
    text-align: center;
    margin-bottom: 14px;
  }

  .single-podcast-platforms {
    justify-content: center;
    gap: 10px;
  }

  /* Audio Player Card - Single Line Toolbar on Mobile */
  .podcast-player-wrapper {
    padding: 16px 14px;
    border-radius: 16px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #051b3d 0%, #08295a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .player-top-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .player-time {
    font-size: 11px;
    min-width: 34px;
  }

  .player-controls-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .player-play-btn {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 168, 150, 0.5);
  }

  .player-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .player-tool-btn {
    padding: 6px 8px;
    font-size: 11px;
    border-radius: 8px;
    gap: 4px;
    flex-shrink: 0;
  }

  .player-skip-btn span {
    font-size: 10px;
  }

  .single-podcast-content-card {
    padding: 20px 16px;
    border-radius: 14px;
    margin-bottom: 24px;
  }

  .podcast-meta-bar {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12.5px;
    gap: 6px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .podcast-rich-content {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .podcast-post-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .podcast-nav-link {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
  }

  .podcast-disclaimer-section {
    padding: 16px 14px;
    font-size: 11.5px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .podcast-hero-title {
    font-size: 22px;
  }

  .podcast-episode-thumb {
    width: 72px;
    height: 72px;
  }

  .podcast-episode-thumb img {
    width: 72px;
    height: 72px;
  }

  .podcast-episode-title {
    font-size: 14px;
  }

  .single-podcast-title {
    font-size: 18px;
  }

  .player-tool-btn {
    padding: 5px 6px;
    font-size: 10.5px;
  }
}

/* ==========================================================================
   HEADER SEARCH BAR & LIVE AJAX SEARCH DROPDOWN
   ========================================================================== */
.ppi-header-search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.ppi-header-search-form {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.ppi-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 140px;
}

.ppi-search-input-wrapper:hover,
.ppi-search-input-wrapper:focus-within {
  width: 210px;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.ppi-search-input::-webkit-search-decoration,
.ppi-search-input::-webkit-search-cancel-button,
.ppi-search-input::-webkit-search-results-button,
.ppi-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  display: none;
}

.ppi-search-input {
  width: 100%;
  height: 38px;
  padding: 0 38px 0 16px;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  outline: none;
  letter-spacing: 0.02em;
}

.ppi-search-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.ppi-search-clear-btn {
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  display: none;
  transition: color 0.15s;
}

.ppi-search-clear-btn:hover {
  color: #ffffff;
}

.ppi-search-submit-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.ppi-search-submit-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

/* LIVE SEARCH DROPDOWN POPUP */
.ppi-search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 420px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(12, 39, 64, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  overflow: hidden;
}

.ppi-search-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ppi-search-dropdown-inner {
  display: flex;
  flex-direction: column;
}

.ppi-search-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 8px;
}

.ppi-search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  color: #0C2740;
  transition: background 0.18s;
}

.ppi-search-dropdown-item:hover {
  background: #F0F6FF;
}

.ppi-search-item-thumb {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  background: #E2E8F0;
  flex-shrink: 0;
}

.ppi-search-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppi-search-item-info {
  flex: 1;
  min-width: 0;
}

.ppi-search-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.ppi-search-item-badge {
  display: inline-block;
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.ppi-badge-service {
  background: #EBF8FF;
  color: #0076D6;
}

.ppi-badge-post {
  background: #FEFCBF;
  color: #975A16;
}

.ppi-badge-podcast {
  background: #E9D8FD;
  color: #6B46C1;
}

.ppi-badge-page {
  background: #E2E8F0;
  color: #4A5568;
}

.ppi-badge-why_choose {
  background: #C6F6D5;
  color: #22543D;
}

.ppi-search-item-date {
  font-size: 11px;
  color: #718096;
}

.ppi-search-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #0C2740;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.ppi-search-item-excerpt {
  font-size: 12px;
  color: #4A5568;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.ppi-search-dropdown-footer {
  padding: 10px 14px;
  background: #F8FAFC;
  border-top: 1px solid #EDF2F7;
  text-align: center;
}

.ppi-search-view-all {
  font-size: 13px;
  font-weight: 600;
  color: #0076D6;
  text-decoration: none;
  transition: color 0.15s;
}

.ppi-search-view-all:hover {
  color: #005bb5;
  text-decoration: underline;
}

.ppi-search-loading,
.ppi-search-no-items {
  padding: 20px;
  text-align: center;
  font-size: 13.5px;
  color: #718096;
}

/* MOBILE DRAWER SEARCH BOX */
.ppi-mobile-drawer-search {
  padding: 16px 20px;
  border-bottom: 1px solid #EDF2F7;
}

.ppi-mobile-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.ppi-mobile-search-input {
  width: 100%;
  height: 42px;
  padding: 0 44px 0 14px;
  border: 1.5px solid #CBD5E0;
  border-radius: 6px;
  font-size: 14px;
  color: #0C2740;
  outline: none;
}

.ppi-mobile-search-input:focus {
  border-color: #0076D6;
}

.ppi-mobile-search-submit {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 34px;
  background: #0076D6;
  border: none;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   SEARCH RESULTS PAGE (search.php) STYLES
   ========================================================================== */
.ppi-search-page-wrapper {
  background: #F8FAFC;
  min-height: 80vh;
}

.ppi-search-hero {
  background: linear-gradient(135deg, #0C2740 0%, #0E5BA6 100%);
  padding: 64px 24px 72px;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.ppi-search-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ppi-search-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3AD0B4;
  margin-bottom: 20px;
  border: 1px solid rgba(58, 208, 180, 0.3);
}

.ppi-search-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3AD0B4;
}

.ppi-search-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.ppi-search-highlight {
  color: #3AD0B4;
}

.ppi-search-hero-subtitle {
  font-size: 16px;
  color: #C7DBF0;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.ppi-search-refine-box {
  max-width: 600px;
  margin: 0 auto;
}

.ppi-search-refine-form {
  margin: 0;
}

.ppi-search-refine-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px 8px 6px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ppi-search-refine-icon {
  color: #718096;
  margin-right: 12px;
  flex-shrink: 0;
}

.ppi-search-refine-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #0C2740;
  outline: none;
}

.ppi-search-refine-btn {
  background: #0076D6;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.ppi-search-refine-btn:hover {
  background: #005bb5;
}

/* RESULTS CONTAINER & TABS */
.ppi-search-main-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.ppi-search-filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 12px;
}

.ppi-search-tab-btn {
  background: none;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  cursor: pointer;
  transition: all 0.2s;
}

.ppi-search-tab-btn:hover {
  background: #EDF2F7;
  color: #0C2740;
}

.ppi-search-tab-btn.active {
  background: #0076D6;
  color: #ffffff;
}

/* RESULTS GRID */
.ppi-search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.ppi-search-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ppi-search-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(12, 39, 64, 0.12);
}

.ppi-search-card-image-link {
  text-decoration: none;
  display: block;
}

.ppi-search-card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #EDF2F7;
}

.ppi-search-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ppi-search-card:hover .ppi-search-card-image-wrap img {
  transform: scale(1.05);
}

.ppi-search-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-service {
  background: #0076D6;
  color: #ffffff;
}

.badge-article {
  background: #DD6B20;
  color: #ffffff;
}

.badge-podcast {
  background: #805AD5;
  color: #ffffff;
}

.badge-page {
  background: #4A5568;
  color: #ffffff;
}

.badge-info {
  background: #38A169;
  color: #ffffff;
}

.ppi-search-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ppi-search-card-meta {
  font-size: 12.5px;
  color: #718096;
  margin-bottom: 8px;
}

.ppi-search-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.ppi-search-card-title a {
  color: #0C2740;
  text-decoration: none;
  transition: color 0.2s;
}

.ppi-search-card-title a:hover {
  color: #0076D6;
}

.ppi-search-card-excerpt {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.ppi-search-card-footer {
  border-top: 1px solid #EDF2F7;
  padding-top: 16px;
}

.ppi-search-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0076D6;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.ppi-search-card-link:hover {
  color: #005bb5;
  gap: 10px;
}

/* PAGINATION */
.ppi-search-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ppi-search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #CBD5E0;
  color: #0C2740;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.ppi-search-pagination .page-numbers.current,
.ppi-search-pagination .page-numbers:hover {
  background: #0076D6;
  color: #ffffff;
  border-color: #0076D6;
}

/* NO RESULTS EMPTY STATE */
.ppi-search-no-results {
  background: #ffffff;
  border-radius: 16px;
  padding: 64px 32px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ppi-no-results-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #F0F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ppi-no-results-title {
  font-size: 26px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 12px;
}

.ppi-no-results-desc {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 32px;
}

.ppi-no-results-suggestions h4 {
  font-size: 14px;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.ppi-no-results-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ppi-suggestion-tag {
  background: #EDF2F7;
  color: #0C2740;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.ppi-suggestion-tag:hover {
  background: #0076D6;
  color: #ffffff;
}

/* ============ MOBILE DRAWER SEARCH STYLING ============ */
.ppi-mobile-drawer-search {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}

.ppi-mobile-search-form {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  width: 100%;
}

.ppi-mobile-search-input {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #ffffff;
  outline: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.ppi-mobile-search-input:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ppi-mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ppi-mobile-search-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ppi-mobile-search-submit:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .ppi-header-search-container {
    margin-left: auto;
    margin-right: 8px;
  }

  .ppi-search-input-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .ppi-search-input-wrapper:focus-within,
  .ppi-search-input-wrapper:hover {
    width: 170px;
    border-radius: 999px;
  }

  .ppi-search-input {
    padding: 0 34px 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .ppi-header-search-container {
    display: none;
  }
}

@media (max-width: 768px) {

  .ppi-search-hero {
    padding: 44px 16px 56px;
  }

  .ppi-search-hero-title {
    font-size: 26px;
  }

  .ppi-search-results-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SITE NOTIFICATION POPUP ============ */
.ppi-notification-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ppi-notification-popup-overlay.ppi-active {
  opacity: 1;
  visibility: visible;
}

.ppi-notification-popup-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 32px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.35);
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.ppi-notification-popup-overlay.ppi-active .ppi-notification-popup-card {
  transform: translateY(0) scale(1);
}

.ppi-notification-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ppi-notification-popup-close:hover {
  color: #0F172A;
  transform: scale(1.15);
}

.ppi-notification-popup-icon-wrap {
  margin: 0 auto 20px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppi-notification-popup-icon-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.ppi-notification-popup-icon-default {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF7ED;
  border: 4px solid #FFEDD5;
}

.ppi-notification-popup-exclamation {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #F97316;
  line-height: 1;
}

.ppi-notification-popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
  line-height: 1.3;
}

.ppi-notification-popup-content {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 26px;
}

.ppi-notification-popup-content p {
  margin: 0;
}

.ppi-notification-popup-actions {
  display: flex;
  justify-content: center;
}

.ppi-notification-popup-btn {
  background: #0E5BA6;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(14, 91, 166, 0.28);
}

.ppi-notification-popup-btn:hover {
  background: #0B4B8A;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 91, 166, 0.38);
}

/* ==========================================================================
   PARTNER BOX SECTION (Matches Frontend Screenshot)
   ========================================================================== */
.partner-box-section {
  width: 100%;
}

.partner-box-container {
  background: #081B33;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.partner-col-left {
  display: flex;
  flex-direction: column;
}

.partner-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.partner-section-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #9FB4CC;
  margin: 0 0 32px 0;
}

/* Affiliate Card inside Left Column */
.partner-affiliate-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #1B6EC2;
  border-radius: 12px;
  padding: 24px 28px;
}

.partner-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(14, 91, 166, 0.25);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3AD0B4;
  margin-bottom: 16px;
}

.partner-card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}

.partner-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #9FB4CC;
  margin: 0 0 20px 0;
}

.partner-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #1B6EC2;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card-btn:hover {
  background: #1459A0;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 110, 194, 0.35);
}

/* Right Column */
.partner-col-right {
  padding-top: 4px;
}

.partner-right-header {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3AD0B4;
  margin: 0 0 20px 0;
}

.partner-right-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #9FB4CC;
}

.partner-right-desc strong,
.partner-right-desc h5,
.partner-right-desc h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  display: block;
  margin-bottom: 8px;
}

.partner-right-desc p {
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .partner-box-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

/* ==========================================================================
   RFA & NEEDLE-LESS HIFU SPECIAL SERVICE SECTION STYLES (THEME MATCHED)
   ========================================================================== */

.chronic-pain-custom-image-wrap {
  position: relative !important;
}

/* Main Container Padding */
.rfa-hifu-wrap {
  padding-bottom: 60px;
}

/* Interactive Tab Nav */
.rfa-hifu-tab-nav-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.rfa-hifu-tab-nav {
  display: inline-flex;
  gap: 10px;
  background: #F0F4F8;
  border: 1px solid rgba(14, 91, 166, 0.12);
  padding: 6px;
  border-radius: 60px;
  box-shadow: 0 8px 24px rgba(12, 39, 64, 0.06);
  flex-wrap: wrap;
  justify-content: center;
}

.rfa-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  border: none;
  background: transparent;
  color: #51607A;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.rfa-tab-btn:hover {
  color: #0C2740;
  background: rgba(14, 91, 166, 0.08);
}

.rfa-tab-btn.active {
  background: linear-gradient(135deg, #0E5BA6 0%, #1366B6 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(14, 91, 166, 0.28);
}

.hifu-badge-sparkle {
  font-size: 10px;
  font-weight: 800;
  background: #3AD0B4;
  color: #0C2740;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Tab Panels */
.rfa-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rfa-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Headings & Pills */
.rfa-badge-pill,
.hifu-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(14, 91, 166, 0.08);
  border: 1px solid rgba(14, 91, 166, 0.2);
  border-radius: 30px;
  color: #0E5BA6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.hifu-badge-pill {
  background: rgba(58, 208, 180, 0.14);
  border-color: rgba(58, 208, 180, 0.35);
  color: #0E5BA6;
}

.rfa-section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: #0C2740;
  line-height: 1.25;
  margin-bottom: 20px;
}

.rfa-tab-panel .service-wysiwyg-desc p {
  font-size: 15px;
  line-height: 1.68;
  color: #3C4A60;
  margin-bottom: 16px;
}

.rfa-tab-panel .service-wysiwyg-desc strong {
  color: #0C2740;
}

/* Indications Card */
.rfa-indications-card {
  margin-top: 28px;
  padding: 28px;
  background: #F4F8FC;
  border: 1px solid rgba(14, 91, 166, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.03);
}

.rfa-indications-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0C2740;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rfa-indications-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #51607A;
  margin-bottom: 16px;
}

.rfa-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.rfa-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3C4A60;
  line-height: 1.45;
}

.rfa-check-list li span {
  color: #3AD0B4;
  font-weight: 700;
  font-size: 16px;
}

.rfa-alert-note {
  font-size: 13px;
  line-height: 1.5;
  color: #C81E1E;
  background: rgba(224, 36, 36, 0.08);
  border-left: 3px solid #E02424;
  padding: 12px 16px;
  border-radius: 6px;
}

/* Image Captions */
.img-caption-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(12, 39, 64, 0.9);
  border: 1px solid rgba(58, 208, 180, 0.4);
  color: #3AD0B4;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.img-caption-tag.hifu-caption {
  border-color: rgba(14, 91, 166, 0.4);
  color: #FFFFFF;
}

/* Prerequisite Block */
.rfa-prereq-block {
  margin: 48px 0 36px 0;
  padding: 36px;
  background: linear-gradient(135deg, #0C2740 0%, #0E5BA6 100%);
  border: 1px solid rgba(14, 91, 166, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12, 39, 64, 0.12);
}

.rfa-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3AD0B4;
  background: rgba(58, 208, 180, 0.18);
  padding: 4px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.rfa-prereq-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.rfa-prereq-header p {
  font-size: 15px;
  line-height: 1.65;
  color: #E2E8F0;
}

/* Steps Grid */
.rfa-steps-grid {
  margin-bottom: 48px;
}

.steps-grid-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 24px;
  text-align: center;
}

.steps-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.1);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 6px 20px rgba(12, 39, 64, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 91, 166, 0.3);
  box-shadow: 0 12px 28px rgba(12, 39, 64, 0.08);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0E5BA6;
  margin-bottom: 12px;
}

.step-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #51607A;
}

/* Recovery Timeline */
.rfa-timeline-section {
  margin-bottom: 48px;
}

.rfa-timeline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 24px;
  text-align: center;
}

.rfa-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.timeline-box {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.1);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(12, 39, 64, 0.03);
}

.timeline-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.timeline-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 8px;
}

.timeline-box p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #51607A;
}

/* Aftercare Box */
/* Aftercare Box & Cards */
.rfa-aftercare-box {
  background: #F4F8FC;
  border: 1px solid rgba(14, 91, 166, 0.1);
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 48px;
  box-shadow: 0 12px 32px rgba(12, 39, 64, 0.04);
}

.aftercare-header-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.aftercare-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(14, 91, 166, 0.08);
  border: 1px solid rgba(14, 91, 166, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aftercare-header-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 4px;
}

.aftercare-header-text p {
  font-size: 14px;
  color: #51607A;
  margin: 0;
}

.aftercare-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.aftercare-card {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.1);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(12, 39, 64, 0.03);
  transition: all 0.3s ease;
  position: relative;
}

.aftercare-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 91, 166, 0.3);
  box-shadow: 0 10px 26px rgba(14, 91, 166, 0.08);
}

.aftercare-card-step {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0E5BA6;
  background: rgba(14, 91, 166, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.aftercare-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 8px;
}

.aftercare-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #51607A;
  margin: 0;
}

/* HIFU Specific Features */
.hifu-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.hifu-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.12);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(12, 39, 64, 0.03);
}

.hifu-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.hifu-feature-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 6px;
}

.hifu-feature-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #51607A;
}

.hifu-box {
  border-color: rgba(14, 91, 166, 0.15) !important;
}

.hifu-how-works-block {
  margin-top: 48px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #0C2740 0%, #1366B6 100%);
  border: 1px solid rgba(14, 91, 166, 0.2);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 12px 32px rgba(12, 39, 64, 0.12);
}

.hifu-how-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.hifu-how-header p {
  font-size: 15px;
  line-height: 1.65;
  color: #E2E8F0;
  margin-bottom: 28px;
}

.hifu-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.hifu-step-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(8px);
}

.hifu-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3AD0B4;
  color: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hifu-step-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.hifu-step-box p {
  font-size: 13px;
  line-height: 1.55;
  color: #CBD5E1;
}

/* Comparison Matrix */
.comparison-matrix-header {
  text-align: center;
  margin-bottom: 32px;
}

.comparison-matrix-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 12px;
}

.comparison-matrix-header p {
  font-size: 15px;
  color: #51607A;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 48px;
  border-radius: 18px;
  border: 1px solid rgba(14, 91, 166, 0.12);
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.04);
}

.rfa-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
}

.rfa-comparison-table th,
.rfa-comparison-table td {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(14, 91, 166, 0.08);
  font-size: 14px;
}

.rfa-comparison-table th {
  background: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 15px;
}

.rfa-comparison-table td {
  color: #3C4A60;
}

.rfa-comparison-table tbody tr:nth-child(even) {
  background: #F8FAFC;
}

.rfa-comparison-table tbody tr:hover {
  background: rgba(14, 91, 166, 0.04);
}

.highlight-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
}

.highlight-badge.green {
  background: rgba(58, 208, 180, 0.15);
  color: #0E5BA6;
  border: 1px solid rgba(58, 208, 180, 0.4);
}

.highlight-badge.blue {
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
  border: 1px solid rgba(14, 91, 166, 0.25);
}

.highlight-badge.muted {
  background: #F0F4F8;
  color: #51607A;
  border: 1px solid rgba(14, 91, 166, 0.1);
}

/* Consultation Banner */
.rfa-consultation-banner {
  background: linear-gradient(135deg, #0E5BA6 0%, #1366B6 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 48px;
  box-shadow: 0 12px 32px rgba(14, 91, 166, 0.25);
}

.banner-inner-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.banner-text-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.banner-text-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.rfa-cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #3AD0B4;
  color: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.rfa-cta-primary-btn:hover {
  background: #2FC0A4;
  color: #0C2740;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion */
.rfa-faq-section {
  margin-bottom: 30px;
}

.rfa-faq-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0C2740;
  margin-bottom: 24px;
  text-align: center;
}

.rfa-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rfa-faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(14, 91, 166, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 39, 64, 0.05), 0 2px 6px rgba(12, 39, 64, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.rfa-faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 91, 166, 0.3);
  box-shadow: 0 14px 36px rgba(14, 91, 166, 0.12), 0 4px 12px rgba(12, 39, 64, 0.04);
}

.rfa-faq-item.active {
  border-color: #0E5BA6;
  box-shadow: 0 16px 40px rgba(14, 91, 166, 0.16), 0 4px 14px rgba(12, 39, 64, 0.06);
}

.rfa-faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #0C2740;
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.rfa-faq-trigger:hover {
  color: #0E5BA6;
}

.faq-arrow-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(14, 91, 166, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rfa-faq-item:hover .faq-arrow-wrap {
  background: rgba(14, 91, 166, 0.12);
}

.rfa-faq-item.active .faq-arrow-wrap {
  background: #0E5BA6;
  color: #FFFFFF;
}

.faq-arrow {
  color: #0E5BA6;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

.rfa-faq-item.active .faq-arrow {
  transform: rotate(180deg);
  stroke: #FFFFFF;
}

.rfa-faq-content {
  display: none;
  padding: 0 28px 24px 28px;
  border-top: 1px solid rgba(14, 91, 166, 0.06);
}

.rfa-faq-item.active .rfa-faq-content {
  display: block;
  animation: ppiFadeIn 0.3s ease forwards;
}

@keyframes ppiFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rfa-faq-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #51607A;
  margin: 14px 0 0 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .banner-inner-grid {
    grid-template-columns: 1fr;
  }

  .hifu-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .rfa-hifu-tab-nav {
    border-radius: 20px;
    width: 100%;
  }

  .rfa-tab-btn {
    width: 100%;
    justify-content: center;
  }

  .rfa-consultation-banner {
    padding: 24px;
  }
}

/* ==========================================================================
   MAIN PAGE PODCAST NAVIGATION BUTTONS & GUEST PODCAST STYLES
   ========================================================================== */
.ppi-podcast-action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 22px;
}

.ppi-podcast-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.ppi-podcast-nav-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ppi-podcast-nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(12, 39, 64, 0.18);
}

.ppi-podcast-nav-btn:hover svg {
  transform: scale(1.15);
}

.pnp-podcast-btn {
  background: linear-gradient(135deg, #0e7673 0%, #1366b6 100%);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pnp-podcast-btn:hover {
  background: linear-gradient(135deg, #0b6260 0%, #0f5294 100%);
}

.guest-podcast-btn {
  background: linear-gradient(135deg, #0C2740 0%, #1B4066 100%);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.guest-podcast-btn:hover {
  background: linear-gradient(135deg, #081c2e 0%, #13304e 100%);
}

@media (max-width: 600px) {
  .ppi-podcast-action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .ppi-podcast-nav-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Center Play Icon Button on Podcast Cover Image */
.ppi-style-89 {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.ppi-style-89 .ppi-style-59 {
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.ppi-podcast-center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #1366B6;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 14px 28px -8px rgba(19, 102, 182, 0.65);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.ppi-podcast-center-play-btn svg {
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.ppi-play-btn-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.ppi-style-89:hover .ppi-podcast-center-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: linear-gradient(135deg, #1877F2 0%, #0A4E91 100%);
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.55), 0 0 0 10px rgba(24, 119, 242, 0.2);
}

.ppi-style-89:hover .ppi-play-btn-pulse {
  opacity: 1;
  transform: scale(1.3);
}

.ppi-style-89:hover .ppi-style-59 {
  transform: scale(1.05);
  filter: brightness(0.92);
}

/* ==========================================================================
   FLOATING CATEGORY BADGE OVERLAY ON PROFILE PHOTO
   ========================================================================== */
.about-team-image-wrap,
.practitioner-cat-img-wrap {
  position: relative !important;
}

.team-card-cat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.team-card-cat-badge.doctor,
.team-card-cat-badge.doctors {
  background: rgba(19, 102, 182, 0.92);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.team-card-cat-badge.staff {
  background: rgba(16, 185, 129, 0.92);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   ABOUT TEAM SECTION CONTAINER & SIDE PADDING
   ========================================================================== */
.about-team-section {
  padding: 60px 0 90px;
}

.about-team-section>div {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-team-section>div {
    padding: 0 16px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   VIRTUAL TOUR PAGE STYLES
   ========================================================================== */
.tour-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.tour-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  margin: 10px 0 12px;
  line-height: 1.25;
}

.tour-section-desc {
  font-size: 15.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* Featured Video Section */
.virtual-tour-video-section {
  padding: 70px 0 80px;
  background: #FFFFFF;
}

.tour-video-container {
  max-width: 1040px;
  margin: 0 auto;
}

.tour-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid #E2E8F0;
  background: #0F172A;
}

.tour-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tour-video-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.tour-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}

.tour-feature-pill svg {
  color: #1366B6;
}

/* Photo Gallery Section */
.virtual-tour-gallery-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-gallery-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.tour-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 102, 182, 0.3);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.tour-gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #0F172A;
}

.tour-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-gallery-card:hover .tour-gallery-img-wrap img {
  transform: scale(1.06);
}

.tour-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 20px;
  background: linear-gradient(to top, rgba(7, 29, 51, 0.95) 0%, rgba(7, 29, 51, 0.68) 65%, transparent 100%);
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.tour-gallery-card:hover .tour-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.tour-gallery-cat {
  display: inline-block;
  background: #1366B6;
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.tour-gallery-item-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #FFFFFF;
}

.tour-gallery-item-caption {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.4;
}

/* Lightbox Modal */
.tour-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.tour-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.tour-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 38, 0.92);
  backdrop-filter: blur(12px);
}

.tour-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tour-lightbox-img-box {
  max-height: 65vh;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}

.tour-lightbox-img-box img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
}

.tour-lightbox-info {
  text-align: center;
  color: #FFFFFF;
  margin-top: 18px;
  max-width: 700px;
}

.tour-lightbox-cat {
  display: inline-block;
  background: #1366B6;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.tour-lightbox-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.tour-lightbox-caption {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 8px;
}

.tour-lightbox-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.tour-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tour-lightbox-close:hover {
  background: #EF4444;
  border-color: #EF4444;
}

.tour-lightbox-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.tour-lightbox-nav:hover {
  background: #1366B6;
  border-color: #1366B6;
}

.tour-lightbox-nav.prev {
  left: -70px;
}

.tour-lightbox-nav.next {
  right: -70px;
}

@media (max-width: 850px) {
  .tour-lightbox-nav.prev {
    left: 10px;
  }

  .tour-lightbox-nav.next {
    right: 10px;
  }

  .tour-lightbox-close {
    top: -45px;
    right: 10px;
  }
}

/* Clinic Highlights Grid */
.virtual-tour-highlights-section {
  padding: 75px 0;
  background: #FFFFFF;
}

.tour-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tour-highlight-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.tour-highlight-card:hover {
  background: #FFFFFF;
  border-color: #1366B6;
  box-shadow: 0 12px 30px rgba(19, 102, 182, 0.1);
  transform: translateY(-4px);
}

.tour-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E0F2FE;
  color: #1366B6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.tour-highlight-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
}

.tour-highlight-card p {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* CTA Banner Section */
.virtual-tour-cta-section {
  padding: 0 0 80px;
  background: #FFFFFF;
}

.tour-cta-card {
  background: linear-gradient(135deg, #071D33 0%, #0F3860 100%);
  border-radius: 20px;
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 45px rgba(7, 29, 51, 0.2);
}

.tour-cta-content h2 {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.tour-cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  margin: 0;
}

.tour-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1366B6;
  color: #FFFFFF !important;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(19, 102, 182, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tour-cta-btn:hover {
  background: #0E5096;
  box-shadow: 0 8px 24px rgba(19, 102, 182, 0.55);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .tour-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 30px;
  }
}

@media (max-width: 600px) {
  .tour-gallery-grid {
    grid-template-columns: 1fr;
  }

  .tour-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form 7 Hidden Fields Container Reset */
.wpcf7 fieldset.hidden-fields-container,
fieldset.hidden-fields-container {
  display: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============ CAREER APPLICATION POPUP MODAL STYLES ============ */
.career-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.career-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.career-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.career-modal-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 36px 32px;
  box-shadow: 0 25px 60px -15px rgba(14, 91, 166, 0.35);
  border: 1px solid rgba(14, 91, 166, 0.12);
  z-index: 2;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

.career-modal-container::-webkit-scrollbar {
  width: 5px;
}

.career-modal-container::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 0;
}

.career-modal-container::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}

.career-modal-container::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

.career-modal-overlay.is-open .career-modal-container {
  transform: translateY(0) scale(1);
}

.career-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #F1F5F9;
  border: none;
  color: #64748B;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.career-modal-close:hover {
  background: #EF4444;
  color: #FFFFFF;
}

.career-modal-header {
  margin-bottom: 24px;
  padding-right: 30px;
}

.career-modal-badge {
  display: inline-block;
  background: rgba(14, 91, 166, 0.08);
  color: #0E5BA6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.career-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
  line-height: 1.3;
}

.career-modal-title span {
  color: #0E5BA6;
}

.career-modal-sub {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.45;
}

.career-modal-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.career-modal-alert.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.career-modal-alert.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.career-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 540px) {
  .career-form-grid {
    grid-template-columns: 1fr;
  }
}

.career-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.career-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.career-form-group label .required {
  color: #EF4444;
}

.career-form-group input[type="text"],
.career-form-group input[type="email"],
.career-form-group input[type="tel"],
.career-form-group textarea,
.career-modal-cf7-wrapper input[type="text"],
.career-modal-cf7-wrapper input[type="email"],
.career-modal-cf7-wrapper input[type="tel"],
.career-modal-cf7-wrapper textarea {
  width: 100% !important;
  background: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 12px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  color: #0F172A !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.career-form-group input:focus,
.career-form-group textarea:focus,
.career-modal-cf7-wrapper input:focus,
.career-modal-cf7-wrapper textarea:focus {
  background: #FFFFFF !important;
  border-color: #0E5BA6 !important;
  box-shadow: 0 0 0 3.5px rgba(14, 91, 166, 0.12) !important;
}

.career-file-dropzone {
  position: relative;
  background: #F8FAFC;
  border: 2px dashed #CBD5E1;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.career-file-dropzone:hover {
  background: #F1F5F9;
  border-color: #0E5BA6;
}

.career-file-dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.career-file-dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  color: #64748B;
}

.career-file-dropzone-inner svg {
  color: #0E5BA6;
}

.dropzone-text {
  font-size: 12.5px;
  color: #64748B;
  font-weight: 500;
  line-height: 1.4;
}

.dropzone-text.file-selected {
  color: #0E5BA6;
  font-weight: 700;
}

.career-modal-submit-btn,
.career-modal-cf7-wrapper input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  background: #0E5BA6 !important;
  color: #FFFFFF !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 14px !important;
  border: none !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  box-shadow: 0 8px 20px -4px rgba(14, 91, 166, 0.35) !important;
  transition: all 0.25s ease !important;
}

.career-modal-submit-btn:hover,
.career-modal-cf7-wrapper input[type="submit"]:hover {
  background: #0B4A87 !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 12px 24px -4px rgba(14, 91, 166, 0.45) !important;
}

.career-modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: careerSpinner 0.7s linear infinite;
}

@keyframes careerSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* Drag and Drop Multiple File Upload CF7 Plugin Custom Styling */
.codedropz-drag-handler,
.dnd-upload-wrapper,
div.codedropz-drag-handler {
  background: #F8FAFC !important;
  border: 2px dashed #CBD5E1 !important;
  border-radius: 16px !important;
  padding: 20px 16px !important;
  text-align: center !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
}

.codedropz-drag-handler:hover,
.dnd-upload-wrapper:hover {
  background: #F1F5F9 !important;
  border-color: #0E5BA6 !important;
}

.codedropz-drag-handler h3,
.codedropz-drag-handler .codedropz-label,
.codedropz-drag-handler span.codedropz-title,
.codedropz-drag-handler .dnd-upload-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  margin: 0 0 4px !important;
  line-height: 1.3 !important;
}

.codedropz-drag-handler .codedropz-btn-wrap a,
.codedropz-drag-handler a.cd-upload-btn,
.dnd-upload-wrapper a.dnd-upload-browse {
  color: #0E5BA6 !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  text-decoration: underline !important;
  background: transparent !important;
  padding: 0 !important;
}

.codedropz-drag-handler .dnd-upload-counter,
.dnd-upload-counter {
  font-size: 11px !important;
  color: #94A3B8 !important;
  font-weight: 500 !important;
  background: transparent !important;
  padding: 0 !important;
}