section.process-flow-section {
  max-width: 100%;
  padding: 120px 20px;
  background: #ffffff;
  background: #e5e1e1;
}

.process-flow-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =======================================================
   HEADER
======================================================= */

.process-flow-header {
  text-align: center;
  margin-bottom: 20px;
}

.process-flow-subtitle {
  color: #e15b24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.process-flow-title {
  color: #352017;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-family:;
  margin-bottom: 15px;
  line-height: 1.15;
}

.process-flow-description {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(53, 32, 23, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =======================================================
   TOGGLE
======================================================= */

.process-flow-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 50px 0 70px;
}

.process-flow-toggle {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(53, 32, 23, 0.07);
}

.process-flow-toggle-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  color: rgba(53, 32, 23, 0.55);
}

.process-flow-toggle-btn.active {
  background: #352017;
  color: #f6e7d6;
}

/* =======================================================
   CONTENT
======================================================= */

.process-flow-content {
  display: none;
}

.process-flow-content.active {
  display: block;
}

.process-flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.process-flow-step-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}
.process-flow-step-wrapper button {
  padding: 0;
  margin-top: 0;
}
.process-flow-toggle-btn {
  margin-top: 0;
}

.process-flow-arrow {
  font-size: 28px;
  color: rgba(53, 32, 23, 0.18);
  margin: 0 15px;
  font-weight: bold;
  user-select: none;
  position: absolute;
  top: -50px;
  left: 40%;
}

/* =======================================================
   STEP CARD
======================================================= */

.process-flow-step-card {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.process-flow-step-card:hover {
  transform: translateY(-4px);
}

.process-flow-step-card.active {
  box-shadow:
    0 12px 40px rgba(225, 91, 36, 0.18),
    0 0 0 2px #e15b24;
}

.process-flow-step-card.completed {
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.05),
    0 0 0 2px rgba(53, 32, 23, 0.12);
}

/* =======================================================
   STEP HEADER
======================================================= */

.process-flow-step-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  background: #f9f6f2;
}

.process-flow-step-card.active .process-flow-step-header {
  background: #352017;
}

.process-flow-step-card.completed .process-flow-step-header {
  background: rgba(53, 32, 23, 0.06);
}

.process-flow-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(53, 32, 23, 0.15);
  color: #352017;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-flow-step-number.active,
.process-flow-step-number.completed {
  background: #e15b24;
  color: #fff;
}

.process-flow-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(53, 32, 23, 0.45);
  margin-bottom: 5px;
}

.process-flow-step-card.active .process-flow-step-label {
  color: rgba(246, 231, 214, 0.55);
}

.process-flow-step-title-small {
  color: #352017;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.process-flow-step-card.active .process-flow-step-title-small {
  color: #f6e7d6;
}

/* =======================================================
   STEP BODY
======================================================= */

.process-flow-step-body {
  background: #fff;
  padding: 24px;
}
.process-flow-step-body strong {
  color: #352017;
  font-size: 13px;
  font-weight: 700;
}

.process-flow-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-flow-mock-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(53, 32, 23, 0.45);
  font-weight: 700;
  margin-bottom: 12px;
}

.process-flow-small-note {
  font-size: 12px;
  color: rgba(53, 32, 23, 0.5);
  line-height: 1.5;
}

/* =======================================================
   MOCK BUTTONS
======================================================= */

.process-flow-mock-btn {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(53, 32, 23, 0.06);
  color: rgba(53, 32, 23, 0.55);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-flow-mock-btn.active {
  background: #352017;
  color: #f6e7d6;
}

/* =======================================================
   GUEST COUNT
======================================================= */

.process-flow-guests-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.guest-count-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(53, 32, 23, 0.07);
  color: #352017;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-count-box.selected {
  background: #352017;
  color: #f6e7d6;
}

/* =======================================================
   GUEST ROWS
======================================================= */

.guest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(53, 32, 23, 0.04);
  border: 1px solid rgba(53, 32, 23, 0.08);
  margin-bottom: 8px;
}

.guest-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e15b24;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-avatar svg {
  width: 14px;
  height: 14px;
}

.guest-info {
  flex: 1;
}

.guest-info strong {
  display: block;
  font-size: 12px;
  color: #352017;
}

.guest-info span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: rgba(53, 32, 23, 0.5);
}

.guest-check {
  color: #e15b24;
}

.guest-check svg {
  width: 15px;
  height: 15px;
}

/* =======================================================
   SEND ICON
======================================================= */

.process-send-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(225, 91, 36, 0.12);
  color: #e15b24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.process-send-icon.declined {
  background: rgba(53, 32, 23, 0.08);
  color: rgba(53, 32, 23, 0.6);
}

.process-send-icon svg {
  width: 22px;
  height: 22px;
}

/* =======================================================
   BUTTONS
======================================================= */

.process-submit-btn {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  background: #e15b24;
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.process-submit-btn-outline {
  background: transparent;
  color: #352017;
  border: 1.5px solid rgba(53, 32, 23, 0.2);
}

/* =======================================================
   DECLINED NAME FIELD
======================================================= */

.process-name-field {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #e15b24;
  background: rgba(225, 91, 36, 0.04);
  color: #352017;
  font-size: 13px;
}

/* =======================================================
   FOOTER NOTE
======================================================= */

.process-flow-footer-note {
  margin-top: 50px;
  text-align: center;
  color: rgba(53, 32, 23, 0.35);
  font-size: 12px;
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media (max-width: 1024px) {
  .process-flow-steps {
    flex-direction: column;
  }

  .process-flow-step-wrapper {
    width: 100%;
  }

  .process-flow-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-flow-section {
    padding: 80px 20px;
  }

  .process-flow-toggle {
    width: 100%;
  }

  .process-flow-toggle-btn {
    flex: 1;
    padding: 12px;
    font-size: 13px;
  }

  .process-flow-step-body {
    padding: 20px;
  }
}
