/* ==========================================================================
   Hero Section — Faithful Architectural Reconstruction of Reference Mockup
   شركة الكوادر العاملة للتشغيل والصيانة
   ========================================================================== */

.hero {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

/* Right Column: Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  background-color: var(--gold-badge-bg);
  border: 1px solid var(--gold-badge-border);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-size: var(--font-size-display);
  font-weight: 800;
  line-height: 1.24;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.hero-title-gold {
  display: block;
  color: var(--gold);
  font-weight: 800;
}

.hero-lead {
  font-size: var(--font-size-lead);
  line-height: 1.8;
  color: var(--steel);
  max-width: 530px;
  margin: 0 0 28px;
  font-weight: 400;
}

/* Buttons Row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 12px 26px;
  font-size: 0.92rem;
}

/* 4 Feature Items Row */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  position: relative;
}

.hero-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--line);
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.hero-feature-icon svg {
  width: 24px;
  height: 24px;
}

.hero-feature-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  white-space: nowrap;
}

.hero-feature-desc {
  font-size: 0.72rem;
  color: var(--steel-light);
  line-height: 1.35;
}

/* Left Column: Visual Composite with Curved Frame */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Curved Dark Navy Badge (بيئة أفضل لتشغيل أكثر كفاءة) */
.hero-curved-tag {
  position: absolute;
  top: 40%;
  right: 20px;
  background-color: rgba(11, 32, 56, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(199, 149, 62, 0.4);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(11, 32, 56, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
  text-align: right;
}

.hero-curved-tag span {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-curved-tag strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}
