/* Contact Page Styles */

/* CAPTCHA Simple Styles */
.captcha-simple {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.captcha-simple img {
  border: 1px solid #ddd;
  border-radius: 4px;
  display: block;
}

.captcha-simple button {
  margin-left: 10px;
  padding: 5px 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.captcha-simple button:hover {
  background: #0056b3;
}

#captcha-input {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Hero Section */
.contact-hero {
  background-color: #eef5fc;
  min-height: 40vh;
}

.contact-hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Form Container */
.contact-form-container {
  max-width: 700px;
}

/* Flash Messages */
.flash-message {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

/* Submit Button */
.submit-btn-icon {
  margin-left: 0.5rem;
}

/* What to Expect Section */
.expectations-section {
  background-color: #eef5fc;
}

.expectations-list {
  list-style: none;
  padding-left: 0;
}

.expectations-list li {
  margin-bottom: 0.5rem;
}

.expectations-list li:last-child {
  margin-bottom: 0;
}

/* CAPTCHA Form Error Styles */
.captcha-form-error {
  background: #f8d7da !important;
  color: #721c24 !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid #f5c6cb !important;
  border-radius: 0.375rem !important;
  margin-bottom: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
