html {
  scroll-behavior: smooth;
}

.menu-inner-modal {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.service-page {
  --service-nav-height: 110px;
  --service-tabs-height: 64px;
}

.service-page .navstatic {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: #0d0d0d;
}

.service-page .main-content {
  padding-top: calc(var(--service-nav-height) + var(--service-tabs-height) + 8px);
}

.service-page .service-tabs {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.service-page .service-faq .faq-heading {
  color: #000000;
}

.service-page .service-faq .paragraph-18 {
  color: #000000;
}

.service-page .service-faq .faq-answer {
  overflow: hidden;
}

.service-hero {
  padding: 24px 0 32px;
}

.service-intro {
  max-width: 980px;
  margin: 0 auto;
}

.service-intro p {
  margin-bottom: 18px;
}

.service-tabs {
  position: fixed;
  top: var(--service-nav-height);
  left: 0;
  right: 0;
  height: var(--service-tabs-height);
  z-index: 999;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-tabs .tab-list {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
  padding: 12px 16px;
}

.service-tab {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.service-tab.active {
  background: var(--brand--color--orange);
  color: #000000;
  border-color: var(--brand--color--orange);
}

.service-section {
  padding: 64px 0;
}

.section-content {
  max-width: 980px;
  margin: 0 auto;
}

.service-section h2 {
  margin-bottom: 18px;
}

.service-section p {
  margin-bottom: 16px;
}

.service-faq-item {
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 18px;
}

.service-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 12px 0;
  position: relative;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  line-height: 1;
  color: var(--brand--color--orange);
}

.service-faq-item[open] summary::after {
  content: "−";
}

.service-faq-answer {
  padding-bottom: 14px;
}

@media (max-width: 991px) {
  .service-page {
    --service-nav-height: 92px;
    --service-tabs-height: 60px;
  }

  .service-hero {
    padding-top: 20px;
  }

  .service-section {
    padding: 48px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* Smooth accordion animation */
.service-faq .faq-answer{
  overflow: hidden;
  height: 0px;
  transition: height 250ms ease;
}

/* OPEN state => show "-" by hiding vertical line */
.service-faq .faq-accordion.is-open .accordion-vertical-line,
.service-faq .accordion-icon.open .accordion-vertical-line{
  opacity: 0;
}

