/*
Theme Name: BCA Phlox Child
Template: phlox
Version: 1.0.0
Text Domain: bca-phlox-child
Author: Deven Warang
*/

@font-face {
  font-family: 'BCA Playfair Display';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/playfairdisplay/v40/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2') format('woff2');
}

:root {
  --bca-primary: #1A5AFF;
  --bca-secondary: #E8A020;
  --bca-navy: #0C349B;
  --bca-dark-navy: #0D1B3E;
  --bca-card-border: #E6EBF2;
  --bca-card-bg: #F7F9FC;
  --bca-dark-border: #e2e8f0;
  --bca-dark-blue: #0838B4;
  --bca-header-bg: rgb(1 16 57 / 95%);
  --bca-button-border: #E8E8E8;
  --bca-ghost: #6C757D5E;
  --bca-title: #242F65;
  --bca-text-desc: #5f6983;
  --bca-font-heading: 'Outfit', sans-serif;
  --bca-font-base: 'Nunito', sans-serif;
  --bca-dark-secondary: #db961ab5;
  --border-radius: 2px;
  --white: #FFFFFF;
  --muted: #64748b;
  --text: #1e293b;
  /*--general: #64748b;*/
  --general: #E8A020;
  --medical: #1A56DB;
  --parish: #0891B2;
  --tax-relief:#059669;
  --audit:#7C3AED;
  --img-placeholder: aliceblue;
  --header-h: 90px;
  --transition:  0.28s ease;
  --reveal-transition: transform 0.5s ease;
  --box-shadow: 0 18px 45px rgba(1, 16, 57, 0.08);
  --bca-svg-wrap-primary: rgba(26,86,219,0.07);
  --bca-svg-wrap-primary-hover: rgba(26,86,219,0.10);
  --bca-svg-wrap-secondary: rgba(201, 168, 76, 0.08);
  --bca-svg-wrap-secondary-hover: rgba(201, 168, 76, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) - 19px);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

h2 {
  font-size: 2.375em;
  line-height: 1.5;
}

.lc { text-transform: lowercase; }

/*=========================
  BCA - BUTTONS
  ========================= */
.bca-btn-primary {
  display: inline-flex; align-items: center; text-align: center; justify-content: center;
  background-image: linear-gradient(115deg, var(--bca-primary) 0%, var(--bca-dark-blue) 100%);
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
  border-style: none;
  border-radius: var(--border-radius);
  color: var(--white);
  margin: 0;
  transition: background var(--transition), transform var(--transition);
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.bca-btn-primary:not(:disabled):hover {
  color: white;
  background-image: linear-gradient(115deg, #0533a7 0%, #082f93 100%);
}

.bca-btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.bca-btn-primary.gold {
  background: var(--bca-secondary);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
  color: white;
  font-weight: 600;
}

.bca-btn-primary.gold:hover {
  background: #c78510;
}

.bca-btn-accent {
  background-color: var(--bca-ghost);
  transition-duration: 0.2s;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  border-color: var(--bca-button-border);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5) !important;
  border-style: none;
  border-radius: 2px;
  margin-bottom: 0px;
  text-align: center;
  padding: 10px 25px 10px 25px;
  background-image: none !important;
  justify-content: center;
  color: var(--e-global-color-7013882);
}

.bca-btn-accent:hover {
  color: white;
  background-color: var(--bca-dark-navy) !important;
}

.bca-btn-ghost {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 9px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
}

.bca-btn-ghost:hover {
  background: var(--white);
  color: var(--bca-navy);
}

.bca-btn-ghost:hover svg {
  fill: var(--bca-navy);
  stroke: var(--bca-navy);
}

.bca-btn-ghost svg , .bca-btn-primary svg {
  height: 1.3em;
  stroke-width: 1.5px;
  stroke: var(--white);
  fill: var(--white);
  transition: transform var(--transition);
}

.bca-btn-primary.gold svg {
  stroke: currentColor;
  fill: currentColor;
  transition: transform var(--transition);
}

.bca-btn-primary:not(:disabled):hover svg {
  transform: translateX(4px);
}

.bca-btn-outline {
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: var(--border-radius);
  background: transparent;
  color: var(--bca-dark-navy);
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border: 1.5px solid var(--bca-dark-border);
  transition: all var(--transition);
}

.bca-btn-outline:hover {
  border-color: var(--bca-dark-navy);
  background: var(--bca-dark-navy);
  color: var(--white);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, var(--reveal-transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/*=========================
  BCA - HEADING SECTION
  ========================= */
.bca-heading-section.left-align {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px; 
}

.bca-heading-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  width: min(1200px, 100%);
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}

.bca-heading-section.left-align .bca-heading-container { 
  text-align: left; 
  margin-bottom: 0px;
}

.bca-heading__eyebrow {
  align-items: center;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bca-primary);
  margin-bottom: 14px;
}

.bca-heading__eyebrow.white { color: #ffffffcf; }

.bca-heading__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--bca-dark-navy);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-top: 0;
  text-transform: capitalize;
}

