/* ============================================================
   BariHomeCare – Theme Styles
   ============================================================ */

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; margin: 0 !important; padding: 0 !important; }

/* ── Section backgrounds (consistent site-wide) ───────────── */
:root {
  --bhc-section-white: #ffffff;
  --bhc-section-mint: #eaf7f5;
}
.bhc-section-bg-white { background-color: var(--bhc-section-white); }
.bhc-section-bg-mint { background-color: var(--bhc-section-mint); }

/* ── Top-bar & Nav ───────────────────────────────────────── */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 8px;
  width: 0; height: 2px; background: #f5a623;
  transition: width .3s ease; border-radius: 1px;
}
.nav-link:hover::after,
.nav-link.nav-active::after { width: calc(100% - 16px); }
.nav-link.nav-active { color: #2db5a3; font-weight: 600; }
/* WordPress current-menu-item class support */
.primary-nav .current-menu-item > a { color: #2db5a3; font-weight: 600; }
.primary-nav .current-menu-item > a::after { width: calc(100% - 16px); }

/* Desktop dropdown – JS-controlled */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
  position: absolute; top: 100%; left: 50%;
  margin-top: 2px;
  background: #fff; border-radius: 12px;
  min-width: 200px; padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  border: 1px solid #f0f0f0; z-index: 200;
}
.dropdown-menu.open {
  display: block; opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 11px 20px;
  font-size: 13px; color: #374151;
  transition: background .15s, color .15s; white-space: nowrap;
}
.dropdown-menu a:hover { background: #eaf7f5; color: #2db5a3; }
.dropdown.active > button { color: #2db5a3; }
.dropdown button .fa-chevron-down { transition: transform .2s ease; }

/* ── Page Banner ──────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(155deg, #1a8a7a 0%, #0d5f55 100%);
}

/* ── Card Hover ───────────────────────────────────────────── */
.card-hover { transition: transform .3s ease, box-shadow .3s ease; }
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45,181,163,.18);
}

/* ── Section Headers (full-width centered) ─────────────────── */
.bhc-section-header {
  width: 100%;
  max-width: none;
  margin-bottom: 3.5rem;
  text-align: center;
}
.bhc-section-header--compact {
  margin-bottom: 3rem;
}
.bhc-section-header__label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2db5a3;
  line-height: 1.4;
}
.bhc-section-header__label--center {
  text-align: center;
}
.bhc-section-header__title {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
}
.bhc-section-header__title:last-child {
  margin-bottom: 0;
}
.bhc-section-header__intro {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #6b7280;
}
@media (min-width: 640px) {
  .bhc-section-header__intro {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.bhc-section-header--compact .bhc-section-header__title {
  margin-bottom: 0.75rem;
}
.bhc-section-header--compact .bhc-section-header__title:last-child {
  margin-bottom: 0;
}
.bhc-section-header--left {
  text-align: left;
  margin-bottom: 2rem;
}
.bhc-section-header--left .bhc-section-header__intro {
  margin-left: 0;
  margin-right: 0;
}

/* ── About History (centered story block) ─────────────────── */
.bhc-about-history {
  padding: 5rem 1.5rem;
  text-align: center;
}
.bhc-about-history__inner {
  max-width: 52rem;
  margin: 0 auto;
}
.bhc-about-history__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
}
.bhc-about-history__text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #5f6b6a;
}
.bhc-about-history__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
}
.bhc-about-history__more.is-open {
  max-height: 40rem;
  opacity: 1;
}
.bhc-about-history__more .bhc-about-history__text {
  margin-top: 0;
}
.bhc-about-history__btn {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.8rem 2.25rem;
  border: 0;
  border-radius: 4px;
  background: #0d2b29;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.bhc-about-history__btn:hover,
.bhc-about-history__btn:focus-visible {
  background: #1a5c54;
  color: #fff;
  outline: none;
}
.bhc-about-history__btn.is-expanded {
  background: #2db5a3;
}
.bhc-about-history__btn.is-expanded:hover,
.bhc-about-history__btn.is-expanded:focus-visible {
  background: #1e9485;
}

/* About — Mission, Vision & Values cards (centered row) */
.bhc-about-mv-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
}
.bhc-about-mv-card {
  width: 100%;
  max-width: none;
}
.bhc-about-mv-heading {
  text-align: center;
  margin: 0 0 1.25rem;
}
.bhc-about-mv-text {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #6b7280;
}

