/* ══════════════════════════════════════
   PBI THEME — MAIN STYLESHEET
   Covers: global, navbar, hero, pricing,
   banners, education, audience, resources,
   doctors, workshops, footer, inner pages
══════════════════════════════════════ */

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

:root {
  --navy:       #0c1c35;
  --navy-mid:   #152847;
  --gold:       #f5c41a;
  --gold-dark:  #c9a200;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --light-gray: #edf0f4;
  --mid-gray:   #6b7c94;
  --text-dark:  #0c1c35;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── NAVBAR ────────────────────────────────── */
.navbar {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .3s;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; height: 70px; gap: 6px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 10px; }
.nav-brand img { height: 48px; width: auto; }
.brand-text { color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; line-height: 1.35; max-width: 130px; }
.brand-text .brand-sub { color: rgba(245,196,26,.85); }

.nav-links { display: flex; list-style: none; flex: 1; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 12px; font-weight: 500; padding: 8px 9px; border-radius: 4px; transition: color .2s; white-space: nowrap; display: block; }
.nav-links a:hover, .nav-links .current-menu-item > a, .nav-links .active a { color: var(--gold); }
.nav-links .current-menu-item > a { color: var(--gold); }

.nav-ctas { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; padding: 6px 0; }
.btn-nd { display: flex; align-items: center; gap: 5px; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 4px; transition: border-color .2s, color .2s; white-space: nowrap; }
.btn-nd:hover { border-color: var(--gold); color: var(--gold); }
.btn-bp { background: var(--gold); color: var(--navy); border: none; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: .3px; transition: background .2s; white-space: nowrap; }
.btn-bp:hover { background: var(--gold-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── DROPDOWN / SUB-MENU ───────────────────── */

/* Stretch the nav row to the full 70px navbar height so top:100%
   on the sub-menu lands exactly at the navbar bottom edge */
.nav-links { align-self: stretch; }

/* Positioning context only — preserves the original block/flex-item pattern */
.nav-links > li { position: relative; }

/* Top-level links fill the full li height; text centred vertically.
   Overrides display:block from .nav-links a (higher specificity 0,1,2 > 0,1,1) */
.nav-links > li > a { display: flex; align-items: center; height: 100%; }

/* Chevron on parent items */
.nav-links > li.menu-item-has-children > a::after {
  content: '▾';
  display: inline-block;
  margin-left: 4px;
  font-size: 8px;
  opacity: .6;
  vertical-align: middle;
  transition: transform .2s;
}
.nav-links > li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }

/* Sub-menu panel */
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #0d1f3c;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  list-style: none;
  z-index: 9999;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  padding: 4px 0;
}
.nav-links .sub-menu li { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-links .sub-menu li:last-child { border-bottom: none; }
.nav-links .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-links .sub-menu a:hover { background: rgba(255,255,255,.07); color: var(--gold); }

/* Open on hover (desktop only — via @media below) */
@media (min-width: 901px) {
  .nav-links > li.menu-item-has-children:hover > .sub-menu,
  .nav-links > li.menu-item-has-children:focus-within > .sub-menu { display: block; }
}
/* JS-controlled open (desktop keyboard / mobile toggle) */
.nav-links > li.menu-item-has-children.open > .sub-menu { display: block; }

/* Toggle button — visible only on mobile */
.toggle-sub { display: none; }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative; min-height: 580px; display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,28,53,.97) 0%, rgba(12,28,53,.88) 40%, rgba(12,28,53,.5) 65%, rgba(12,28,53,.15) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 88px 24px; width: 100%; }
.hero-tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 4px 10px; border-radius: 3px; margin-bottom: 22px; }
.hero-content h1 { font-size: clamp(38px, 5.5vw, 66px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: -1.5px; line-height: 1.0; max-width: 580px; margin-bottom: 20px; }
.hero-content h1 .gold { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.78); font-size: 14.5px; max-width: 460px; margin-bottom: 28px; line-height: 1.65; }
.hero-pillars { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.pillar { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: 40px; padding: 6px 14px; color: rgba(255,255,255,.88); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.pillar svg { color: var(--gold); flex-shrink: 0; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-dark { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: var(--white); border: 2px solid rgba(255,255,255,.3); font-weight: 700; font-size: 13px; padding: 12px 22px; border-radius: 5px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s, border-color .2s; white-space: nowrap; }
.btn-dark:hover { background: var(--navy-mid); border-color: rgba(255,255,255,.5); }
.btn-outline-w { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); font-weight: 700; font-size: 13px; padding: 12px 22px; border-radius: 5px; text-transform: uppercase; letter-spacing: .5px; transition: border-color .2s, color .2s; white-space: nowrap; }
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION COMMON ────────────────────────── */
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-dark); margin-bottom: 6px; text-align: center; }
.section-title { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: -.5px; text-align: center; margin-bottom: 48px; }
.btn-navy-sm { display: inline-block; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 10px 16px; border-radius: 4px; border: none; transition: background .2s; white-space: nowrap; }
.btn-navy-sm:hover { background: var(--navy-mid); }

