/* ============================================================
   LEGACYTCP.COM — Shared Stylesheet
   Live Web Studios | Built 2026
   ============================================================ */

/* Proxima Nova — Adobe Typekit */
@import url("https://use.typekit.net/vas8gtp.css");
/* Open Sans — body text */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap");

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:       #1B2D5E;
  --navy-dark:  #142247;
  --teal:       #29ABE2;
  --teal-dark:  #1a8bbf;
  --white:      #FFFFFF;
  --offwhite:   #F7F9FC;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A6A;
  --text-light: #888899;
  --border:     #E2E8F0;
  --font-head:  'proxima-nova', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --max-width:  1200px;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(27,45,94,0.10);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  padding: 6px 0;
  text-align: right;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.top-bar a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--teal); }
.top-bar .phone-icon { font-size: 11px; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(27,45,94,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 56px;
  height: 56px;
  border: 2px solid var(--navy);
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}
.logo-cell.navy-bg { background: var(--navy); color: var(--white); }
.logo-cell.teal-bg  { background: var(--teal); color: var(--white); }
.logo-cell.white-bg { background: var(--white); color: var(--navy); border: 1px solid var(--border); }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-tagline {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); }
.nav-link .caret {
  font-size: 9px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow);
  min-width: 220px;
  z-index: 999;
  border-radius: 0 0 var(--radius) var(--radius);
  padding-top: 4px;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--teal); background: var(--offwhite); }

/* Mega menu for Services */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow);
  width: 700px;
  z-index: 999;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px;
  display: none;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.nav-item:hover .mega-dropdown { display: grid; }
.mega-col { padding: 0 16px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }
.mega-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  display: block;
}
.mega-col a {
  display: block;
  padding: 6px 0;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mega-col a:hover { color: var(--teal); background: none; }

/* Search & Mobile toggle */
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 16px;
  padding: 10px 10px;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: var(--teal); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--navy);
}

