body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 10px;
  font-size: 28px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Progress Bar */
.progress-container {
  margin: 30px 0;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background: #e9ecef;
  z-index: 1;
}

.progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #ff7b00 0%, #ff9a3d 100%);
  transition: width 0.3s ease;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #666;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.step-circle.active {
  border-color: #ff7b00;
  background: #ff7b00;
  color: white;
  <!-- transform: scale(1.1); -->
}

.step-label {
  position: absolute;
  top: 45px;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* Steps */
.step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step h4 {
  margin-bottom: 25px;
  color: #2d3748;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step h4 i {
  color: #ff7b00;
}

/* Options Styling */
.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.option-card {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: white;
}

.option-card:hover {
  border-color: #ff7b00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.1);
}

.option-card.selected {
  border-color: #ff7b00;
  background: #fff7ed;
}

.option-card input {
  display: none;
}

.option-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.option-price {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Input Fields */
.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.input-field {
  position: relative;
}

.input-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3748;
}

.input-field input {
  width: 90%;
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  transition: border 0.3s ease;
}

.input-field input:focus {
  outline: none;
  border-color: #ff7b00;
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
}

/* Summary Box */
.summary {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ff7b00;
  margin-bottom: 25px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.summary h5 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #1a365d;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #fed7aa;
}

.summary-item:last-child {
  border-bottom: none;
}

.total-price {
  font-size: 24px;
  font-weight: bold;
  color: #ff7b00;
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #fed7aa;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

button {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.next-btn, .last-btn {
  background: linear-gradient(135deg, #ff7b00 0%, #ff9a3d 100%);
  color: white;
}

.next-btn:hover, .last-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
}

.back-btn {
  background: #f1f5f9;
  color: #475569;
}

.back-btn:hover {
  background: #e2e8f0;
}

.submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: white;
  width: 100%;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Trust Badge */
.trust-badge {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  color: #64748b;
}

.trust-badge i {
  color: #10b981;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 576px) {
  .container {
    padding: 20px;
  }
  
  .options {
    grid-template-columns: 1fr;
  }
  
  .input-group {
    grid-template-columns: 1fr;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .step-label {
    display: none;
  }
  h2{
	font-size:25px;
  }
  .subtitle{
	line-height: 20px;
  }
}
@media (max-width: 576px) {
	.progress-container{
		display:none;
	}
	.option-card {
		padding: 10px 15px;
	}
	.step h4 {
		margin-bottom: 10px;
	}
	.subtitle{
		margin: 10px;
	}
	.summary {
		padding: 10px 25px;
	}
	.summary h5 {
		margin-bottom: 5px;
	}
	.summary-item{
		padding: 5px 0;
	}
}