.bca-heading__title.white { color: var(--white) }

.bca-heading__title em {
  font-weight: 700;
  color: var(--bca-primary);
}

.bca-heading__title span {
  font-family: "BCA Playfair Display";
  font-weight: 700;
  font-style: italic;
  color: var(--bca-primary);
  transition: all .3s ease;
  display: inline-block;
}

.bca-heading__border {
  height: 4px;
  width: 100px;
  background: var(--bca-primary);
  border-radius: 2px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.bca-heading__border::before {
  content: "";
  position: absolute;
  color: var(--bca-primary);
  left: -27px;
  top: 0;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: var(--bca-primary);
  -webkit-box-shadow: 9px 0 0 0 currentColor, 18px 0 0 0 currentColor;
  box-shadow: 9px 0 0 0 currentColor, 18px 0 0 0 currentColor;
}

.bca-heading__description {
  margin-left: auto;
  margin-right: auto;
  display: block;
  clear: both;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}

.bca-heading-section.left-align .bca-heading__description {
  margin: 0;
}

.bca-heading__description p {
  color: var(--bca-text-desc);
  margin-bottom: 10px;
}

.bca-heading__link {
  display: inline-flex;
  align-items: center;align-self: center;justify-self: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bca-navy);
  border-bottom: 1px solid rgba(26, 86, 219, 0.3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.bca-heading__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.bca-heading__link:hover svg {
  transform: translateX(3px);
}

/*=========================
  BCA SECTION
  ========================= */
.bca-section__eyebrow {
  align-items: center;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bca-primary);
  margin-bottom: 14px;
}

.bca-section__title {
  color: var(--bca-dark-navy);
  text-rendering: optimizeSpeed;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-top: 0;
  text-transform: capitalize;
}

.bca-section__title.white{
  color: var(--white);
}

.bca-section__title em, 
.bca-section__title.white em {
  font-weight: 700;
  color: var(--bca-primary);
}

.bca-section__text {
  padding-top: 10px;
}

.bca-section__text p {
  margin: 0 0 18px;
  color: var(--bca-text-desc);
  font-size: 15px;
  line-height: 1.8;
}

.bca-section__text p:last-child {
    margin-bottom: 0;
}


/*=========================
  BCA HERO SECTION
  ========================= */
.bca-hero-section {
  display: flex;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bca-hero__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  margin: 0 auto;
  --background-overlay: '';
  mix-blend-mode: initial;
  background-color: transparent;
  background-image: linear-gradient(90deg, #011039 0%, #011039CF 100%);
  z-index: 1;
}

.bca-hero {
  z-index: 2;
  align-items: initial;
  align-self: auto;
  max-width: 1200px;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 140px 0 100px;
  display: flex;
}

.bca-hero__content {
  width: 100%;
  max-width: 760px;
}

.bca-hero__content-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: end;
  max-width: 100%;
}

.bca-hero__eyebrow {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  font-style: normal;
  text-transform: uppercase;
}

.bca-hero__eyebrow p {
  margin-block-end: 0px;
}

.bca-hero__eyebrow span {
  color: rgba(255, 255, 255, 0.55);;
}

.bca-hero__head-wrapper {
  display: flex;
  flex-flow: column;
}

.bca-hero__title {
  margin: 0;
  color: var(--white);
  font-size: 3.3125em;
  line-height: 1.2;
  margin-bottom: 0.4em;
  letter-spacing: 0;
  font-weight: 800;
  margin-top: .2em;
  text-rendering: optimizeSpeed;
}

.bca-hero__title em, .bca-hero__title span { color: var(--bca-secondary); }

.bca-hero__text {
  margin-top: 12px;
  margin-bottom: 0px;
  max-width: 600px;
  line-height: 1.8;
  color: rgb(255 255 255 / 80%);
  font-size: 16px;
  font-weight: 600;
  text-shadow: 14px 15px 20px rgba(0, 0, 0, 0.3);
}

.bca-hero__meta {
  font-family: var(--bca-font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

.bca-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.bca-hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 27, 62, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 32px;
  z-index: 3;
  align-content: center;
  align-items: center;
  justify-items: center;
}

.bca-hero__bottom.big-text {
  padding: 0;
}

.bca-hero__bottom.big-text .bca-hero__bottom-stat {
    padding: 15px 32px;
}

.bca-hero__bottom-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* flex-wrap: wrap; */
}

.bca-hero__bottom.big-text .bca-hero__bottom-inner {
  gap: 0;
}

.bca-hero__bottom-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.bca-hero__bottom-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 2;
}

