/* Contact Section Styles */
.contact-section {
  padding: 60px;
  max-width: 100%;
  overflow: hidden;
}

.contact-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 40px !important;
  border-radius: 32px;
  max-width: 100%;
  overflow: hidden;
}

.contact-title {
  text-align: center;
  max-width: 610px;
  margin: 0 auto 60px;
  padding: 0 20px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #25281f;
}

.contact-title p {
  margin: 0;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 100%;
}

.contact-left-column {
  /* Left column content can be added here */
}

.contact-right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
  max-width: 100%;
}

.contact-note {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.contact-note h3 {
  width: auto;
  max-width: 220px;
  border-radius: 48px;
  padding: 8px 32px;
  background: #ffffff;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #25281f;
  margin: 0 auto;
  display: inline-block;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 100%;
}

/* Contact Form 7 Styles */
.contact-form-container {
  width: 100%;
  max-width: 100%;
}
/* reverse form fields so that cloudflare recaptcha is at the bottom */
form.wpcf7-form {
  display: flex;
  flex-direction: column-reverse;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.form-field {
  width: 100%;
}

.form-field p {
  margin: 0;
  width: 100%;
}

.form-field label {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-weight: 500;
  color: #25281f;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form-control {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}

input.wpcf7-form-control.pre-book-button {
  width: auto !important;
}

input.wpcf7-form-control.wpcf7-text,
input.wpcf7-form-control.wpcf7-email {
  border-radius: 56px;
  padding: 16px 34px;
  border: 2px solid #b0b0b0;
  color: #5a5d5a;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  background: transparent;
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100%;
}

.form-submit-section {
  width: 100%;
  max-width: 100%;
}

.form-submit-section p {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row-reverse;
  width: 100%;
}

.beta-notice {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #25281f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
    ;
  }

  .contact-bg {
    padding: 60px 20px !important;
    background: #fff3f0 !important;
  }

  .container.title-container {
    padding: 0;
  }

  .contact-title {
    font-size: 28px;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
  }

  .contact-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-right-column {
    padding: 0 10px;
  }

  .contact-note h3 {
    font-size: 1.1rem;
    max-width: 200px;
  }

  .form-fields {
    gap: 15px;
  }

  input.wpcf7-form-control.wpcf7-text,
  input.wpcf7-form-control.wpcf7-email {
    font-size: 16px;
    color: #000000 !important;
  }
  input.wpcf7-form-control.wpcf7-text::placeholder,
  input.wpcf7-form-control.wpcf7-email::placeholder {
    color: #25281f !important;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 20px;
  }

  .contact-bg {
    padding: 40px 15px !important;
  }

  .contact-columns {
    gap: 30px;
  }

  .contact-right-column {
    padding: 0 5px;
  }

  .contact-note h3 {
    font-size: 1rem;
    max-width: 180px;
    padding: 6px 20px;
  }

  .form-submit-section p {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .beta-notice {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
