/* styles.services.css — page-specific styles for services.html */

/* Limit the services page container width and center it */
.services-page {
  width: min(1600px, 90%);
  box-sizing: border-box;
  margin: 0 auto;
  color: var(--brand);
}

/* Before/After gallery for services page */
.ba-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.ba-item {
  background: var(--yellow);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.ba-item h3 {
  margin: 0 0 6px 0;
  color: var(--brand);
}

.ba-desc {
  margin: 0 0 14px 0;
  color: var(--muted);
}

.ba-images {
  display: flex;
  gap: 14px;
}

.ba-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ba-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ba-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--brand);
  text-align: center;
}

@media (max-width: 768px) {
  .ba-images {
    flex-direction: column;
  }

  .ba-col img {
    height: auto;
  }
}
