/* -------------------------------------------------------------
 * Corporate Light Services Hub & Detail CSS
 * ------------------------------------------------------------- */

.service-hero {
  padding: 4.5rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(227, 6, 19, 0.05), #ffffff 80%);
  border-bottom: 1px solid var(--border-color);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 4rem 0 6rem 0;
}

.service-content-main {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
}

.service-banner-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.service-body-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-body-text h2, .service-body-text h3 {
  color: var(--text-main);
  margin: 2rem 0 1rem 0;
  font-weight: 800;
}

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

.widget-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-subtle);
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  border-bottom: 3px solid var(--brand-red);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.service-list-menu li {
  margin-bottom: 0.6rem;
}

.service-list-menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-list-menu a:hover, .service-list-menu a.active {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

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

.quick-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
  border-color: var(--brand-red) !important;
}

@media (max-width: 1024px) {
  .services-quick-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .services-quick-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