/* ── PRICING ───────────────────────────────── */
.pricing-section { background: var(--off-white); padding: 72px 24px 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 36px; }
.pricing-card { background: var(--navy); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; position: relative; border: 2px solid rgba(255,255,255,.07); transition: transform .2s, box-shadow .2s; }
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.2); }
.pricing-card.popular { border-color: var(--gold); }
.popular-ribbon { position: absolute; top: 20px; right: -30px; background: var(--gold); color: var(--navy); font-size: 9.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; padding: 5px 38px; transform: rotate(30deg); z-index: 1; }
.card-header { padding: 26px 26px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.popular .card-header { border-bottom-color: rgba(245,196,26,.3); }
.tier-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.tier-name { font-size: 24px; font-weight: 900; color: var(--white); text-transform: uppercase; margin-bottom: 3px; }
.tier-name .t-gold { color: var(--gold); }
.tier-sub { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; }
.card-price { padding: 18px 26px; display: flex; align-items: baseline; gap: 2px; border-bottom: 1px solid rgba(255,255,255,.06); }
.price-sign { font-size: 22px; font-weight: 700; color: var(--white); }
.price-amount { font-size: 54px; font-weight: 900; color: var(--white); line-height: 1; }
.price-period { font-size: 13px; color: rgba(255,255,255,.45); align-self: flex-end; padding-bottom: 7px; margin-left: 2px; }
.card-features { padding: 22px 26px; flex: 1; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.45; }
.chk { flex-shrink: 0; width: 17px; height: 17px; margin-top: 1px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.chk::after { content: ''; display: block; width: 4px; height: 7px; border: 1.5px solid var(--gold); border-top: none; border-left: none; transform: rotate(45deg) translate(-1px,-1px); }
.plus-line { color: var(--gold); font-size: 11.5px; font-weight: 700; padding-left: 26px; margin-top: 2px; }
.card-cta { padding: 0 26px 26px; }
.btn-card-gold { width: 100%; background: var(--gold); color: var(--navy); border: none; font-weight: 700; font-size: 12.5px; padding: 13px; border-radius: 6px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
.btn-card-gold:hover { background: var(--gold-dark); }
.btn-card-out { width: 100%; background: transparent; color: rgba(255,255,255,.65); border: 1.5px solid rgba(255,255,255,.25); font-weight: 700; font-size: 12.5px; padding: 13px; border-radius: 6px; text-transform: uppercase; letter-spacing: .5px; transition: border-color .2s, color .2s; }
.btn-card-out:hover { border-color: var(--gold); color: var(--gold); }
.mission-box { background: var(--white); border-radius: 10px; padding: 26px 32px; display: flex; align-items: flex-start; gap: 18px; border-left: 4px solid var(--gold); box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.mission-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.mission-box p { font-size: 15px; color: var(--text-dark); line-height: 1.65; }
.mission-box strong { color: var(--navy); }
.mission-box a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }

/* ── JOIN BANNER ───────────────────────────── */
.join-banner { background: var(--navy); padding: 32px 24px; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.join-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.join-text h3 { font-size: 19px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.join-text p { font-size: 15px; color: rgba(255,255,255,.72); }
.join-text strong { color: var(--gold); }
.join-logo img { height: 68px; }
.join-cta { text-align: right; }
.btn-gold-lg { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); border: none; font-weight: 700; font-size: 13.5px; padding: 13px 26px; border-radius: 5px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; margin-bottom: 8px; }
.btn-gold-lg:hover { background: var(--gold-dark); }
.tagline { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.5); }

/* ── COMING SOON ───────────────────────────── */
.cs-bar { background: #080f1e; padding: 26px 24px; border-bottom: 1px solid rgba(255,255,255,.07); }
.cs-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 20px; }
.cs-icon img { height: 58px; }
.cs-title { font-size: 24px; font-weight: 900; color: var(--white); }
.cs-msg { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 2px; }
.cs-msg span { color: var(--gold); font-weight: 700; font-size: 20px; }

/* ── EDUCATION ─────────────────────────────── */
.edu-section { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.edu-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .42; }
.edu-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,28,53,.98) 0%, rgba(12,28,53,.9) 38%, rgba(12,28,53,.55) 65%, rgba(12,28,53,.1) 100%); }
.edu-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 72px 24px; width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.edu-content h2 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: -1px; line-height: 1.0; margin-bottom: 18px; }
.edu-content h2 .gold { color: var(--gold); }
.edu-content p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; max-width: 460px; margin-bottom: 28px; }
.edu-search { display: flex; max-width: 430px; border-radius: 5px; overflow: hidden; border: 1.5px solid rgba(255,255,255,.2); }
.edu-search input { flex: 1; background: rgba(255,255,255,.07); border: none; color: var(--white); font-size: 13px; padding: 12px 16px; outline: none; }
.edu-search input::placeholder { color: rgba(255,255,255,.38); }
.edu-search button { background: var(--gold); color: var(--navy); border: none; font-weight: 700; font-size: 12.5px; padding: 12px 22px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
.edu-search button:hover { background: var(--gold-dark); }
.edu-feats { display: flex; flex-direction: column; gap: 22px; }
.edu-feat { display: flex; align-items: center; gap: 14px; }
.edu-feat-icon { width: 42px; height: 42px; border: 2px solid rgba(245,196,26,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.edu-feat-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.85); }

/* ── AUDIENCE CARDS ────────────────────────── */
.audience-section { background: var(--white); padding: 64px 24px; }
.audience-section .section-title { color: var(--navy); margin-bottom: 36px; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.audience-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid #dde4ef; display: flex; min-height: 280px; box-shadow: 0 2px 14px rgba(0,0,0,.06); transition: box-shadow .2s, transform .2s; }
.audience-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.11); transform: translateY(-2px); }
.aud-content { flex: 1; padding: 28px 22px; display: flex; flex-direction: column; min-width: 0; }
.aud-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; flex-shrink: 0; }
.aud-icon svg { color: var(--white); }
.aud-content h3 { font-size: 17px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; line-height: 1.2; }
.aud-content p { font-size: 12.5px; color: var(--mid-gray); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.aud-img { width: 44%; flex-shrink: 0; position: relative; overflow: hidden; }
.aud-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ── POPULAR RESOURCES ─────────────────────── */
.resources-section { background: var(--navy); padding: 64px 24px; }
.resources-section .section-title { color: var(--white); margin-bottom: 36px; }
.resources-section .section-eyebrow { color: rgba(245,196,26,.8); }
.res-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; margin-bottom: 28px; }
.res-card { background: var(--white); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.res-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.28); }
.res-img { height: 130px; overflow: hidden; flex-shrink: 0; }
.res-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.res-body { padding: 12px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.res-type { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); opacity: .55; }
.res-body h4 { font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.35; flex: 1; }
.res-body p { font-size: 11px; color: var(--mid-gray); line-height: 1.5; }
.res-action { display: flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-top: 8px; background: none; border: none; padding: 0; transition: color .2s; }
.res-action:hover { color: var(--gold-dark); }
.view-all-row { text-align: center; }
.view-all-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; transition: color .2s; }
.view-all-link:hover { color: var(--gold-dark); }

