body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #1e293b;
}

.container {
  max-width: 600px;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin: auto !important;
}

.container.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0f172a;
  font-size: 1.875rem;
  font-weight: 600;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  background: #f1f5f9;
  padding: 0.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #64748b;
}

.tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
  background-color: #fff;
  color: #ff8713;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

label {
  display: block;
  font-weight: 500;
  color: #334155 !important;
}

input,
select {
  color: black !important;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  width: -webkit-fill-available;
  height: 44px !important;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.2s ease;
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

input:disabled,
select:disabled {
  background-color: #f1f5f9;
  cursor: not-allowed;
}

.radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center; /* This ensures vertical alignment */
  gap: 0.5rem;
  vertical-align: middle;
}

.radio-option input[type="radio"] {
  margin: 0;
  width: auto; /* Prevents full-width input styling */
  height: 1rem; /* Consistent size */
  flex-shrink: 0; /* Prevents shrinking */
}

button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #ff8713;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 1rem;
}

button:hover {
  background-color: #ff8713;
}

button:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}

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

.bubbles::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e2e8f0;
  z-index: 0;
}

.bubble {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #64748b;
  z-index: 1;
  transition: all 0.3s ease;
}

.bubble.active {
  background-color: #ff8713;
  background-color: #ff8713;
  color: #fff;
}

.bubble::after {
  content: attr(data-label);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
}

.navigation-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.navigation-buttons button {
  flex: 1;
}

#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media screen and (max-width: 767px) {
  body {
    padding: 1rem;
  }
  .tab-btn {
    font-size: 13px;
    padding: 0.75rem 0.7rem;
  }
}
/* Add these styles to your styles.css file */

.thank-you-container {
  max-width: 800px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.thank-you-header {
  background-color: #4caf50;
  color: white;
  padding: 20px 30px;
  text-align: center;
}

.thank-you-header h1 {
  margin: 0;
  font-size: 32px;
}

.thank-you-content {
  padding: 30px;
  text-align: center;
}

.success-icon {
  margin: 0 auto 20px;
  width: 80px;
}

.thank-you-content h2 {
  margin-top: 0;
  color: #333;
  font-size: 24px;
}

.thank-you-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.call-info {
  background-color: #f0f8ff;
  border-left: 4px solid #4caf50;
  padding: 15px;
  text-align: left;
  margin: 20px 0;
  border-radius: 4px;
}

@media screen and (max-width: 600px) {
  .thank-you-content h2 {
    font-size: 20px;
  }

  .thank-you-content p {
    font-size: 16px;
  }
}

/* Validation Error Styles */
.input-error {
  border-color: #ff3860 !important;
  box-shadow: 0 0 0 1px #ff3860 !important;
}

.validation-error {
  color: #ff3860;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.radio-group .validation-error {
  margin-top: 10px;
}

/* Add focus styling for inputs */
input:focus, select:focus {
  outline: none;
  border-color: #3273dc;
  box-shadow: 0 0 0 1px #3273dc;
}

/* Make input fields consistent */
input, select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Style the form groups to accommodate error messages */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

/* Disabled button styling */
button:disabled {
  background-color: #d3d3d3 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
}
