/* ============================================================
   SHARED SERVICE PAGE STYLES
   Sidebar, layout, banner, hexagonal mask
   ============================================================ */

/* ── SERVICE DETAILS SECTION ── */
.service-details {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 100px;
  overflow: hidden;
}
.service-details__content {
  padding-left: 30px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .service-details__content {
    padding-left: 0;
    padding-right: 0;
  }
  /* Remove sticky on mobile so sidebar doesn't float inside scroll context */
  .service-sidebar__category.sticky {
    position: static;
  }
}
@media (max-width: 640px) {
  /* Reduce section padding on phones */
  .service-details {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}

/* ── SIDEBAR BACKGROUND ── */
.service-sidebar {
  position: relative;
  z-index: 0;
}
.service-sidebar::before {
  content: "";
  display: block;
  position: absolute;
  top: -200px;
  bottom: -550px;
  z-index: -1;
  width: 5000px;
  left: auto;
  right: 0;
  background-color: #eff2f6;
}
@media (max-width: 991px) {
  .service-sidebar::before { display: none; }
  .service-sidebar { padding-bottom: 70px; }
}
@media (max-width: 425px) {
  .service-sidebar { padding-bottom: 0; }
}

/* ── SIDEBAR MENU ITEMS ── */
.service-sidebar__category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-sidebar__category-list li {
  margin-bottom: 10px;
  display: block;
  line-height: 1.4;
}
.service-sidebar__category-list li a {
  display: block;
  padding: 12px 20px;
  position: relative;
  background-color: #fff;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s linear;
  border: 1px solid #dce4ed;
  color: #0c2139;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.service-sidebar__category-list li a::before {
  content: "";
  width: 5px;
  left: -1px;
  bottom: 50%;
  background: #004aa1;
  height: 0;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
  z-index: 1;
}
.service-sidebar__category-list li a .chevron {
  font-style: normal;
  font-weight: 700;
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 13px;
  color: #0c2139;
}
.service-sidebar__category-list li a.active,
.service-sidebar__category-list li a:hover,
.service-sidebar__category-list li.active a {
  color: #dbb481;
}
.service-sidebar__category-list li a.active::before,
.service-sidebar__category-list li a:hover::before,
.service-sidebar__category-list li.active a::before {
  height: 100%;
  bottom: 0;
}

/* ── HEXAGONAL MASK ── */
.mask {
  position: relative;
  -webkit-mask: url(/images/shape/mask-18.svg) 50%/100% no-repeat;
  mask: url(/images/shape/mask-18.svg) 50%/100% no-repeat;
}

/* ── PAGE BANNER ── */
.service-page-banner {
  position: relative;
  overflow: hidden;
  height: 260px;
  min-height: 200px;
}
@media (max-width: 640px) {
  .service-page-banner {
    height: 180px;
    min-height: 160px;
  }
}
.service-page-banner__overlay {
  background: linear-gradient(to bottom, rgba(10,25,47,0.25) 0%, rgba(10,25,47,0.45) 100%);
}