/* ── Services page: alternating image / text sections ─────── */
.bhc-service-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.bhc-service-feature__media {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #eaf7f5;
  min-height: 240px;
}
.bhc-service-feature__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
}
.bhc-service-feature__content {
  padding: 0.25rem 0;
}
.bhc-service-feature__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #eaf7f5;
  color: #2db5a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.bhc-service-feature__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #1f2937;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.bhc-service-feature__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin: 0 0 1.5rem;
}
.bhc-service-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2db5a3;
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.bhc-service-feature__link:hover {
  gap: 0.75rem;
  color: #1e9485;
}
@media (min-width: 768px) {
  .bhc-service-feature {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .bhc-service-feature__img {
    min-height: 320px;
  }
  .bhc-service-feature--reverse .bhc-service-feature__media {
    order: 2;
  }
  .bhc-service-feature--reverse .bhc-service-feature__content {
    order: 1;
  }
  .bhc-service-feature__content {
    padding: 1rem 0;
  }
}

/* ── Service Number Cards ─────────────────────────────────── */
.service-num {
  position: absolute; top: 16px; right: 16px;
  font-size: 36px; font-weight: 900; line-height: 1;
  color: rgba(45,181,163,.12); font-family: 'Inter', sans-serif;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(45,181,163,.22); }

/* ── Home Services Carousel ──────────────────────────────── */
.home-services-carousel.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.home-services-carousel.owl-carousel .owl-item {
  display: flex;
  height: auto;
}
.home-services-carousel .item {
  display: flex;
  width: 100%;
  padding: 2px 0 8px;
}
.home-services-carousel .service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}
.home-services-carousel .service-card-media {
  flex-shrink: 0;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px 12px;
}
.home-services-carousel .service-card-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.home-services-carousel .service-card-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-services-carousel .service-card > p {
  flex: 1 1 auto;
}
.home-services-carousel .service-card > a {
  margin-top: auto;
}

/* ── What We Offer (offer cards) ───────────────────────────────────────── */
.bhc-offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  max-width: 72rem;
  margin: 0 auto;
}
.bhc-offer-grid__item {
  grid-column: span 2;
  display: flex;
  min-width: 0;
}
.bhc-offer-grid__item .bhc-offer-card {
  width: 100%;
}
/* Row 1: 3 items | Row 2: 2 items centered */
.bhc-offer-grid__item:nth-child(4) {
  grid-column: 2 / span 2;
}
.bhc-offer-grid__item:nth-child(5) {
  grid-column: 4 / span 2;
}
/* Single item on last row when only 4 total */
.bhc-offer-grid__item:nth-child(4):last-child {
  grid-column: 3 / span 2;
}
/* Two items total — centered pair */
.bhc-offer-grid__item:nth-child(1):nth-last-child(2) {
  grid-column: 2 / span 2;
}
.bhc-offer-grid__item:nth-child(2):last-child {
  grid-column: 4 / span 2;
}
/* One item — centered */
.bhc-offer-grid__item:only-child {
  grid-column: 3 / span 2;
}
@media (max-width: 1024px) {
  .bhc-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 40rem;
  }
  .bhc-offer-grid__item,
  .bhc-offer-grid__item:nth-child(4),
  .bhc-offer-grid__item:nth-child(5),
  .bhc-offer-grid__item:nth-child(4):last-child,
  .bhc-offer-grid__item:nth-child(1):nth-last-child(2),
  .bhc-offer-grid__item:nth-child(2):last-child,
  .bhc-offer-grid__item:only-child {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .bhc-offer-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 20rem;
  }
}
.bhc-offer-section__slider-wrap {
  position: relative;
  padding: 0 3rem;
  overflow: visible;
}
.bhc-offer-carousel.owl-carousel {
  position: relative;
}
.bhc-offer-carousel .item {
  display: flex;
  height: 100%;
  padding: 0;
}
.bhc-offer-carousel.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.bhc-offer-carousel.owl-carousel .owl-item {
  display: flex;
  height: auto;
}
.bhc-offer-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 1rem 0 1rem 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}
.bhc-offer-card__media {
  position: relative;
  min-height: 10.5rem;
  overflow: hidden;
  border-radius: 1rem 0 0 0;
}
.bhc-offer-card__image {
  display: block;
  width: 100%;
  height: 10.5rem;
  object-fit: cover;
  object-position: center;
}
.bhc-offer-card__image--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #2db5a3;
}
.bhc-offer-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.58) 100%);
}
.bhc-offer-card__media-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  z-index: 1;
}
.bhc-offer-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.25rem;
}
.bhc-offer-card__desc {
  margin: 0 0 1rem;
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6b7280;
}
.bhc-offer-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.65rem 1.1rem;
  border-radius: 0.375rem;
  background: #2db5a3;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease;
}
.bhc-offer-card__btn:hover {
  background: #1e9485;
  color: #fff;
}
.bhc-offer-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
  display: block !important;
  z-index: 3;
}
.bhc-offer-carousel.owl-carousel .owl-nav.disabled {
  display: block !important;
}
.bhc-offer-carousel.owl-carousel .owl-nav button.owl-prev,
.bhc-offer-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff !important;
  color: #374151 !important;
  pointer-events: auto;
}
.bhc-offer-carousel.owl-carousel .owl-nav .bhc-offer-nav-icon {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 300;
}
.bhc-offer-carousel.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.bhc-offer-carousel.owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.bhc-offer-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.bhc-offer-carousel.owl-carousel .owl-nav button.owl-next:hover {
  background: #2db5a3 !important;
  border-color: #2db5a3 !important;
  color: #fff !important;
}
.bhc-offer-carousel.owl-carousel .owl-nav button.disabled {
  opacity: 0.35;
}
@media (max-width: 640px) {
  .bhc-offer-section__slider-wrap {
    padding: 0 2.5rem;
  }
}

