/* Client Form Styles */
.v3-client-form-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.v3-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.v3-form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.v3-form-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.v3-client-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.v3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.v3-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.v3-form-group input,
.v3-form-group select,
.v3-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.v3-form-group input:focus,
.v3-form-group select:focus,
.v3-form-group textarea:focus {
  outline: none;
  border-color: #FE8E40;
  box-shadow: 0 0 0 2px rgba(254, 142, 64, 0.2);
}

.v3-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.v3-form-submit {
  text-align: center;
  margin-top: 2rem;
}

.v3-form-button {
  background-color: #FE8E40;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.v3-form-button:hover:not(:disabled) {
  background-color: #e55a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.v3-form-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.v3-form-error {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.v3-form-error p {
  margin: 0;
  font-weight: 500;
}

.v3-form-field-error {
  margin-top: 0.5rem;
  color: #c33;
  font-size: 0.9rem;
  font-weight: 500;
}

.v3-form-success {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.v3-form-success h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FE8E40;
}

.v3-form-success p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .v3-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .v3-client-form {
    padding: 2rem;
  }
  
  .v3-form-header h2 {
    font-size: 2rem;
  }
}
