/* Header styling */
header {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 40px;
}

header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

header span {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #252F3D;
  margin-left: 10px;
}

.header-logo {
  width: 24px;
  height: auto;
}

/* Body styling for contact page */
body {
  background-color: #F1F5F9;
}

/* Main content area */
main.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Main contact container */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form wrapper */
.form-wrapper {
  width: 100%;
  max-width: 500px;
  padding: 20px 0;
}

/* Contact Form Styling */
.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.form-wrapper .title {
  color: #252F3D;
  margin-bottom: 25px;
  text-align: center;
  width: 100%;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #252F3D;
  font-size: 16px;
}

.required {
  color: #E65660;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 16px;
  color: #252F3D;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

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

/* File input styling */
.file-input-container {
  margin-top: 5px;
}

.file-input {
  width: 100%;
  padding: 8px 0;
  color: #252F3D;
}

.file-input-help {
  font-size: 12px;
  color: #64748B;
  margin-top: 5px;
}

.error-message-wrapper {
  margin-bottom: 20px;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 80px;
}

.submit-btn {
  background-color: #E65660;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #d44147;
}

/* Mobile responsiveness */
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 20px 15px;
    margin-bottom: 100px;
  }
  
  .form-wrapper {
    padding: 10px;
    width: 100%;
  }
  
  .form-wrapper .title {
    font-size: 28px;
  }
  
  .form-group label {
    font-size: 15px;
  }
  
  .form-control {
    padding: 10px 12px;
  }
  
  .submit-btn {
    width: 100%;
  }
}

/* reCAPTCHA v3 badge styling */
.grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1000 !important;
}

/* Style for when reCAPTCHA is being processed */
.contact-form.processing {
  opacity: 0.7;
  pointer-events: none;
}

.contact-form.processing .submit-btn {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-form.processing .submit-btn::after {
  content: " (Verifying...)";
  font-size: 0.9em;
}

/* Mobile responsiveness for reCAPTCHA badge */
@media (max-width: 768px) {
  .form-actions {
    margin-bottom: 120px;
  }
  
  .grecaptcha-badge {
    transform: scale(0.9);
    transform-origin: bottom right;
  }
} 