.bca-hero__bottom-stat {
  padding: 20px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bca-hero__bottom-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.bca-hero__bottom-num span {
color: var(--bca-primary);
}

.bca-hero__bottom-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.bca-hero__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.bca-hero__card-head {
  background: var(--bca-primary);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bca-hero__card-head svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
  stroke-width: 2;
}

.bca-hero__card-head h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  letter-spacing: 0.3px;
}

.bca-hero__card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bca-hero__card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a.bca-hero__card-item:hover .bca-hero__card-value { color: var(--bca-secondary); }

.bca-hero__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.15);
  border: 1px solid rgba(26, 86, 219, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bca-hero__card-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 2;
}

.bca-hero__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.bca-hero__card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.bca-hero__card-value a { color: rgba(255,255,255,0.8); }

.bca-hero__card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.bca-hero__card-foot {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bca-hero__card-foot a {
  display: flex;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(26, 86, 219, 0.3);
}

.bca-hero__card-foot a svg {
  padding-left: 0;
  margin-left: 10px;
}

/* =========================
   POST search box 
   ========================= */
.news-search-bar label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bca-dark-navy);
  letter-spacing: 0.2px;
}

.news-search-bar .wp-block-search__inside-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
	box-shadow: 0 18px 45px rgba(1, 16, 57, 0.08);
  background: #ffffff;
  border: 1px solid var(--bca-card-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.news-search-bar .wp-block-search__input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 18px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: var(--bca-dark-navy);
  box-shadow: none !important;
}

