/* =================================== */
/* Redesigned Service Detail Section   */
/* =================================== */

.service-detail-redesigned {
  padding: 6rem 0;
  background-color: var(--color-bg, #ffffff);
  border-bottom: 1px solid var(--color-border, #e9ecef);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

/* --- Main Content --- */
.service-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.service-header-icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), rgba(var(--color-primary-rgb), 0.05));
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.1);
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.service-deliverables-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.service-deliverables-list {
  list-style-type: none;
  padding-left: 0;
  columns: 2;
  column-gap: 2rem;
}

.service-deliverables-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.75rem;
}

.service-deliverables-list li::before {
  content: '\f00c'; /* Font Awesome check icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color-success);
}

/* --- Sidebar --- */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.key-benefits-card, .service-cta-card {
  background-color: var(--color-bg-alt, #f8f9fa);
  border: 1px solid var(--color-border, #e9ecef);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.key-benefits-card h3, .service-cta-card h4 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--color-heading);
}

.key-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.key-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.key-benefits-list .benefit-icon {
  color: var(--color-primary);
  margin-top: 5px;
  flex-shrink: 0;
}

.service-cta-card p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.service-cta-card .btn {
    width: 100%;
    text-align: center;
}
