/* ==========================================================================
   TIMELINE / PROCESS COMPONENT
   Consolidated from: pages/homepage.css, pages/about.css
   ========================================================================== */

/* Timeline Container */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Vertical Line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-secondary), rgba(201, 168, 118, 0.3));
}

/* Process Step */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Step Number Circle */
.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(201, 168, 118, 0.3);
  font-size: var(--font-size-base);
}

/* Step Content */
.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h4 {
  color: white;
  margin-bottom: var(--space-2);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* Process Section Headers (for dark backgrounds) */
.process-header {
  color: white !important;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
}

.process-subheader {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ==========================================================================
   Process Cards (About Page Style)
   ========================================================================== */
.process-card {
  background: var(--color-background);
  border: 1px solid rgba(27, 53, 44, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--brand-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--space-4) auto;
  border: 4px solid var(--brand-secondary);
}

.process-features {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive - Tablet (880px)
   ========================================================================== */
@media (max-width: 880px) {
  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    text-align: left;
  }

  .step-number {
    margin-bottom: 0;
  }

  .step-content {
    flex: 1;
    padding-top: 0;
  }
}
