/* Header Styles for Contact Page */
.header-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url("/images/contact.jpg") center center no-repeat;
  background-size: cover;
  height: 800px; /* Adjust height as needed */
  padding-bottom: 7%; /* Add some padding at the bottom */
}

.header-contact .contact-us-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: calc(12px + 3vw); /* Ensure vw has a multiplier */
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.contact-container {
  padding: 60px 0;
}
.contact-container .container {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: 0;
  margin-right: 0;
}
.contact-container .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 120px;
}
.contact-container .col-md-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Contact info column - bigger to match form */
.contact-container .contact-info {
  flex: 0 0 400px;
  max-width: 400px;
  padding: 25px 30px 20px 30px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Form column - much wider */
.contact-container .form-container {
  flex: 1;
  max-width: 1200px;
  min-width: 800px;
}
.contact-container .form-container {
  background-color: #ffffff;
  padding: 25px 60px 20px 60px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  flex: 1;
  max-width: 1200px;
  min-width: 800px;
}

.contact-container .form-container:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}
.contact-container .elementor-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.contact-container .elementor-form .elementor-field {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 0;
  font-size: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  background-color: #fafbfc;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  min-height: 50px;
}

.contact-container .elementor-form .elementor-field:focus {
  outline: none;
  border-color: #4cafef;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(76, 175, 239, 0.1);
}

.contact-container .elementor-form .elementor-field::placeholder {
  color: #6c757d;
  font-weight: 400;
}
.contact-container .elementor-form textarea.elementor-field {
  resize: vertical;
}
.contact-container .elementor-form .elementor-button {
  background: linear-gradient(135deg, #4cafef 0%, #3a8cc4 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 239, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-container .elementor-form .elementor-button:hover {
  background: linear-gradient(135deg, #3a8cc4 0%, #2c6b94 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 239, 0.4);
}
.contact-container .contact-info {
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-container .contact-top-section {
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-container .contact-location-section {
  margin-top: auto;
  margin-bottom: 20px;
}

.contact-container .contact-info h2 {
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-container .form-container h2 {
  margin-bottom: 8px;
}

.contact-container .form-container p {
  margin-bottom: 15px;
}

.contact-container .contact-info h3 {
  color: #34495e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.contact-container .contact-info p {
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5a6c7d;
}

.contact-container .contact-info p i {
  color: #4cafef;
  margin-right: 15px;
  width: 24px;
  text-align: center;
  font-size: 1.3rem;
}

.contact-container .contact-info a {
  color: #4cafef;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-container .contact-info a:hover {
  color: #3a8cc4;
  text-decoration: underline;
}

.contact-container .contact-info svg {
  margin-right: 10px;
  vertical-align: middle;
}

/* Form Messages */
.contact-container .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
}

.contact-container .alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.contact-container .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

#form-messages {
  display: none !important;
}

#success-message {
  display: none !important;
}

#error-message {
  display: none !important;
}

/* HIPAA Disclaimer */
.contact-container .hipaa-disclaimer {
  margin-top: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border-left: 4px solid #4cafef;
  border-radius: 4px;
}

.contact-container .hipaa-disclaimer p {
  margin: 0;
  color: #5a6c7d;
  line-height: 1.4;
}

.contact-container .hipaa-disclaimer small {
  font-size: 0.85rem;
}

/* Horizontal form layout - much more spread out */
.contact-container .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.contact-container .elementor-col-25 {
  flex: 1;
  min-width: 160px;
}

.contact-container .elementor-col-33 {
  flex: 1;
  min-width: 180px;
}

.contact-container .elementor-col-50 {
  flex: 1;
  min-width: 280px;
}

.contact-container .elementor-col-100 {
  width: 100%;
}

/* Phone input with country code */
.contact-container .phone-input-container {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.contact-container .country-select {
  width: 160px;
  padding: 15px 12px;
  font-size: 0.9rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  background-color: #fafbfc;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  flex-shrink: 0;
  min-height: 50px;
}

.contact-container .phone-number {
  flex: 1;
  min-width: 0;
}

.contact-container .country-select:focus {
  outline: none;
  border-color: #4cafef;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(76, 175, 239, 0.1);
}

/* reCAPTCHA styling */
.contact-container .g-recaptcha {
  margin: 8px 0 3px 0;
  display: flex;
  justify-content: center;
}

.contact-container .elementor-field-type-recaptcha {
  text-align: center;
  margin-bottom: 10px;
}

/* Select dropdown styling */
.contact-container .elementor-form select.elementor-field {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  background-color: #fafbfc;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.contact-container .elementor-form select.elementor-field:focus {
  outline: none;
  border-color: #4cafef;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(76, 175, 239, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-container .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-container .row {
    gap: 60px;
  }

  .contact-container .form-container {
    min-width: 600px;
    padding: 35px 40px;
  }
}

@media (max-width: 768px) {
  .contact-container .row {
    gap: 40px;
    flex-direction: column;
  }

  .contact-container .contact-info,
  .contact-container .form-container {
    flex: none;
    max-width: 100%;
    min-width: auto;
  }

  .contact-container .contact-info {
    padding: 20px 25px;
  }

  .contact-container .form-container {
    padding: 30px 25px;
  }

  .contact-container .contact-location-section {
    margin-top: 20px;
  }

  /* Stack form fields on mobile */
  .contact-container .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-container .elementor-col-25,
  .contact-container .elementor-col-33,
  .contact-container .elementor-col-50 {
    width: 100%;
    flex: none;
  }

  .contact-container .phone-input-container {
    flex-direction: row;
    gap: 10px;
  }

  .contact-container .country-select {
    width: 140px;
  }
}

.footer {
  position: relative;
  box-shadow: 0 -5px 15px -5px rgba(0, 0, 0, 0.2); /* Adjust color and size as needed */
}

/*# sourceMappingURL=contact.css.map */
