/* ==========================================================================
   Dark Capabilities & Statistics Section — Matching Reference Mockup
   شركة الكوادر العاملة للتشغيل والصيانة
   ========================================================================== */

.stats-dark {
  background-color: var(--navy);
  color: var(--white);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.stats-intro {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-intro h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.stats-intro p {
  margin: 0;
  color: #b0c2d6;
  font-size: 0.84rem;
  line-height: 1.55;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 10px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-latin);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  direction: ltr;
  text-align: right;
}

.stat-label {
  font-size: 0.78rem;
  color: #b0c2d6;
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}

/* Why Choose Us Dark Cards Section */
.why-section {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-section h2 {
  color: var(--white);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(199, 149, 62, 0.4);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--white);
  font-weight: 700;
}

.why-card p {
  font-size: 0.84rem;
  color: #b0c2d6;
  margin: 0;
  line-height: 1.65;
}
