/* ================================================
   SERVICES.CSS
   ستايل صفحة Services فقط
   ================================================ */


/* ================================================
   BANNER
   ================================================ */
.page-banner.services-banner {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../images/services-banner.webp") center / cover no-repeat;
}


/* ================================================
   HIGHLIGHT
   ================================================ */
.services-highlight {
  padding: 20px 0 0;
}

.services-highlight-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.services-highlight-wrap p {
  margin: 0;
  color: var(--hmc-brand-primary);
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}

.services-highlight-wrap p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 85%;
  height: 20px;
  transform: translateX(-50%);
  border-bottom: 4px solid var(--hmc-brand-accent);
  border-radius: 0 0 50% 50%;
}


/* ================================================
   SERVICES ROWS
   ================================================ */
.services-page {
  width: 100%;
  padding: 42px 0 60px;
  box-sizing: border-box;
}

.services-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid rgba(47,71,56,0.10);
}

.service-row:first-of-type {
  border-top: none;
}

.service-row.reverse .service-text {
  order: 2;
}

.service-row.reverse .service-image {
  order: 1;
}

.service-number {
  font-size: 0.85rem;
  color: var(--hmc-brand-accent);
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.service-text h2 {
  margin: 0 0 14px;
  color: var(--hmc-brand-primary);
  font-size: 2rem;
  line-height: 1.2;
}

.service-text > p {
  margin: 0 0 20px;
  max-width: 540px;
  color: rgba(30,30,30,0.78);
  line-height: 1.82;
  font-size: 1.02rem;
}

.service-text ul {
  margin: 0;
  padding-left: 18px;
}

.service-text li {
  margin-bottom: 10px;
  color: rgba(30,30,30,0.78);
  line-height: 1.75;
  font-size: 0.98rem;
}

.service-image {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(47,71,56,0.05);
  box-shadow: var(--hmc-shadow-sm);
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}