.news-search-bar .wp-block-search__input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.news-search-bar .wp-block-search__button {
  width: 58px;
  min-width: 58px;
  border: none;
	margin-bottom: 0px;
  border-left: 1px solid var(--bca-card-border);
  background: linear-gradient(135deg, var(--bca-dark-navy) 0%, #0b2a73 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: none !important;
  padding: 0;
}

.news-search-bar .wp-block-search__button:hover {
  background: linear-gradient(135deg, #0a1d5f 0%, #12358a 100%);
}

.news-search-bar .wp-block-search__button:active {
  transform: scale(0.98);
}

.news-search-bar .wp-block-search__button .search-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.news-search-bar .wp-block-search__button:focus {
  outline: none;
  box-shadow: none !important;
}

/*=========================
  BCA - CTA Section 
  =========================*/
.bca-cta {
  padding: 80px 0;
  border-top: 1px solid var(--bca-card-border);
  border-bottom: 1px solid var(--bca-card-border);
  overflow: hidden;
}

.bca-cta.contact {
  background-color: var(--bca-card-bg);
}

.bca-cta.dark {
  background: var(--bca-dark-navy);
}

.bca-cta__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bca-cta__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.bca-cta__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.bca-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bca-cta__image {
  position: relative;
}

.bca-cta__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.bca-cta__image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(13, 27, 62, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bca-cta__image-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bca-secondary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

.bca-cta__image-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

/*=========================
  CTA - 2nd VARIATION
  =========================*/
.bca-cta-var2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.bca-cta-var2__text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--bca-dark-navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.bca-cta-var2__text h2 em { color: var(--bca-primary); }

.bca-cta-var2__text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 580px;
}

/* CTA - 2nd VARIATION (DARK NAVY) */
.bca-cta-var2.dark {
  padding: 80px 0;
  background: var(--bca-dark-navy);
  position: relative;
  overflow: hidden;
}

.bca-cta-var2.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.bca-cta-var2.dark .bca-cta-var2__text .bca-heading__eyebrow { color: rgba(255, 255, 255, 0.6); }
.bca-cta-var2.dark .bca-cta-var2__text h2 { color: var(--white); }
.bca-cta-var2.dark .bca-cta-var2__text h2 em { color: var(--bca-secondary); }
.bca-cta-var2.dark .bca-cta-var2__text p { color: rgba(255, 255, 255, 0.52); }


/*=========================
  CONTACT FORM 7
  =========================*/  

.bca-form-card {
  background: var(--white);
  border: 1px solid var(--bca-dark-border);
  padding: 32px;
}

.bca-form-section {
  margin-bottom: 28px;
}

.bca-form-section__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--bca-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bca-form-section__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bca-dark-border);
}

.bca-form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--bca-dark-navy);
  margin-bottom: 6px;
}

.bca-form-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.bca-form-card > p span {
  color: var(--bca-primary);
  font-weight: 700;
}

.bca-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.bca-form-row--full {
  grid-template-columns: 1fr;
}

.bca-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bca-field p, 
.bca-field input, 
.bca-form-submit p, 
.bca-form-submit input,
.bca-form-section__label p 
{ margin: 0; }

.bca-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: 0.3px;
}

.bca-field label span { color: var(--bca-primary);margin-left: 2px; }

.bca-field input, .bca-field select, .bca-field textarea {
  padding: 11px 14px;
  resize: vertical;
  border: 1px solid var(--bca-dark-border);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  margin: 0 !important;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.bca-field input:focus, .bca-field select:focus, .bca-field textarea:focus {
  border-color: var(--bca-primary) !important;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
}

.bca-field textarea {
  min-height: 100px;
  height: 100px;
}

.bca-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bca-dark-border);
  flex-wrap: wrap;
}

.bca-form-submit p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

form .bca-form-submit input[type=submit] { font-size: 12px; }

.bca-field .chkbox-grid .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bca-field .chkbox-grid .wpcf7-list-item {
  margin: 0;
}

label:has(> input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--bca-dark-border);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

label:has(> input[type="checkbox"]):hover {
  border-color: #b0c4f5;
  background: rgba(26, 86, 219, 0.03);
}

label > input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--bca-primary);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

label > input[type="checkbox"]:checked {
  background: var(--bca-primary) !important;
  border: none !important;
}

label > input[type="checkbox"] + span {
  font-size: 13px !important;
  color: var(--text) !important;
  line-height: 1.3;
}

/*════════════════════════════════════════
  BCA OFFICES GRID
  ════════════════════════════════════════ */
.bca-offices {
  padding: 70px 0;
  background: var(--bca-card-bg);
}

.bca-offices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bca-office-card {
  background: var(--white);
  border: 1px solid var(--bca-dark-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, var(--reveal-transition);
}

.bca-office-card:hover {
  box-shadow: 0 24px 64px rgba(13, 27, 62, 0.12);
  transform: translateY(-5px);
}

.bca-office-card__photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.bca-office-card__photo img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bca-office-card:hover .bca-office-card__photo img {
  transform: scale(1.05);
}

.bca-office-card__type {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  background: var(--bca-primary);
  padding: 4px 12px;
  border-radius: 3px;
}

.bca-office-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 62, 0.65) 0%, transparent 60%);
}

