/* ============================================
   EXPRESS AIR PARKING — Services Page Styles
   ============================================ */

.service-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.service-section:nth-child(odd) {
  background: var(--white);
}

.service-section:nth-child(even) {
  background: var(--primary-50);
}

.service-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.service-section:nth-child(even) .service-section__inner {
  direction: rtl;
}

.service-section:nth-child(even) .service-section__inner > * {
  direction: ltr;
}

.service-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.service-section__visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.08);
  top: -50px;
  right: -50px;
}

.service-section__visual .icon-3d__shape {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
}

.service-section__visual .icon-3d__shape svg {
  width: 60px;
  height: 60px;
}

.service-section__visual .icon-3d__shadow {
  width: 80px;
  height: 12px;
  bottom: -10px;
}

.service-section__content {
  padding: var(--space-xl) 0;
}

.service-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gold-soft);
  color: var(--accent-gold-hover);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--neutral-800);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.service-section__text {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.service-section__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.service-feature__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-feature__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-600);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-feature__text {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

.service-feature__text strong {
  color: var(--neutral-800);
  font-weight: 600;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  position: relative;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.process-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neutral-800);
  margin-bottom: var(--space-xs);
}

.process-step__text {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin: 0;
}

/* Discount highlight */
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: var(--primary-800);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  margin-bottom: var(--space-lg);
}

/* Responsive */
@media (max-width: 992px) {
  .service-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .service-section:nth-child(even) .service-section__inner {
    direction: ltr;
  }

  .service-section__visual {
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}
