/* ===== Services pages (group design language) ===== */
.services-hero {
  background-image: linear-gradient(90deg, rgba(14, 27, 39, 0.94), rgba(14, 27, 39, 0.66)), url("/assets/images/photos/umm-qasr-port-aerial.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 0;
}
.services-hero h1,
.services-hero .lead { color: #fff; }
.services-hero .lead { color: rgba(255, 255, 255, 0.8); }
.services-hero .breadcrumb,
.services-hero .breadcrumb a,
.services-hero .breadcrumb [aria-current] { color: rgba(255, 255, 255, 0.82); }
.services-hero .breadcrumb .sep { color: var(--accent-light); }

.bento-services-grid { display: grid; gap: 1.25rem; }

/* Detail layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.detail-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.detail-content h2:first-child { margin-top: 0; }
.detail-content p { margin-bottom: 1.25rem; }

.detail-aside { position: sticky; top: calc(var(--header-height) + 1.5rem); display: grid; gap: 1.5rem; }
.detail-aside .card { padding: 1.75rem; }
.detail-aside h3 { font-size: 1.0625rem; margin-bottom: 1rem; }
.detail-aside ul { list-style: none; }
.detail-aside li { margin-bottom: 0.625rem; }
.detail-aside li a {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.detail-aside li a:hover { color: var(--accent); }
.detail-aside li a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6875rem;
  color: var(--accent);
}

.detail-features { margin-top: 1.5rem; }
.detail-cta { margin-top: 3rem; }
