@charset "UTF-8";
/* SINGLE SERVICE
-------------------------------------------- */
.single-service {
  background: rgb(241, 241, 241);
  font-family: "Poppins", sans-serif;
  line-height: 1.5; /* fix global reset line-height: 0 */
}

.single-service__hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}

.single-service__hero-image {
  position: absolute;
  inset: 0;
}

.single-service__hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.single-service__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.single-service__hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.single-service__hero-main {
  color: #fff;
  text-align: left;
}

.single-service__title {
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 0 0 8px;
  line-height: 0.9;
}

.single-service__location {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
}

.single-service__hero-outline {
  color: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: clamp(28px, 6vw, 48px);
  align-self: flex-end;
}

.single-service__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 42px 100px;
}

.single-service__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
}

.single-service__sidebar {
  position: sticky;
  top: 40px;
  height: -moz-fit-content;
  height: fit-content;
}

.single-service__info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.single-service__info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.single-service__info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.single-service__info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgb(130, 132, 135);
  text-transform: uppercase;
  line-height: 1.5;
}

.single-service__info-value {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

.single-service__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.single-service__section-title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
}

.single-service__intro p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: #000;
}

.single-service__body {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.single-service__body .single-service__section-body {
  padding: 20px 24px;
}

.single-service__body .wysiwyg-content {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.single-service__body .wysiwyg-content h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 28px 0 12px;
}

.single-service__body .wysiwyg-content h2:first-child {
  margin-top: 0;
}

.single-service__body .wysiwyg-content h3 {
  font-size: clamp(20px, 3vw, 24px);
  margin: 20px 0 10px;
}

.single-service__body .wysiwyg-content p {
  margin: 0 0 14px;
}

.single-service__body .wysiwyg-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px;
}

.single-service__body .wysiwyg-content li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}

.single-service__body .wysiwyg-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}

.single-service__benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-service__benefit-item {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.single-service__process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.single-service__process-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.single-service__process-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.single-service__process-title {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 16px 6px;
}

.single-service__process-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgb(40, 40, 40);
  margin: 0 16px 16px;
}

.single-service__deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-service__deliverable-item {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.single-service__deliverable-item::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: #000;
}

.single-service__price-from {
  margin: 0 0 6px;
  font-size: 16px;
}

.single-service__price-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgb(40, 40, 40);
}

/* Ensure CTA inside sidebar uses black text and arrow */
.single-service__info-card .header-cta--inline,
.single-service__info-card .header-cta--inline .header-cta__text {
  color: #000;
}

.single-service__info-card .header-cta--inline .arrow-line,
.single-service__info-card .header-cta--inline .arrow-head {
  background-color: #000;
}

.single-service__faq-list {
  display: flex;
  flex-direction: column;
}

.service-faq-item {
  border-top: 1px solid #dfe3e6;
  padding: 14px 0;
}

.service-faq-item:last-child {
  border-bottom: 1px solid #dfe3e6;
}

.service-faq-item__q {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}

.service-faq-item__a p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(40, 40, 40);
}

@media (max-width: 992px) {
  .single-service__hero {
    height: 50vh;
  }
  .single-service__container {
    padding: 60px 32px 80px;
  }
  .single-service__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* When stacked vertically on mobile, do NOT stick the sidebar */
  .single-service__sidebar {
    position: static;
    top: auto;
  }
}
@media (max-width: 768px) {
  .single-service__hero {
    min-height: 420px;
  }
  .single-service__hero-content {
    padding: 32px;
  }
  .single-service__process-grid {
    grid-template-columns: 1fr;
  }
  .single-service__benefits-list {
    grid-template-columns: 1fr;
  }
  .single-service__deliverables-list {
    grid-template-columns: 1fr;
  }
}
.single-service__info-card .header-cta--inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.single-service__info-card .header-cta__text-wrapper {
  display: inline-flex;
}

.single-service__info-card .header-cta__icon {
  display: inline-flex;
}

@media (max-width: 992px) {
  .single-service__info-card .header-cta--inline {
    display: inline-flex;
  }
}