/* ==========================================================================
   360° Signature Operational Ecosystem & Human Story Section
   شركة الكوادر العاملة للتشغيل والصيانة
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 360° Signature Operational Ecosystem Section (Deep Navy)
   -------------------------------------------------------------------------- */
.signature-ecosystem {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signature-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(196, 169, 119, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(16, 45, 73, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.signature-ecosystem .container {
  position: relative;
  z-index: 1;
}

.signature-ecosystem h2 {
  color: var(--white);
}

.signature-ecosystem .section-head-stacked p {
  color: #b0c2d6;
}

/* 5 Connected Operational Nodes Grid */
.ecosystem-nodes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.ecosystem-node {
  background-color: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.ecosystem-node:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(196, 169, 119, 0.45);
  transform: translateY(-4px);
}

.node-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: rgba(196, 169, 119, 0.12);
  border: 1px solid rgba(196, 169, 119, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.node-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.ecosystem-node h4 {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}

.ecosystem-node p {
  color: #a4b8cc;
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   2. Human Story Moment Section (خلف كل منشأة تعمل بكفاءة)
   -------------------------------------------------------------------------- */
.human-story {
  background-color: var(--white);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--line);
}

.human-story-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.human-story-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--navy-dark);
}

.human-story-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.human-story-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(11, 32, 56, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 169, 119, 0.35);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.human-story-tag span {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 700;
}

.human-story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.human-quote-lead {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 18px;
  position: relative;
}

.human-story-content > p {
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 24px;
}

.human-story-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.human-metric-item {
  display: flex;
  flex-direction: column;
}

.human-metric-item strong {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.human-metric-item span {
  font-size: 0.78rem;
  color: var(--steel-light);
  margin-top: 2px;
}
