/* ============================================================
   SERVICES.CSS — BrightWay Enterprises Services Page
   ============================================================ */

.services-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: var(--bg-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.05), transparent 60%);
  border-radius: 50%;
}

.services-hero h1 { margin-bottom: 16px; position: relative; }
.services-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; position: relative; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-content { }

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-content p {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.service-features {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.service-feature .check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  font-size: 0.75rem;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}

.process-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.process-card p { font-size: 0.88rem; }

/* CTA */
.services-cta {
  background: linear-gradient(135deg, var(--text-primary), #1E293B);
  border-radius: var(--radius-2xl);
  padding: 80px 60px;
  text-align: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 50%);
  border-radius: 50%;
}

.services-cta h2 { color: #fff; margin-bottom: 16px; position: relative; }
.services-cta p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; }

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-image img { height: 260px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-cta { padding: 48px 24px; margin: 0 16px; }
}
