/* OUR PROCESS PAGE STYLES - THE PULP HOUSE PUBLISHING */

.ph-process-hero {
  background: linear-gradient(135deg, #1f0a29 0%, #341e36 50%, #521659 100%);
  padding: 80px 0 60px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ph-process-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(158, 39, 169, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.ph-hero-tag-badge {
  display: inline-block;
  background: rgba(255, 156, 248, 0.15);
  border: 1px solid rgba(255, 156, 248, 0.35);
  color: #ff9cf8;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin: 0 auto 16px;
  text-align: center;
}

.ph-process-hero-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.ph-process-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* PROCESS SECTION HEADER */
.ph-process-intro-section {
  background: #ffffff;
  padding: 70px 0 30px;
  color: #341E36;
}

.ph-sec-header-center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.ph-sec-header-center h2 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #341E36;
  margin-bottom: 16px;
}

.ph-sec-header-center p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}

/* STEP CARDS ALTERNATING WHITE & LIGHT GRAY ROWS */
.ph-step-row {
  padding: 70px 0;
  background: #ffffff;
  color: #341E36;
  border-bottom: 1px solid #eee5f2;
}

.ph-step-row:nth-child(even) {
  background: #f7f3f9;
}

.ph-step-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ph-step-card-grid.reverse {
  direction: rtl;
}

.ph-step-card-grid.reverse > * {
  direction: ltr;
}

.ph-step-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(52, 30, 54, 0.12);
  border: 1px solid rgba(158, 39, 169, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ph-step-img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(158, 39, 169, 0.22);
  border-color: rgba(158, 39, 169, 0.4);
}

.ph-step-img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ph-step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ph-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #341E36 0%, #9E27A9 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(158, 39, 169, 0.25);
}

.ph-step-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: #341E36 !important;
  margin-bottom: 16px;
  line-height: 1.25;
  text-shadow: none;
}

.ph-step-desc {
  font-size: 1.05rem;
  color: #4a4a4a !important;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ph-step-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ph-btn-step-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9E27A9 0%, #d946ef 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(158, 39, 169, 0.3);
  transition: all 0.3s ease;
}

.ph-btn-step-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(158, 39, 169, 0.45);
  color: #ffffff !important;
}

.ph-btn-step-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #341E36;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.ph-btn-step-phone i {
  color: #ff9cf8;
}

.ph-btn-step-phone:hover {
  background: #1f0a29;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.ph-btn-step-phone:hover i {
  color: #ff9cf8;
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
  .ph-process-hero-title {
    font-size: 2.2rem;
  }

  .ph-step-card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ph-step-card-grid.reverse {
    direction: ltr;
  }

  .ph-step-title {
    font-size: 1.7rem;
  }

  .ph-btn-step-primary,
  .ph-btn-step-phone {
    width: 100%;
    justify-content: center;
  }
}
