/* ── Inner Page Hero (shared across about, services, contact) ── */

.inner-hero {
  position: relative;
  min-height: 403px;
  display: flex;
  align-items: flex-start;
  padding-top: 122px;
  overflow: hidden;
  margin-top: -85px;
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.inner-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.inner-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 3.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.inner-hero__title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: clamp(2rem, 5vw, 2.875rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.inner-hero__title-accent {
  color: #34a1e5;
}

.inner-hero__lead {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #e1e1e1;
  text-align: center;
  line-height: 1.75;
  margin: 0;
  max-width: 580px;
}

@media (max-width: 575.98px) {
  .inner-hero {
    padding-top: 100px;
    min-height: 320px;
  }
}