/* ── Services Page Grid ───────────────────────────────────── */
.services-grid {
  align-items: stretch;
}
.services-grid-item {
  display: flex;
}
.services-grid-item .service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}
.services-grid-item .service-card > p {
  flex: 1 1 auto;
}
.services-grid-item .service-card > a {
  margin-top: auto;
}
.services-grid-item .service-card-media {
  flex-shrink: 0;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px 12px;
}
.services-grid-item .service-card-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.services-grid-item .service-card-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Why Choose Us Grid ───────────────────────────────────── */
.why-choose-grid {
  align-items: stretch;
}
.why-choose-grid-item {
  display: flex;
}
.why-choose-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.why-choose-card > p {
  flex: 1 1 auto;
}

/* ── How We Work Steps ────────────────────────────────────── */
.how-we-work-steps {
  position: relative;
}
@media (min-width: 1024px) {
  .how-we-work-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(229, 231, 235, 0) 0%,
      rgba(229, 231, 235, 0.35) 12%,
      #e5e7eb 28%,
      #e5e7eb 72%,
      rgba(229, 231, 235, 0.35) 88%,
      rgba(229, 231, 235, 0) 100%
    );
    z-index: 0;
  }
}
.how-we-work-step {
  position: relative;
  z-index: 1;
}
.how-we-work-step-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.how-we-work-step-icon {
  width: 4rem;
  height: 4rem;
  background: #2db5a3;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-we-work-step-num {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1.35rem;
  height: 1.35rem;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-services-carousel .owl-nav {
  margin-top: 16px !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.home-services-carousel .owl-nav button.owl-prev,
.home-services-carousel .owl-nav button.owl-next {
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
  border: 1px solid #d1d5db !important;
  background: #fff !important;
  color: #374151 !important;
  margin: 0 !important;
}
.home-services-carousel .owl-nav button.owl-prev:hover,
.home-services-carousel .owl-nav button.owl-next:hover {
  background: #2db5a3 !important;
  border-color: #2db5a3 !important;
  color: #fff !important;
}

/* ── Hero Slider ──────────────────────────────────────────── */
.hero-slider {
  min-height: calc(100vh - 94px);
}
.hero-slider-carousel,
.hero-slider-carousel .owl-stage-outer,
.hero-slider-carousel .owl-stage,
.hero-slider-carousel .owl-item,
.hero-slider-carousel .item,
.hero-slide {
  min-height: calc(100vh - 94px);
}
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 43, 41, 0.84) 0%,
    rgba(13, 43, 41, 0.62) 42%,
    rgba(13, 43, 41, 0.28) 100%
  );
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  padding: 4.5rem 0;
  --hero-text-duration: 0.8s;
}
.hero-slide__title,
.hero-slide__subtitle,
.hero-slide__cta {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity var(--hero-text-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--hero-text-duration) cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide__content.is-animated .hero-slide__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.1s;
}
.hero-slide__content.is-animated .hero-slide__subtitle {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.25s;
}
.hero-slide__content.is-animated .hero-slide__cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.4s;
}
.hero-slide__content:not(.is-animated) .hero-slide__title,
.hero-slide__content:not(.is-animated) .hero-slide__subtitle,
.hero-slide__content:not(.is-animated) .hero-slide__cta {
  transition-delay: 0s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide__title,
  .hero-slide__subtitle,
  .hero-slide__cta {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}
.hero-slide__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.hero-slide__subtitle {
  margin: 0 0 2rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}
.hero-slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    opacity var(--hero-text-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--hero-text-duration) cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
button.hero-slide__cta {
  appearance: none;
}
.hero-slide__cta:hover {
  background: rgba(45, 181, 163, 0.35);
  border-color: rgba(45, 181, 163, 0.65);
  color: #fff;
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}
.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  position: absolute;
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  pointer-events: auto;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-slider .owl-nav button.owl-prev {
  left: 1rem;
}
.hero-slider .owl-nav button.owl-next {
  right: 1rem;
}
.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background: rgba(45, 181, 163, 0.45) !important;
  border-color: rgba(45, 181, 163, 0.75) !important;
  color: #fff !important;
}
.hero-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  margin: 0 !important;
}
.hero-slider .owl-dot span {
  background: rgba(255, 255, 255, 0.45) !important;
}
.hero-slider .owl-dot.active span {
  background: #2db5a3 !important;
}

