#header {
  display: none;
}

.support-form-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-form-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Override Bootstrap form-control */
.form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5em 1.5em;
  padding: 0.75rem 3rem 0.75rem 1rem;
  color: #1f2937;
  height: auto;
  min-height: calc(1rem + 1.5rem + 4px);
}

.form-select {
  padding: 0.75rem 3rem 0.75rem 1rem;
  height: auto;
}

input.form-control[type="text"],
input.form-control[type="email"],
input.form-control[type="tel"] {
  height: auto;
  min-height: calc(1rem + 1.5rem + 4px);
}

select.form-control option {
  color: #1f2937;
  background-color: #ffffff;
  padding: 0.5rem;
}

.form-intro {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.form-intro h3 {
  color: #1e3a8a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-intro p {
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

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

.form-label-required::after {
  content: ' *';
  color: #ef4444;
}

.form-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.info-display {
  background: #f9fafb;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  color: #374151;
  font-weight: 500;
}

.btn-submit {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
  color: white;
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-login {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.btn-login:hover {
  background: #059669;
  color: white;
  text-decoration: none;
}

.contact-type-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

#ResponseMessage {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

#ResponseMessage.error {
  background: #fef2f2;
  border: 2px solid #fecaca;
  color: #991b1b;
}

#ResponseMessage.success {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  color: #166534;
}

/* Responsive Design */
@media (max-width: 768px) {
  .support-form-header h1 {
    font-size: 1.75rem;
  }

  .btn-submit {
    width: 100%;
    padding: 1rem;
  }

  .form-intro {
    padding: 1rem;
  }

  .card {
    border: none !important;
    box-shadow: none !important;
  }

  .card-body {
    padding: 1rem !important;
  }
}

@media (max-width: 480px) {
  .support-form-header {
    padding: 2rem 0;
  }

  .support-form-header h1 {
    font-size: 1.5rem;
  }

  .card-body {
    padding: 0 !important;
  }
}
