/* Contact Form Styles */
.tc-contact-container {
  /* max-width: 600px; */
  margin: 0 auto;
  padding: 20px 0;
}

.tc-form .form-group {
  margin-bottom: 20px;
}

.tc-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--tc-text-primary, #333);
}

.tc-form input[type="text"],
.tc-form input[type="email"],
.tc-form textarea,
.tc-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background-color: #fff;
  color: inherit;
}

.tc-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.tc-form input:focus,
.tc-form textarea:focus,
.tc-form select:focus {
  border-color: var(--tc-primary, #007bff);
  outline: none;
}

.cf-turnstile {
  margin-bottom: 20px;
}

.form-actions {
  margin-top: 20px;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.2s;
}

.tc-btn:hover {
  background-color: #333;
}

.tc-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#tc-form-response {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
}

#tc-form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#tc-form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}