/* ── Stats Bar (below hero slider) ─────────────────────────────────────── */
.bhc-stats-bar {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf7 55%, #e8f4ef 100%);
  border-bottom: 1px solid rgba(45, 181, 163, 0.12);
}
.bhc-stats-bar__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3rem;
}
.bhc-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .bhc-stats-bar__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.bhc-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bhc-stats-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: #2db5a3;
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(45, 181, 163, 0.22);
}
.bhc-stats-bar__value {
  margin: 0 0 0.35rem;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.01em;
}
.bhc-stats-bar__caption {
  margin: 0;
  max-width: 11rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #6b7280;
  font-weight: 500;
}

/* ── Insurance Partners Bar (below hero) ───────────────────────────────── */
.bhc-insurance-partners {
  background: #141b2d;
  color: #fff;
}
.bhc-insurance-partners__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2.5rem;
}
.bhc-insurance-partners__heading {
  margin: 0 0 1.75rem;
  width: 100%;
  text-align: center;
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: #b8d96e;
  letter-spacing: 0.01em;
}
.bhc-insurance-partners__slider-wrap {
  position: relative;
  padding: 0 3rem;
  overflow: visible;
}
.bhc-insurance-partners__carousel.owl-carousel {
  position: relative;
}
.bhc-insurance-partners__carousel .owl-stage-outer {
  overflow: hidden;
}
.bhc-insurance-partners__carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
}
.bhc-insurance-partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.5rem;
  padding: 0 0.5rem;
}
.bhc-insurance-partners__logo {
  display: block;
  max-width: min(100%, 11rem);
  max-height: 3.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.bhc-insurance-partners__text {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
  display: block !important;
  z-index: 3;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav.disabled {
  display: block !important;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-prev,
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent !important;
  color: #fff !important;
  font-size: 2rem;
  line-height: 1;
  pointer-events: auto;
  opacity: 0.95;
  z-index: 3;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav .bhc-insurance-nav-icon {
  display: block;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-prev:hover,
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-next:hover {
  opacity: 1;
  background: transparent !important;
  color: #b8d96e !important;
}
.bhc-insurance-partners__carousel.owl-carousel .owl-nav button.disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 640px) {
  .bhc-insurance-partners__slider-wrap {
    padding: 0 2.5rem;
  }
  .bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-prev,
  .bhc-insurance-partners__carousel.owl-carousel .owl-nav button.owl-next {
    width: 2rem;
    height: 2rem;
    font-size: 1.75rem;
  }
  .bhc-insurance-partners__carousel.owl-carousel .owl-nav .bhc-insurance-nav-icon {
    font-size: 1.85rem;
  }
}

/* ── Testimonial Slider ───────────────────────────────────── */
.slider-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }

/* ── Owl Carousel Custom Styling ──────────────────────────── */
/* Ensure slider is visible before Owl Carousel initializes */
#testimonialSlider {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1.5rem;
}

#testimonialSlider .item {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  #testimonialSlider .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Owl Carousel overrides after initialization */
#testimonialSlider.owl-carousel {
  display: flex !important;
  width: 100%;
}

