/* ========================================
   SERVICE SUB-PAGE STYLES
   ======================================== */

/* --- Service Hero --- */
.service-hero {
  background-color: var(--deep-steel);
  padding: 4rem 0;
  text-align: center;
}

.service-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.service-hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Service Content Layout --- */
.service-content {
  background-color: var(--warm-bone);
  padding: 4rem 0;
}

.service-content__inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.service-content__main {
  flex: 1;
  min-width: 0;
}

.service-content__main h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.service-content__main h2:first-child {
  margin-top: 0;
}

.service-content__main h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.service-content__main p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 1.25rem;
}

.service-content__main ul,
.service-content__main ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.service-content__main ul {
  list-style: none;
  padding-left: 0;
}

.service-content__main ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4A4A4A;
}

.service-content__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background-color: var(--muted-bronze);
  border-radius: 50%;
}

.service-content__main ol li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4A4A4A;
}

/* --- Sidebar --- */
.service-content__sidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6B6B6B;
  margin-bottom: 0.75rem;
}

.sidebar-card p:last-child {
  margin-bottom: 0;
}

.sidebar-card a {
  color: var(--muted-bronze);
  transition: color 0.2s;
}

.sidebar-card a:hover {
  color: #7a6a42;
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.sidebar-services {
  list-style: none;
  padding: 0;
}

.sidebar-services li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.sidebar-services li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-services a {
  color: var(--muted-bronze);
  font-weight: 500;
  transition: color 0.2s;
}

.sidebar-services a:hover {
  color: #7a6a42;
}

/* --- Highlight Box --- */
.highlight-box {
  background: rgba(140, 122, 79, 0.08);
  border-left: 4px solid var(--muted-bronze);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.highlight-box p {
  margin-bottom: 0.5rem;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* --- Responsive --- */
@media (min-width: 1024px) {
  .service-hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .service-content__inner {
    flex-direction: column;
  }

  .service-content__sidebar {
    flex: none;
    width: 100%;
    position: static;
  }
}

@media (max-width: 767px) {
  .service-hero {
    padding: 2.5rem 0;
  }

  .service-hero__title {
    font-size: 2rem;
  }

  .service-content {
    padding: 2.5rem 0;
  }

  .service-content__main h2 {
    font-size: 1.5rem;
  }
}