.bca-office-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bca-office-card__name {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--bca-font-heading);
  color: var(--bca-dark-navy);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.bca-office-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
}

.bca-office-card__desc b { color: black; }

.bca-office-card__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--bca-dark-border);
  border-bottom: 1px solid var(--bca-dark-border);
  margin-bottom: 22px;
}

.bca-office-card__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.bca-office-card__detail a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.bca-office-card__detail:hover a { color: var(--bca-primary); }

.bca-office-card__detail svg {
  width: 14px;
  height: 14px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}

.bca-office-card__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bca-office-card__btns .bca-btn-primary { box-shadow: none !important; }

.bca-office-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  color: var(--bca-dark-navy);
  transition: all 0.22s ease;
  text-align: center;
  background: var(--bca-card-bg);
  border: 1px solid var(--bca-dark-border);
}

.bca-office-card__btn:hover {
  border-color: var(--bca-dark-navy);
  background: var(--bca-dark-navy);
  color: var(--white);
}

.bca-office-card__btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}


/*════════════════════════════════════════
  BCA STICKY CONTACT SIDEBAR
  ════════════════════════════════════════ */
.bca-contact-sidebar {
  display: flex; 
  flex-direction: column; 
  gap: 20px;
  position: sticky; 
  top: var(--header-h);
}

.bca-sidebar-card {
  background: var(--white); 
  border: 1px solid var(--bca-dark-border);
  border-radius: var(--border-radius); 
  overflow: hidden;
}

.bca-sidebar-card__head {
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--bca-dark-border);
}

.bca-sidebar-card__head h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  color: var(--bca-dark-navy);
}

.bca-sidebar-card__body { padding: 18px 22px; }

.bca-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bca-dark-border);
}

.bca-sidebar-item:first-child { padding-top: 0; }

.bca-sidebar-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bca-sidebar-item__icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 2;
}

.bca-sidebar-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.bca-sidebar-item__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--bca-dark-navy);
}

.bca-sidebar-item__value a {
  color: var(--bca-dark-navy);
}

.bca-sidebar-card--dark { background: var(--bca-dark-navy); border-color: transparent; }
.bca-sidebar-card--dark .bca-sidebar-card__head { border-bottom-color: rgba(255,255,255,0.08); }
.bca-sidebar-card--dark .bca-sidebar-card__head h3 { color: var(--white); }

/* Contact items in sidebar */
.bca-sidebar-item {
    display: flex; 
    align-items: flex-start; 
    gap: 16px;
    padding: 14px 0; 
    border-bottom: 1px solid var(--bca-dark-border);
}
.bca-sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.bca-sidebar-item:first-child { padding-top: 0; }

.bca-sidebar-item__icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(26,86,219,0.08);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bca-sidebar-item__icon svg { width:15px; height:15px; stroke:var(--bca-primary); fill:none; stroke-width:2; }

.bca-sidebar-item__label {
    font-size: 11px; 
    font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 3px;
}
.bca-sidebar-item__value {
    font-size: 14px;
    font-weight: 600; 
    color: var(--bca-dark-navy);
}
.bca-sidebar-item__value a { transition: color 0.2s ease; }
.bca-sidebar-item__value a:hover { color: var(--bca-primary); }

/* BCA WHY LIST */
.bca-why-list { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  margin: 0;
}

.bca-why-list li {
  display: flex; 
  align-items: flex-start;
  gap: 12px;
  font-size: 14px; 
  color: rgba(255,255,255,0.65); 
  line-height: 1.55;
  margin-bottom: 0;
}

.bca-why-list li svg { 
  width:14px; 
  height:14px; 
  stroke:var(--bca-secondary); 
  fill:none; 
  stroke-width:2.5; 
  flex-shrink:0; 
  margin-top:2px; 
}

/*=========================
  BCA FAQ
  ========================= */

.bca-faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: start;
}