#testimonialSlider.owl-loaded {
  display: block !important;
}

#testimonialSlider.owl-carousel .item {
  flex: initial;
  max-width: none;
}

#testimonialSlider .owl-stage-outer {
  overflow: hidden;
}

#testimonialSlider .testimonial-avatar,
#testimonialSlider.owl-carousel .owl-item img.testimonial-avatar {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  min-width: 44px !important;
  display: block !important;
  flex-shrink: 0;
}

#testimonialSlider .owl-nav button.owl-prev,
#testimonialSlider .owl-nav button.owl-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid #e5e7eb !important;
  background: #fff !important;
  color: #6b7280 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  z-index: 5 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12) !important;
}

#testimonialSlider .owl-nav button.owl-prev {
  left: 16px !important;
}

#testimonialSlider .owl-nav button.owl-next {
  right: 16px !important;
}

#testimonialSlider .owl-nav button.owl-prev:hover,
#testimonialSlider .owl-nav button.owl-next:hover {
  background: #2db5a3 !important;
  border-color: #2db5a3 !important;
  color: #fff !important;
}

#testimonialSlider .owl-dots {
  text-align: center !important;
  margin-top: 32px !important;
}
#testimonialSlider .owl-dots span {
  display: none !important;
}

#testimonialSlider .owl-dots .owl-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #d1d5db !important;
  display: inline-block !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  outline: none !important;
  opacity: .75;
}

#testimonialSlider .owl-dots .owl-dot.active {
  width: 24px !important;
  height: 10px !important;
  border-radius: 5px !important;
  background: #2db5a3 !important;
  display: inline-block !important;
  opacity: 1;
}

@media (max-width: 1280px) {
  #testimonialSlider .owl-nav button.owl-prev,
  #testimonialSlider .owl-nav button.owl-next {
    display: none !important;
  }
}

/* ── Dark testimonial spotlight slider ───────────────────── */
#testimonialSpotlightSlider .owl-item img.bhc-testimonial-spotlight-avatar,
#testimonialSpotlightSlider.owl-carousel .owl-item img.bhc-testimonial-spotlight-avatar,
.bhc-testimonial-spotlight-avatar {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  min-width: 48px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  display: block !important;
  flex-shrink: 0 !important;
}

#testimonialSpotlightSlider .owl-nav {
  margin-top: 20px !important;
  text-align: center;
}
#testimonialSpotlightSlider .owl-nav button.owl-prev,
#testimonialSpotlightSlider .owl-nav button.owl-next {
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
  margin: 0 6px !important;
  position: static !important;
}
#testimonialSpotlightSlider .owl-nav button.owl-prev:hover,
#testimonialSpotlightSlider .owl-nav button.owl-next:hover {
  background: #2db5a3 !important;
  border-color: #2db5a3 !important;
}
#testimonialSpotlightSlider .owl-dots {
  margin-top: 14px !important;
  text-align: center;
}
#testimonialSpotlightSlider .owl-dot span {
  background: rgba(255, 255, 255, .35) !important;
}
#testimonialSpotlightSlider .owl-dot.active span {
  background: #2db5a3 !important;
}

/* ── Fade-in Animation ────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp .7s ease forwards;
  animation-play-state: paused;
}
.fade-in.animated { animation-play-state: running; }

/* ── Blog Card ────────────────────────────────────────────── */
.blog-img { transition: transform .5s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }

