.main-nav a.is-active {
  color: var(--light-gold);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
}

.service-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 120;
  width: 295px;
  display: grid;
  padding: 10px;
  border: 1px solid rgba(240, 215, 122, 0.26);
  border-radius: 8px;
  background: #fff8e8;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .service-dropdown,
.nav-item:focus-within .service-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.service-dropdown a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  color: #5a0000;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible,
.service-dropdown a.is-active {
  background: #6d0000;
  color: var(--light-gold);
}

.service-page {
  background: var(--white);
}

.service-hero {
  position: relative;
  min-height: 175px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #3c0505;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(52, 0, 0, 0.72), rgba(52, 0, 0, 0.54)),
    url("img/contact-banner.webp") center / cover no-repeat;
  filter: saturate(0.82) contrast(1.08);
}

.service-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}

.service-detail {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 42px 0;
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.service-poster {
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.service-poster img {
  width: 100%;
  height: 660px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-copy {
  min-width: 0;
}

.service-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 16px;
  color: #1d222b;
  font-size: 15px;
  font-weight: 800;
}

.service-kicker span {
  width: 42px;
  height: 3px;
  background: #7a0b0b;
}

.service-copy h2 {
  margin: 0 0 20px;
  color: #30343b;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.service-copy h3 {
  margin: 30px 0 12px;
  color: #45484f;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 700;
}

.service-copy p,
.service-copy li {
  color: #3f454d;
  font-size: 15.5px;
  line-height: 1.64;
  text-align: justify;
}

.service-copy p {
  margin: 0 0 18px;
}

.service-copy ul,
.service-copy ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.service-copy li::before {
  content: "\f164";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1268c3;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.service-why {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  min-height: 520px;
  background: #2c0000;
}

.service-why-copy {
  padding: 74px max(40px, calc((100vw - 1240px) / 2 + 4px)) 68px max(40px, calc((100vw - 1240px) / 2 + 4px));
  color: var(--white);
}

.service-why-copy h2 {
  margin: 0 0 58px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 800;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 54px;
}

.service-feature-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
}

.service-feature-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 31px;
}

.service-feature-grid h3 {
  grid-column: 2;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.service-feature-grid p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.72;
}

.service-why-image {
  min-height: 520px;
}

.service-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-process {
  padding: 80px 0;
  background: #f5f6f8;
}

.service-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: 54px;
  align-items: start;
}

.service-process h2 {
  margin: 0 0 12px;
  color: #3b3f46;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
}

.service-title-mark {
  position: relative;
  display: block;
  width: 68px;
  height: 4px;
  margin: 0 0 18px;
  background: #7a0b0b;
}

.service-title-mark::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7a0b0b;
  box-shadow: 9px 0 0 #7a0b0b;
  transform: translateY(-50%);
}

.service-process p {
  color: #5c626b;
  font-size: 16px;
  line-height: 1.65;
}

.service-step-tabs {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1fr);
  background: var(--white);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.07);
}

.service-step-list {
  display: grid;
}

.service-step-list button {
  min-height: 62px;
  border: 1px solid #e7e7e7;
  background: var(--white);
  color: #6d0000;
  font-size: 15px;
  font-weight: 800;
}

.service-step-list button.is-active {
  color: #1d222b;
  box-shadow: inset 4px 0 0 #7a0b0b;
}

.service-step-panel {
  padding: 28px;
  color: #626872;
  font-size: 15px;
  line-height: 1.62;
}

.service-faq {
  padding: 72px 0 78px;
  background: var(--white);
}

.service-faq .section-heading h2 {
  color: #7a0b0b;
}

.service-cta {
  padding: 48px 0 54px;
  background: #2c0000;
  color: var(--white);
  text-align: center;
}

.service-cta h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 800;
}

.service-cta h2 span {
  color: #ffd300;
}

.service-cta p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.6;
}

.service-book-btn {
  min-width: 154px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #ee1010;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-book-btn:hover,
.service-book-btn:focus-visible {
  background: #c98509;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1180px) {
  .service-detail-grid,
  .service-process-grid,
  .service-why {
    grid-template-columns: 1fr;
  }

  .service-poster img {
    min-height: 0;
    height: auto;
    max-height: 660px;
    object-fit: contain;
  }

  .service-why-copy {
    padding: 64px 32px;
  }
}

@media (max-width: 860px) {
  .nav-item {
    display: block;
  }

  .nav-item > a {
    width: 100%;
  }

  .service-dropdown {
    position: static;
    width: 100%;
    display: none;
    padding: 0 18px 12px;
    border: 0;
    border-radius: 0;
    background: #3f0000;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item:hover .service-dropdown,
  .nav-item:focus-within .service-dropdown {
    display: grid;
    transform: none;
  }

  .service-dropdown a {
    color: #fff6f6;
    padding: 10px 12px;
  }

  .service-detail,
  .service-process,
  .service-faq {
    padding: 54px 0;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-step-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-hero {
    min-height: 210px;
  }

  .service-hero h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .service-detail-grid {
    gap: 30px;
  }

  .service-poster img {
    max-height: 620px;
  }

  .service-copy p,
  .service-copy li {
    text-align: left;
    font-size: 14.5px;
  }

  .service-why-copy {
    padding: 48px 20px;
  }

  .service-process h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .service-cta h2 br,
  .service-cta p br {
    display: none;
  }
}
