.pcb-booking-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.pcb-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.pcb-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  transform: translateY(-50%);
  z-index: 1;
}

.pcb-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 25%;
}

.pcb-step-number {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
}

.pcb-step.active .pcb-step-number {
  background: #2c5282;
  border-color: #2c5282;
  color: white;
}

.pcb-step.completed .pcb-step-number {
  background: #48bb78;
  border-color: #48bb78;
  color: white;
}

.pcb-step-title {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.pcb-step.active .pcb-step-title {
  color: #2c5282;
  font-weight: 600;
}

/* Step Content */
.pcb-step-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.pcb-step-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pcb-form-group {
  margin-bottom: 1.5rem;
}

.pcb-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

.pcb-form-group select,
.pcb-form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.pcb-form-group select:focus,
.pcb-form-group input:focus {
  outline: none;
  border-color: #2c5282;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

/* Button Styles */
.pcb-button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.pcb-next-btn,
.pcb-prev-btn,
.pcb-submit-button {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.pcb-next-btn {
  background-color: #2c5282;
  color: white;
  border: none;
}

.pcb-prev-btn {
  background-color: #e2e8f0;
  color: #4a5568;
  border: none;
}

.pcb-submit-button {
  background-color: #48bb78;
  color: white;
  border: none;
  width: auto;
}

.pcb-next-btn:hover,
.pcb-submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pcb-prev-btn:hover {
  background-color: #cbd5e0;
}

/* Summary Styles */
.pcb-summary {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.pcb-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.pcb-summary-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pcb-summary-label {
  font-weight: 600;
  color: #4a5568;
}

.pcb-summary-value {
  color: #2d3748;
}

.pcb-price-display {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c5282;
  padding: 1rem;
  background: #ebf4ff;
  border-radius: 6px;
}

/* Error Message */
.pcb-error-message {
  display: none;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
  background-color: #fff5f5;
  border: 1px solid #fc8181;
  color: #c53030;
}

.pcb-error-message.show {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pcb-error-icon {
  width: 20px;
  height: 20px;
  fill: #c53030;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pcb-booking-form {
    margin: 1rem;
    padding: 1rem;
  }

  .pcb-step-title {
    display: none;
  }

  .pcb-button-group {
    flex-direction: column;
    gap: 1rem;
  }

  .pcb-next-btn,
  .pcb-prev-btn,
  .pcb-submit-button {
    width: 100%;
  }
}

.pcb-booking-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

/* New styles for note and bank details sections */
.pcb-note {
  background: #f8f4e5;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #e9b949;
}

.pcb-note p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.pcb-note strong {
  color: #444;
}

.pcb-bank-details {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.pcb-bank-details h3 {
  margin: 0 0 1rem 0;
  color: #2d3748;
  font-size: 1.25rem;
}

.pcb-bank-info {
  display: grid;
  gap: 0.75rem;
}

.pcb-bank-info p {
  margin: 0;
  color: #4a5568;
}

.pcb-bank-info strong {
  color: #2d3748;
  margin-right: 0.5rem;
}

/* Loader/Spinner Styles */
.pcb-loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.pcb-loader-overlay.show {
  display: flex;
}

.pcb-loader-content {
  text-align: center;
  background: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pcb-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #2c5282;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pcb-loader-text {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}