/* ── Benefit Item ────────────────────────────────────────── */
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 12px; transition: background .2s;
}
.benefit-item:hover { background: #eaf7f5; }

/* ── Sister Concern / logo strip (home) ───────────────────── */
/* .partner-logo { filter: grayscale(100%) opacity(.45); transition: filter .3s; } */
/* .partner-logo:hover { filter: grayscale(0%) opacity(1); } */

/* ── Progress Bar ─────────────────────────────────────────── */
.progress-bar { transition: width 1.2s ease-in-out; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #2db5a3; border-radius: 3px; }

/* ── FAQ accordion ────────────────────────────────────────── */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details[open] .fa-chevron-down { transform: rotate(180deg); }
.fa-chevron-down { transition: transform .25s ease; }

/* ── WordPress specific resets ───────────────────────────── */
.site { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

/* ── Form fields ──────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Appointment/Donation Admin ───────────────────────────── */
.bhc-status-new       { background: #dbeafe; color: #1e40af; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.bhc-status-contacted { background: #fef3c7; color: #92400e; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.bhc-status-confirmed { background: #d1fae5; color: #065f46; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.bhc-status-completed { background: #ede9fe; color: #4c1d95; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.bhc-status-cancelled { background: #fee2e2; color: #991b1b; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }

@media (max-width: 640px) {
  .page-banner h1 { font-size: 2rem !important; }
}

/* Appointment form field consistency */
#appointment #appt_name,
#appointment #appt_email,
#appointment #appt_service {
  border-radius: 20px !important;
  padding: 0 15px !important;
}

/* Contact form field padding */
#contactForm .bhc-contact-input,
#contactForm textarea {
  box-sizing: border-box;
  padding: 1rem 1.25rem !important;
  border-radius: 1rem !important;
}

#contactForm .bhc-contact-input {
  min-height: 3.5rem;
  line-height: 1.5;
}

/* Single post comments area */
.single-post .comments-area {
  margin-top: 28px;
  background: #ffffff;
  border: 1px solid #e6f3f1;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(13, 43, 41, 0.08);
}

.single-post .comments-title,
.single-post .comment-reply-title {
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #0f172a;
  margin: 0 0 14px;
}

.single-post .comment-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.single-post .comment-list > li.comment {
  background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
  border: 1px solid #d7efeb;
  border-radius: 18px;
  padding: 16px 16px 14px;
  margin: 0 0 14px;
}

.single-post .comment-author .avatar {
  border-radius: 999px;
  border: 2px solid #d4f2ee;
}

.single-post .comment-author .fn {
  color: #0f172a;
  font-weight: 700;
}

.single-post .comment-metadata a {
  color: #2db5a3;
  font-size: 0.85rem;
}

.single-post .comment-content p {
  color: #4b5563;
  line-height: 1.75;
  margin: 10px 0 0;
}

.single-post .comment-reply-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #bde8e2;
  color: #0d7568;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.single-post .comment-reply-link:hover {
  background: #2db5a3;
  border-color: #2db5a3;
  color: #ffffff;
}

.single-post .comment-respond {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #f7fcfb;
  border: 1px solid #d9efeb;
}

.single-post .comment-form-comment label,
.single-post .comment-form-author label,
.single-post .comment-form-email label,
.single-post .comment-form-url label {
  display: inline-block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
}

.single-post .comment-form textarea,
.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="url"] {
  width: 100%;
  border: 1px solid #cfece8;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.single-post .comment-form textarea:focus,
.single-post .comment-form input[type="text"]:focus,
.single-post .comment-form input[type="email"]:focus,
.single-post .comment-form input[type="url"]:focus {
  border-color: #2db5a3;
  box-shadow: 0 0 0 4px rgba(45, 181, 163, 0.15);
  transform: translateY(-1px);
}

.single-post .comment-form .form-submit {
  margin-top: 8px;
}

.single-post .comment-form .submit {
  border: 0;
  background: linear-gradient(135deg, #2db5a3 0%, #1f8f82 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(45, 181, 163, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.single-post .comment-form .submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(45, 181, 163, 0.4);
  filter: brightness(1.03);
}

@media (max-width: 640px) {
  .single-post .comments-area {
    padding: 20px 16px;
    border-radius: 18px;
  }
}

/* ── Leadership (President & CEO) ─────────────────────────── */
.leadership-grid {
  align-items: stretch;
}
.leadership-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.leadership-card-content {
  flex: 1 1 auto;
}
.leadership-card-photo {
  width: 180px;
  height: 180px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #eaf7f5;
  border: 1px solid #d1e8e4;
}
.leadership-card-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #eaf7f5;
}
.leadership-card-content p {
  margin: 0 0 1rem;
}
.leadership-card-content p:last-child {
  margin-bottom: 0;
}

/* Header top navbar search field */
#navbar .bhc-site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  height: 100%;
}
#navbar .bhc-site-logo .custom-logo {
  display: block;
  width: auto !important;
  height: 60px !important;
  max-width: min(320px, 48vw);
  max-height: none !important;
  object-fit: contain;
  padding: 5px;
}
@media (min-width: 1024px) {
  #navbar .bhc-site-logo .custom-logo {
    height: 66px !important;
    max-width: 360px;
  }
}

