/* ==========================================================================
   Services Section — Asymmetrical Editorial Capability Hierarchy
   Featured Flagship Capability + 3 Supporting Operational Services
   شركة الكوادر العاملة للتشغيل والصيانة
   ========================================================================== */

.services {
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}

.services-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

/* Featured Service Card (Large Dominant Capability) */
.service-featured-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-featured-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-badge-border);
  transform: translateY(-3px);
}

.featured-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.featured-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.service-featured-card:hover .featured-photo-wrap img {
  transform: scale(1.03);
}

.featured-badge-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background-color: rgba(11, 32, 56, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(196, 169, 119, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-badge-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--gold-accent);
}

.featured-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.featured-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--gold-pale);
  border: 1px solid var(--gold-badge-border);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.featured-header h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.featured-body > p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Featured Highlights Scope List */
.featured-scopes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-scope-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
}

.featured-scope-item::before {
  content: "•";
  color: var(--gold-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Supporting Services Stack (3 Services) */
.services-supporting-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.supporting-service-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.supporting-service-card:hover {
  transform: translateX(-4px);
  border-color: var(--gold-badge-border);
  box-shadow: var(--shadow-sm);
}

.supporting-photo-wrap {
  width: 100px;
  height: 85px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--navy-dark);
  flex-shrink: 0;
}

.supporting-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.supporting-body h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.supporting-body h4 svg {
  width: 16px;
  height: 16px;
  color: var(--gold-accent);
  transition: transform var(--transition-fast);
}

.supporting-service-card:hover .supporting-body h4 svg {
  transform: translateX(-3px);
}

.supporting-body p {
  margin: 0;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.55;
}
