.pricing-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--brand-grey-800);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.progress-container {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e9ecef;
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step-item.active .step-circle {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--brand-grey-800);
  border-color: var(--brand-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 211, 59, 0.3);
}

.step-item.completed .step-circle {
  background: #28a745;
  border-color: #28a745;
  color: white;
}

.step-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

.step-item.active .step-label {
  color: var(--brand-grey-800);
  font-weight: 700;
}

.pricing-form-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  min-height: 500px;
}

.form-control, .form-select, textarea {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 211, 59, 0.15);
}

.form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border: none;
  color: var(--brand-grey-800);
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
  color: var(--brand-grey-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 211, 59, 0.4);
}

.btn-secondary {
  background: #6c757d;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 50px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-grey-800);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-primary);
}

.help-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}


/* WhatsApp Modal Styles */
.modal-content {
  border-radius: 20px;
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 700;
}

.btn-close {
  filter: brightness(0) invert(1);
}

/* Modern Radio Button Group Styles */
.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.radio-group .form-check {
  flex: 1;
  min-width: 2rem;
  margin: 0;
}

.radio-group .form-check-input {
  display: none;
}

.radio-group .form-check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #cfcece;
  color: #6c757d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.radio-group .form-check-label:hover {
  border-color: var(--brand-primary);
  background: rgba(255, 211, 59, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.radio-group .form-check-input:checked + .form-check-label {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-color: var(--brand-primary);
  color: var(--brand-grey-800);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 211, 59, 0.3);
  transform: translateY(-2px);
}

.radio-group .form-check-input:checked + .form-check-label::before {
  content: '\2713';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--brand-grey-800);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.radio-group .form-check-input:focus + .form-check-label {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Responsive adjustments for radio groups */
@media (max-width: 576px) {
  .radio-group {
    flex-direction: column;
  }

  .radio-group .form-check {
    width: 100%;
    min-width: unset;
  }
}