header .bhc-search-form .bhc-search-field,
header .search-form input[type="search"] {
  height: 42px;
  border-radius: 999px !important;
  border: 1px solid #d6ebe7 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(13, 43, 41, 0.08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  box-sizing: border-box;
  padding: 0 2.75rem 0 1.25rem !important;
}

header .bhc-search-form .bhc-search-inner .fa-magnifying-glass {
  right: 1.125rem !important;
}

header .bhc-search-form .bhc-search-field::placeholder,
header .search-form input[type="search"]::placeholder {
  color: #94a3b8;
}

header .bhc-search-form .bhc-search-field:focus,
header .search-form input[type="search"]:focus {
  border-color: #2db5a3 !important;
  box-shadow: 0 0 0 4px rgba(45, 181, 163, 0.16), 0 12px 24px rgba(45, 181, 163, 0.2) !important;
  transform: translateY(-1px);
}

header .bhc-search-form .fa-magnifying-glass {
  color: #2db5a3 !important;
}

/* Single post/sidebar search field + button (widget/classic/block forms) */
.single-post .widget_search form,
.single-post .widget_search .search-form,
.single-post .wp-block-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-post .widget_search input[type="search"],
.single-post .widget_search input[type="text"],
.single-post .wp-block-search__input {
  flex: 1;
  min-height: 44px;
  border-radius: 14px !important;
  border: 1px solid #cfece8 !important;
  background: #fff !important;
  padding: 0 14px !important;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(13, 43, 41, 0.08);
}

.single-post .widget_search input[type="search"]:focus,
.single-post .widget_search input[type="text"]:focus,
.single-post .wp-block-search__input:focus {
  border-color: #2db5a3 !important;
  box-shadow: 0 0 0 4px rgba(45, 181, 163, 0.15), 0 8px 18px rgba(45, 181, 163, 0.2) !important;
  outline: none;
}

.single-post .widget_search input[type="submit"],
.single-post .widget_search button,
.single-post .wp-block-search__button {
  min-height: 44px;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #2db5a3 0%, #1f8f82 100%) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 0 16px !important;
  box-shadow: 0 10px 20px rgba(45, 181, 163, 0.32);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.single-post .widget_search input[type="submit"]:hover,
.single-post .widget_search button:hover,
.single-post .wp-block-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(45, 181, 163, 0.38);
  filter: brightness(1.03);
}

/* Footer newsletter email field */
#newsletterForm #newsletterEmail {
  min-height: 46px;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  padding: 0 14px !important;
  box-shadow: inset 0 0 0 1px rgba(45, 181, 163, 0.08);
}

#newsletterForm #newsletterEmail::placeholder {
  color: #8fa7a3 !important;
}

#newsletterForm #newsletterEmail:focus {
  border-color: #2db5a3 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 0 4px rgba(45, 181, 163, 0.2), 0 10px 22px rgba(6, 24, 22, 0.35) !important;
  outline: none;
}

/* Donation form field shape */
#donationForm input,
#donationForm select,
#donationForm textarea {
  border-radius: 20px !important;
  padding: 15px !important;
}

/* ── Mission Sister Concern Carousel (multi-item horizontal) ─ */
.mission-section-carousel {
  min-width: 0;
  width: 100%;
  margin: 0 auto;
}

#missionSisterCarousel .item {
  height: 100%;
}

.mission-sister-card {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  border-radius: 0;
  padding: 28px 24px 22px;
  cursor: grab;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: box-shadow .2s ease, transform .2s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
}
.mission-sister-card:active {
  cursor: grabbing;
}
.mission-sister-card:hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, .12);
}
.mission-sister-card-media {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: transparent;
}
.mission-sister-card-media img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}
.mission-sister-card-title {
  display: block;
  margin: 0;
  padding: 0 8px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2937;
  text-align: center;
}