/* ── FIND A DOCTOR ─────────────────────────── */
.doctor-section { background: var(--off-white); padding: 64px 24px; }
.doc-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 290px 1fr; gap: 48px; align-items: start; }
.doc-sidebar h2 { font-size: 27px; font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.doc-sidebar p { font-size: 13px; color: var(--mid-gray); line-height: 1.65; margin-bottom: 18px; }
.doc-search { display: flex; border-radius: 5px; overflow: hidden; border: 1.5px solid #c8d2de; margin-bottom: 14px; }
.doc-search input { flex: 1; border: none; background: var(--white); font-size: 12.5px; padding: 11px 14px; outline: none; color: var(--text-dark); }
.doc-search button { background: var(--navy); color: var(--white); border: none; font-weight: 700; font-size: 11.5px; padding: 11px 16px; text-transform: uppercase; letter-spacing: .3px; transition: background .2s; }
.doc-search button:hover { background: var(--navy-mid); }
.view-all-providers { font-size: 12.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.view-all-providers:hover { color: var(--gold-dark); }
.doc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.doc-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.07); transition: box-shadow .2s, transform .2s; }
.doc-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.12); transform: translateY(-2px); }
.doc-photo { height: 170px; overflow: hidden; }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doc-body { padding: 16px; }
.doc-body h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.doc-spec { font-size: 12px; color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.doc-meta { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.doc-meta li { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--mid-gray); }
.doc-stars { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--mid-gray); margin-bottom: 12px; }
.stars { color: var(--gold); letter-spacing: .5px; }
.doc-link { font-size: 12.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; border-bottom: 1.5px solid var(--navy); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.doc-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ── WORKSHOPS ─────────────────────────────── */
.workshops-section { background: var(--white); padding: 64px 24px; }
.ws-head { max-width: 1280px; margin: 0 auto 28px; display: flex; align-items: center; justify-content: space-between; }
.ws-head h2 { font-size: clamp(20px, 2.8vw, 32px); font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: -.5px; }
.ws-view-all { font-size: 12.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.ws-view-all:hover { color: var(--gold-dark); }
.workshops-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ws-card { border: 1px solid #dde4ef; border-radius: 10px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.ws-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.ws-photo { height: 152px; overflow: hidden; position: relative; }
.ws-photo img { width: 100%; height: 100%; object-fit: cover; }
.ws-badge { position: absolute; top: 9px; left: 9px; background: rgba(12,28,53,.85); color: rgba(255,255,255,.9); font-size: 8.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 3px; }
.ws-body { padding: 16px; }
.ws-body h4 { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.ws-meta { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.ws-meta li { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--mid-gray); }
.ws-spots { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.btn-register { display: block; width: 100%; background: var(--navy); color: var(--white); border: none; font-weight: 700; font-size: 11.5px; text-align: center; padding: 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
.btn-register:hover { background: var(--gold); color: var(--navy); }

/* ── FOOTER FEATURES ───────────────────────── */
.foot-feats { background: var(--navy); padding: 32px 24px; border-top: 3px solid var(--gold); }
.ff-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; }
.ff-item { display: flex; align-items: flex-start; gap: 12px; }
.ff-icon { width: 38px; height: 38px; border: 2px solid rgba(245,196,26,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.ff-text strong { display: block; color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.ff-text p { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── FOOTER ────────────────────────────────── */
.footer { background: var(--navy); padding: 52px 24px 28px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 24px; }
.foot-brand img { height: 54px; margin-bottom: 12px; }
.foot-brand p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 4px; }
.foot-brand .tag { font-size: 10.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; }
.foot-col h5 { color: var(--white); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 13px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col ul a, .foot-col ul li { color: rgba(255,255,255,.52); font-size: 12.5px; transition: color .2s; }
.foot-col ul a:hover { color: var(--gold); }
.foot-newsletter h5 { color: var(--white); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.foot-newsletter p { font-size: 11.5px; color: rgba(255,255,255,.5); margin-bottom: 12px; line-height: 1.55; }
.nl-form { display: flex; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); }
.nl-form input { flex: 1; background: rgba(255,255,255,.06); border: none; color: var(--white); font-size: 12px; padding: 10px 12px; outline: none; }
.nl-form input::placeholder { color: rgba(255,255,255,.32); }
.nl-form button { background: var(--gold); color: var(--navy); border: none; font-weight: 700; font-size: 11.5px; padding: 10px 14px; text-transform: uppercase; letter-spacing: .3px; transition: background .2s; }
.nl-form button:hover { background: var(--gold-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.32); font-size: 11px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.32); font-size: 11px; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   INNER PAGE STYLES
══════════════════════════════════════ */

/* ── PAGE HERO ─────────────────────────────── */
.page-hero {
  position: relative; min-height: 220px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6a 60%, #2a5a8a 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(12,28,53,.45); }
.page-hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 48px 24px; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-dark); }
.page-hero-content h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: -1px; line-height: 1.1; }
.page-hero-content p { color: rgba(255,255,255,.75); font-size: 14.5px; margin-top: 10px; max-width: 560px; line-height: 1.6; }

/* ── PAGE CONTENT ──────────────────────────── */
.page-layout { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
.page-content-area { max-width: 860px; }
.page-content-area .entry-content h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 28px 0 12px; text-transform: uppercase; }
.page-content-area .entry-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 22px 0 10px; }
.page-content-area .entry-content p { font-size: 15px; color: #3a4a5e; line-height: 1.75; margin-bottom: 16px; }
.page-content-area .entry-content a { color: var(--gold-dark); text-decoration: underline; }
.page-content-area .entry-content ul, .page-content-area .entry-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content-area .entry-content li { font-size: 15px; color: #3a4a5e; line-height: 1.7; margin-bottom: 6px; }
.page-content-area .entry-content img { border-radius: 8px; margin: 20px 0; }
.page-content-area .entry-content blockquote { border-left: 4px solid var(--gold); padding: 14px 24px; background: var(--off-white); border-radius: 0 8px 8px 0; font-style: italic; margin: 24px 0; }

/* Full-width page (Elementor) */
.page-template-elementor_canvas .navbar,
.page-template-elementor_canvas .footer,
.page-template-elementor_canvas .foot-feats { display: none; }

/* ── CPT ARCHIVE GRID ──────────────────────── */
.archive-section { padding: 56px 24px; }
.archive-grid { max-width: 1280px; margin: 0 auto; display: grid; gap: 24px; }
.archive-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.archive-grid.cols-4 { grid-template-columns: repeat(4,1fr); }

/* ── SINGLE CPT ────────────────────────────── */
.single-cpt { max-width: 1280px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.single-cpt-main { }
.single-cpt-sidebar { background: var(--off-white); border-radius: 10px; padding: 28px; }
.single-cpt-sidebar h3 { font-size: 15px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.cpt-meta-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid-gray); margin-bottom: 10px; }
.cpt-meta-row svg { color: var(--navy); flex-shrink: 0; }
.cpt-featured-img { border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
.cpt-featured-img img { width: 100%; height: 300px; object-fit: cover; object-position: top; }

/* ── 404 ───────────────────────────────────── */
.error-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.error-404 h1 { font-size: 96px; font-weight: 900; color: var(--gold); line-height: 1; }
.error-404 h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 8px 0 16px; text-transform: uppercase; }
.error-404 p { font-size: 15px; color: var(--mid-gray); margin-bottom: 28px; }

/* ── PAGINATION ────────────────────────────── */
.pbi-pagination { display: flex; justify-content: center; gap: 6px; padding: 32px 0; }
.pbi-pagination a, .pbi-pagination span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 5px; font-size: 13px; font-weight: 600; border: 1.5px solid #dde4ef; color: var(--navy); transition: background .2s, color .2s, border-color .2s; }
.pbi-pagination a:hover, .pbi-pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── SINGLE CPT (new layout) ───────────────────── */
.single-cpt-inner { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.single-cpt-photo { border-radius: 12px; overflow: hidden; }
.single-cpt-photo img { width: 100%; height: 380px; object-fit: cover; object-position: top; display: block; }
.cpt-photo-placeholder { background: var(--off-white); border-radius: 12px; height: 300px; display: flex; align-items: center; justify-content: center; color: #aab; }
.single-cpt-details h1 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.cpt-tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; padding: 3px 10px; margin-bottom: 14px; }
.cpt-meta-list { list-style: none; padding: 0; margin: 16px 0 24px; }
.cpt-meta-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--mid-gray); margin-bottom: 10px; }
.cpt-meta-list li svg { color: var(--navy); flex-shrink: 0; }
.cpt-meta-list a { color: var(--navy); text-decoration: underline; }
.cpt-bio { margin: 20px 0 28px; }
.cpt-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── BUTTONS (outline variant) ─────────────────── */
.btn-outline { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border: 2px solid var(--navy); border-radius: 6px; color: var(--navy); font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── DOC CARD SPECIFICS ────────────────────────── */
.doc-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,.07); overflow: hidden; display: flex; flex-direction: column; }
.doc-card-img { height: 200px; overflow: hidden; background: var(--off-white); }
.doc-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc-card-placeholder { display: flex; align-items: center; justify-content: center; color: #c0c8d8; }
.doc-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.doc-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0; }
.doc-specialty { font-size: 12px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.doc-loc { font-size: 13px; color: var(--mid-gray); display: flex; align-items: center; gap: 4px; }
.doc-miles { color: var(--gold-dark); font-weight: 600; }
.doc-rating { display: flex; align-items: center; gap: 5px; font-size: 13px; }
.doc-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.doc-reviews { color: var(--mid-gray); }
.doc-card-actions { margin-top: auto; padding-top: 14px; display: flex; gap: 8px; }

/* ── WS CARD ───────────────────────────────────── */
.ws-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,.07); overflow: hidden; display: flex; flex-direction: column; }
.ws-card-img { height: 180px; overflow: hidden; background: var(--off-white); }
.ws-card-img img { width: 100%; height: 100%; object-fit: cover; }
.ws-card-placeholder { display: flex; align-items: center; justify-content: center; color: #c0c8d8; }
.ws-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ws-card-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.ws-loc, .ws-date, .ws-spots { font-size: 12px; color: var(--mid-gray); display: flex; align-items: center; gap: 5px; }
.ws-card-body .btn-gold { margin-top: auto; align-self: flex-start; }

/* ── RES CARD ──────────────────────────────────── */
.res-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,.07); overflow: hidden; display: flex; flex-direction: column; }
.res-card-img { height: 180px; overflow: hidden; background: var(--off-white); }
.res-card-img img { width: 100%; height: 100%; object-fit: cover; }
.res-type-badge-wrap { display: flex; align-items: center; justify-content: center; }
.res-type-icon { color: var(--navy); }
.res-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.res-card-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.res-card-body h3 a { color: inherit; text-decoration: none; }
.res-card-body h3 a:hover { color: var(--gold-dark); }
.res-card-body p { font-size: 13px; color: var(--mid-gray); line-height: 1.6; }
.res-card-body .btn-gold { align-self: flex-start; margin-top: auto; }
.res-tag { font-size: 11px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .5px; }
.single-feat-img { border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.single-feat-img img { width: 100%; max-height: 420px; object-fit: cover; }
.res-feat-img { border-radius: 12px; overflow: hidden; margin-bottom: 28px; max-width: 1100px; margin-left: auto; margin-right: auto; padding: 0 24px; }

/* ── ARCHIVE SEARCH BAR ────────────────────────── */
.archive-search { max-width: 560px; margin: -12px auto 36px; }
.archive-search form { display: flex; gap: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.archive-search input { flex: 1; padding: 13px 18px; border: none; font-size: 14px; background: #fff; color: var(--navy); outline: none; }
.archive-search button { padding: 13px 22px; }

/* ── POST NAV ──────────────────────────────────── */
.post-nav { display: flex; justify-content: space-between; gap: 20px; padding: 32px 0 0; border-top: 1px solid #e8edf5; margin-top: 32px; }
.post-nav-link { display: flex; flex-direction: column; gap: 4px; text-decoration: none; max-width: 45%; }
.post-nav-link span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--mid-gray); }
.post-nav-link { font-size: 14px; color: var(--navy); font-weight: 600; }
.post-nav-link:hover { color: var(--gold-dark); }
.post-nav-next { align-items: flex-end; text-align: right; }

/* ── NO RESULTS ────────────────────────────────── */
.no-results { text-align: center; padding: 60px 24px; }
.no-results h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.no-results p { color: var(--mid-gray); margin-bottom: 24px; }

/* ── 404 EXTENDED ──────────────────────────────── */
.error-404 { flex-direction: column; }
.error-404-code { font-size: 120px; font-weight: 900; color: var(--gold); line-height: 1; }
.error-404-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .res-grid { grid-template-columns: repeat(3,1fr); }
  .ff-inner { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .single-cpt { grid-template-columns: 1fr; }
  .archive-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .archive-grid.cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 14px; gap: 2px; z-index: 999; }

  /* Mobile: li becomes a flex row so the toggle-sub button sits beside the link */
  .nav-links > li { display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links > li:last-child { border-bottom: none; }
  /* Reset height:100% set for desktop; let the link size to its content */
  .nav-links > li > a { flex: 1; padding: 11px 4px; font-size: 13px; height: auto; align-items: center; }

  /* Show toggle button only on mobile */
  .toggle-sub {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7); width: 28px; height: 28px; border-radius: 4px;
    font-size: 11px; cursor: pointer; flex-shrink: 0; font-family: inherit;
    transition: background .15s;
  }
  .toggle-sub:hover { background: rgba(255,255,255,.15); }

  /* Sub-menu on mobile: full-width collapsible block */
  .nav-links .sub-menu {
    position: static; display: none; flex-basis: 100%; width: 100%;
    border: none; border-top: 1px solid rgba(255,255,255,.07); box-shadow: none;
    background: rgba(0,0,0,.2); padding: 4px 0; min-width: unset; border-radius: 0;
  }
  .nav-links > li.menu-item-has-children.open > .sub-menu { display: block; }
  .nav-links .sub-menu a { padding: 9px 28px; font-size: 12px; }

  /* Hide chevron — toggle-sub button handles state */
  .nav-links > li.menu-item-has-children > a::after { display: none; }
  .pricing-grid, .audience-grid, .doc-cards, .workshops-grid { grid-template-columns: 1fr; }
  .doc-inner { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; text-align: center; }
  .join-cta { text-align: center; }
  .join-logo { display: none; }
  .edu-inner { grid-template-columns: 1fr; }
  .edu-feats { display: none; }
  .audience-card { flex-direction: column; min-height: unset; }
  .aud-img { width: 100%; height: 220px; position: relative; }
  .aud-img img { position: relative; width: 100%; height: 100%; }
  .single-cpt { grid-template-columns: 1fr; }
  .single-cpt-inner { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; }
  .post-nav-next { align-items: flex-start; text-align: left; }
  .cpt-actions { flex-direction: column; }
}
@media (max-width: 640px) {
  .res-grid { grid-template-columns: 1fr 1fr; }
  .ff-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-pillars { display: none; }
  .hero-content h1 { font-size: 36px; }
  .archive-grid.cols-3, .archive-grid.cols-4 { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr 1fr; }
}
