/* ============================================================
   Shared page banners — matches Contact / About overlay
   ============================================================ */

.ms-page-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0 90px;
}

.ms-page-banner .bg-wrap {
  z-index: 0;
}

.ms-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ms-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 27, 66, 0.96) 0%,
    rgba(0, 45, 105, 0.87) 43%,
    rgba(0, 29, 68, 0.34) 100%
  );
}

.ms-banner-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.ms-page-banner > .container {
  position: relative;
  z-index: 3;
}

.ms-page-banner .bg-parallax-wrap-gradien::before {
  display: none;
}

/* ---- Centered title block (About / Blog / Business) ---- */
.ms-page-banner .section-title.center-align.big-title {
  margin-bottom: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ms-page-banner .section-title.center-align.big-title h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  padding-top: 0;
  text-align: center;
}

.ms-page-banner .section-title.center-align.big-title h2 span {
  color: #ccaa57;
}

.ms-page-banner .section-title.center-align.big-title h4 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ---- Optional stats row (Business page) ---- */
.ms-page-banner-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ms-page-banner-stat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
}

.ms-page-banner-stat i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(204, 170, 87, 0.2);
  color: #ccaa57;
  font-size: 14px;
  flex-shrink: 0;
}

.ms-page-banner-stat strong {
  color: #ffffff;
  font-weight: 700;
}

/* ---- Single article banner ---- */
.ms-page-banner--article {
  padding: 100px 0 82px;
}

.ms-page-banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ms-page-banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ms-page-banner-breadcrumb a:hover {
  color: #ccaa57;
}

.ms-page-banner-breadcrumb i {
  color: #ccaa57;
  font-size: 9px;
}

.ms-page-banner-breadcrumb .current {
  color: #ffffff;
  font-weight: 600;
}

.ms-banner-article-title {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 16px;
}

.ms-banner-article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.ms-banner-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ms-banner-article-meta i {
  color: #ccaa57;
  font-size: 12px;
}

@media (max-width: 767px) {
  .ms-page-banner--article {
    padding: 84px 0 68px;
  }

  .ms-banner-article-title {
    font-size: 1.3rem;
  }

  .ms-banner-article-meta {
    font-size: 12px;
    gap: 8px 14px;
  }
}

/* ---- Single business listing banner ---- */
.ms-page-banner.single-hero-section {
  padding: 110px 0 70px;
}

.ms-page-banner .list-single-opt_header,
.ms-page-banner .list-single-header-item,
.ms-page-banner .list-single-header-footer {
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .ms-page-banner {
    padding: 100px 0 76px;
  }
}

@media (max-width: 767px) {
  .ms-page-banner {
    padding: 88px 0 68px;
  }

  .ms-banner-overlay {
    background: rgba(0, 30, 72, 0.89);
  }

  .ms-banner-pattern {
    opacity: 0.08;
  }

  .ms-page-banner .section-title.center-align.big-title h2 {
    font-size: 1.45rem;
  }

  .ms-page-banner .section-title.center-align.big-title h4 {
    font-size: 14px;
    line-height: 1.65;
  }

  .ms-page-banner-stats {
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
  }
}

@media (max-width: 480px) {
  .ms-page-banner {
    padding: 76px 0 60px;
  }

  .ms-page-banner-stats {
    flex-direction: column;
    align-items: center;
  }
}