.bca-faq__inner-left p { color: var(--bca-text-desc); font-size: 15px; }

/* Accordion */
.bca-faq__item {
  border-bottom: 1px solid var(--bca-dark-border);
  border-left: 1px solid var(--bca-dark-border);
  border-right: 1px solid var(--bca-dark-border);
  background: #FFFFFF;
}

.bca-faq__item:first-child {
  border-top: 1px solid var(--bca-dark-border);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.bca-faq__item {
  border-bottom: 1px solid var(--bca-card-border);
  background: #f7f9fcd6;
  border-left: 0px;
  border-right: 0px;
}

.bca-faq__item:first-child { border-top: 0px; }
.bca-faq__item:last-child { border-bottom: 0px; }

.bca-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  color: black;
  transition: color var(--transition);
}

.bca-faq__question:hover { color: var(--bca-primary); }

.bca-faq__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--bca-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.bca-faq__chevron svg {
  width: 12px; 
  height: 12px;
  stroke: var(--bca-navy); 
  fill: none; 
  stroke-width: 2.5;
  transition: transform var(--transition), stroke var(--transition);
}

.bca-faq__item.open .bca-faq__chevron {
  background: var(--bca-primary);
  border-color: var(--bca-primary);
}

.bca-faq__item.open .bca-faq__chevron svg {
  stroke: white;
  transform: rotate(180deg);
}

.bca-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.28s ease;
}

.bca-faq__item.open .bca-faq__answer {
  max-height: 400px;
}

.bca-faq__answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--bca-text-desc);
}

.btn-wrapper {
  padding-top: 20px; 
}


/*=========================
  RESPONSIVENESS
  ========================= */
@media (max-width: 1296px) {
  .bca-hero__container { padding: 0px 48px; }
}

@media (max-width: 1138px) {
  .bca-offices__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .bca-hero { padding: 120px 0 90px; }
  .bca-hero__container { width: 100%;padding: 0px 48px;}
  .bca-hero__content-grid { grid-template-columns: 1fr; gap: 35px; }
  .bca-hero__card { max-width: 100%; }
  .bca-hero__text { width: 75%;font-size: 18px;line-height: 30px; }
  .bca-contact-sidebar { position: static; }
  .bca-cta-var2__text p { max-width: 100%; }
  .bca-faq__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .bca-cta { padding: 60px 0; }
  .bca-cta__inner { grid-template-columns: 1fr;gap: 48px; }
  .bca-cta__image img { height: 340px; }
}

@media (max-width: 767px) {
  .bca-hero { min-height: 70vh;padding: 110px 0 50px;}
  .bca-hero__content-grid { padding: 110px 0 0; }
  .bca-hero__content,
  .bca-hero__text { width: 100%;max-width: 100%;}
  .bca-hero__eyebrow { font-size: 13px; }
  .bca-hero__title { font-size: 38px;line-height: 1.08; }
  .bca-hero__text { margin-top: 14px;font-size: 17px;line-height: 28px; }
  .bca-hero__bottom { display: none; }

  .bca-sectors-heading-section { padding: 50px 15px; }
  .bca-sectors-heading-title { margin: 18px 0; }
  .bca-offices__grid { grid-template-columns: 1fr; }
  .bca-form-row { grid-template-columns: 1fr; }
  .bca-field .chkbox-grid .wpcf7-checkbox { grid-template-columns: 1fr; }

  .news-search-bar .wp-block-search__input {
    height: 52px;
    font-size: 14px;
    padding: 0 16px;
  }

  .news-search-bar .wp-block-search__button {
    width: 54px;
    min-width: 54px;
    height: 52px;
  }
}

@media (max-width: 624px) {
  .bca-heading-section.left-align { flex-flow: column; }
}

@media (max-width: 540px) {
  .bca-cta__inner { padding: 0 20px; }
  .bca-cta__btns { flex-direction: column;width: 100%; }
  .bca-hero__btns { flex-direction: column; }
}

@media (max-width: 398px) {
    .bca-office-card__btns { grid-template-columns: 1fr; }
}