#missionSisterCarousel .owl-nav {
  margin-top: 20px !important;
  text-align: center;
}
#missionSisterCarousel .owl-nav button.owl-prev,
#missionSisterCarousel .owl-nav button.owl-next {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid #d1d5db !important;
  background: #fff !important;
  color: #374151 !important;
  margin: 0 6px !important;
  position: static !important;
}
#missionSisterCarousel .owl-nav button.owl-prev:hover,
#missionSisterCarousel .owl-nav button.owl-next:hover {
  background: #2db5a3 !important;
  border-color: #2db5a3 !important;
  color: #fff !important;
}
#missionSisterCarousel .owl-dots {
  margin-top: 14px !important;
  text-align: center;
}
#missionSisterCarousel .owl-dot span {
  background: #cbd5e1 !important;
}
#missionSisterCarousel .owl-dot.active span {
  background: #2db5a3 !important;
}

/* ── Mission Sister Modal ────────────────────────────────── */
.mission-sister-modal.hidden {
  display: none;
}
.mission-sister-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
}
.mission-sister-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .65);
}
.mission-sister-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, .35);
  text-align: center;
}
.mission-sister-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  cursor: pointer;
  z-index: 2;
}
.mission-sister-modal-media {
  padding: 28px 24px 0;
}
.mission-sister-modal-media img {
  width: auto;
  max-width: 100%;
  max-height: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 20px;
}
.mission-sister-modal-content {
  padding: 16px 28px 28px;
}
.mission-sister-modal-content h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}
.mission-sister-modal-content p {
  margin: 0 auto;
  max-width: 48ch;
  color: #4b5563;
  font-size: .975rem;
  line-height: 1.7;
  white-space: pre-line;
  text-align: left;
}
.mission-sister-modal-content #missionSisterModalLink {
  justify-content: center;
}
body.mission-modal-open {
  overflow: hidden;
}

/* ── Slider CTA Inquiry Modal ─────────────────────────────────────────── */
.bhc-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.bhc-inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bhc-inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
}
.bhc-inquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  padding: 2.5rem 2.25rem 2rem;
}
.bhc-inquiry-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
}
.bhc-inquiry-modal__close:hover {
  color: #111827;
}
.bhc-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.bhc-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
}
@media (max-width: 640px) {
  .bhc-inquiry-grid {
    grid-template-columns: 1fr;
  }
  .bhc-inquiry-modal__dialog {
    padding: 2rem 1.25rem 1.5rem;
  }
}
.bhc-inquiry-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #374151;
  text-transform: uppercase;
}
.bhc-inquiry-required {
  color: #dc2626;
  margin-left: 0.15rem;
}
.bhc-inquiry-field input,
.bhc-inquiry-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d1d5db;
  border-radius: 0;
  background: transparent;
  padding: 0.45rem 0 0.55rem;
  font-size: 0.9375rem;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease;
}
.bhc-inquiry-field input::placeholder {
  color: #9ca3af;
}
.bhc-inquiry-field input:focus,
.bhc-inquiry-field select:focus {
  border-bottom-color: #9aaa6a;
}
.bhc-inquiry-field select {
  cursor: pointer;
  color: #6b7280;
}
.bhc-inquiry-field select:valid,
.bhc-inquiry-field select option:not([value=""]) {
  color: #111827;
}
.bhc-inquiry-field input.is-invalid,
.bhc-inquiry-field select.is-invalid {
  border-bottom-color: #dc2626;
}
.bhc-inquiry-error {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #dc2626;
}
.bhc-inquiry-error--global {
  text-align: center;
}
.bhc-inquiry-submit-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.bhc-inquiry-submit {
  min-width: 140px;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 2px;
  background: #a8b574;
  color: #1f2937;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.bhc-inquiry-submit:hover {
  background: #97a566;
}
.bhc-inquiry-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.bhc-inquiry-success {
  text-align: center;
  padding: 2rem 1rem;
}
.bhc-inquiry-success p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #065f46;
}
body.bhc-inquiry-modal-open {
  overflow: hidden;
}