/* Site logo image sizing */
.site-logo {
  height: 80px;
  width: auto;
  display: block;
  max-width: 280px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,45,94,0.88) 50%, rgba(27,45,94,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-subhead {
  font-family: var(--font-head);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-solid {
  display: inline-block;
  padding: 12px 32px;
  background: var(--teal);
  border: 2px solid var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-solid:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-navy {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s;
}
.btn-navy:hover { background: var(--navy); color: var(--white); }

/* ── Wave SVG ─────────────────────────────────────────────── */
.wave-bottom, .wave-top {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
/* Page hero wave at bottom */
.page-hero-wave svg { height: 120px !important; }

/* ── Section Base ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-navy { background: var(--navy); }
.section-offwhite { background: var(--offwhite); }

/* Ghost watermark text */
.section-inner { position: relative; }
.ghost-text {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  z-index: 0;
  text-transform: uppercase;
}
.ghost-text.dark {
  color: rgba(27,45,94,0.05);
}
.section-inner > *:not(.ghost-text) { position: relative; z-index: 1; }

/* Section headings */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: normal; color: var(--teal); font-weight: 800; }
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--teal);
  margin: 0 auto 30px;
}
.section-divider.left { margin-left: 0; }

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Two Column ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Bullet List Section ──────────────────────────────────── */
.bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 30px;
}
.bullet-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
}
.bullet-item:last-child { border-bottom: none; }
.bullet-item strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Commitment Section ───────────────────────────────────── */
.commitment-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.commitment-logo { flex-shrink: 0; }
.commitment-body h2 { margin-bottom: 20px; }
.commitment-body p { color: var(--text-mid); font-size: 15px; margin-bottom: 16px; line-height: 1.8; }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-section {
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,45,94,0.6) 0%, rgba(27,45,94,0.85) 100%);
}
.why-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-placeholder { min-height: 300px; }
.why-text h2 { color: var(--white); margin-bottom: 20px; }
.why-text p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-section { background: var(--white); }
.blog-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.blog-card h3 a {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s;
}
.blog-card h3 a:hover { color: var(--navy); }
.blog-category {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 6px 0 10px;
}
.blog-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 10px; }
.read-more {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.read-more:hover { color: var(--navy); }
.btn-more-posts {
  display: inline-block;
  margin: 24px auto 0;
  padding: 10px 28px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.25s;
}
.btn-more-posts:hover { background: var(--teal); color: var(--white); }
.blog-center { text-align: center; }

/* ── Disclaimer ───────────────────────────────────────────── */
.disclaimer {
  background: var(--white);
  padding: 30px 0 40px;
}
.disclaimer p {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Footer Wave ──────────────────────────────────────────── */
.footer-wave { background: var(--navy); overflow: hidden; line-height: 0; }
.footer-wave svg { display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 50px 0 30px;
  position: relative;
}
.footer-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  display: block;
}
.footer-col p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-logo { margin-top: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.footer-nav a {
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 14px 0 4px;
  display: block;
}
.footer-contact-label:first-child { margin-top: 10px; }
.footer-contact-val {
  font-size: 13.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--white); }
.footer-legal-links span { color: rgba(255,255,255,0.3); padding: 0 2px; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-copy a { color: var(--teal); transition: color 0.2s; }
.footer-copy a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.page-hero-wave svg {
  height: 100px !important;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}
.page-hero-sub {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.75;
  text-align: left;
}

/* ── Team Cards ───────────────────────────────────────────── */
.team-section { background: var(--navy); position: relative; overflow: hidden; }
.team-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.team-inner { position: relative; z-index: 1; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.team-card { text-align: center; }
.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
  border: 4px solid rgba(255,255,255,0.15);
}
.team-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card .team-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.team-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 12px;
}
.team-read-more {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.team-read-more:hover { color: var(--white); }

/* ── Disclosure Text ──────────────────────────────────────── */
.disclosure {
  background: var(--offwhite);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.disclosure p {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 10px;
}
.disclosure p:last-child { margin-bottom: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col.reverse { direction: ltr; }
  .bullets-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-placeholder { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .commitment-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-content h1 { font-size: 24px; }
  .section { padding: 50px 0; }
  .header-inner { padding: 10px 0; }
}

/* Mobile menu open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 9999;
  padding: 24px;
  overflow-y: auto;
}


/* Target all images EXCEPT logos and badge */

/* Remove border/shadow from icon/team circular photos */
img[style*="border-radius: 50%"],
img[style*="border-radius:50%"] {
  border-radius: 50% !important;
}

/* Bio photos */
.bio-photo-wrap img,
.team-card img {
  border: 2px solid var(--navy) !important;
  border-radius: 50% !important;
  box-shadow: 4px 4px 16px rgba(27,45,94,.2) !important;
  width: 200px !important;
  height: 200px !important;
}

/* About page team card photos */
.team-card .team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 16px rgba(27,45,94,.2);
}

/* ── Mega menu sub-sub fly-out ────────────────────────────────── */
.mega-sub-group {
  position: relative;
  display: block;
}
.mega-sub-parent {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 !important;
  font-family: var(--font-head) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
}
.mega-sub-parent:hover { color: var(--teal) !important; background: none !important; }
.mega-sub-dropdown {
  display: none;
  position: absolute;
  right: 100%;
  left: auto;
  top: -3px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  box-shadow: -4px 4px 20px rgba(27,45,94,.15);
  min-width: 210px;
  z-index: 1001;
  border-radius: 0 0 var(--radius) var(--radius);
}
.mega-sub-group:hover .mega-sub-dropdown,
.mega-sub-group:focus-within .mega-sub-dropdown { display: block; }
.mega-sub-dropdown a {
  display: block !important;
  padding: 10px 16px !important;
  font-family: var(--font-head) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--text-mid) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid var(--border) !important;
  transition: color 0.2s, background 0.2s, padding-left 0.2s !important;
  background: none !important;
}
.mega-sub-dropdown a:last-child { border-bottom: none !important; }
.mega-sub-dropdown a:hover { color: var(--teal) !important; background: var(--offwhite) !important; }

/* Bio read more link */
.bio-read-more {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s, letter-spacing .2s;
}
.bio-read-more:hover { color: var(--navy); letter-spacing: .1em; }

/* ── Content image styling ─────────────────────────────────── */
/* Apply border/shadow to ALL images, then reset exceptions */
.section img,
.section-inner img,
.container img,
.insurance-content-grid img {
  border-radius: 14px !important;
  box-shadow: 8px 10px 28px rgba(27,45,94,.32) !important;
  border: 1px solid #1B2D5E !important;
}

/* Reset: logos, icons, badges, circular team photos */
.site-header img,
.header-inner img,
.logo-wrap img,
.footer-logo img,
.footer-bottom img,
.commitment-logo img,
img[src*="logoRGB"],
img[src*="icontcp"],
img[src*="verifiedsecured"],
img[src*="logo-"],
img[src*="logo.svg"],
img[src*="logo-transparent"],
img[src*="logo-header"],
img[src*="logo-footer"],
.bio-photo-wrap img,
.team-card img {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Team/bio photos stay circular */
.bio-photo-wrap img {
  border-radius: 50% !important;
  border: 3px solid var(--white) !important;
  box-shadow: 4px 4px 16px rgba(27,45,94,.22) !important;
}
.team-card img {
  border-radius: 50% !important;
  border: 2px solid var(--navy) !important;
  box-shadow: 4px 4px 16px rgba(27,45,94,.2) !important;
}

.insurance-content-grid img {
  width: 100%;
}
