/** Shopify CDN: Minification failed

Line 434:0 Expected "}" to go with "{"

**/
.contact-hero-image {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #123d77;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 1;
}

.contact-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.contact-hero-content h1 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  max-width: 960px;
  margin-bottom: 16px;
}

/* Yellow bullet line */
.contact-hero-points {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-yellow);
}

.contact-hero-points .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.contact-form-section {
  background: #ffffff;
  padding: 60px 0;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.terms {
  color: #163a6b;
  font-size: 10px;
  margin: 0px 0px 0px 0px;
}
/* LEFT */
.contact-form-left h2 {
  font-size: 48px;
  line-height: 1.1;
  color: #163a6b;
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-form-left h2 span {
  font-weight: 800;
}

.contact-intro {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Audience accordion */
.contact-audience {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-item {
  background: #f1f1f1;
  border-radius: 16px;
  padding: 18px 20px;
}

.audience-item.active {
  background: #f3fbfd;
}

.audience-item.active .audience-content {
  display: block;
}

.audience-item.active .audience-header {
  color: #163a6b;
}

.audience-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #163a6b;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.audience-item:not(.active) .audience-header {
  color: #b5b5b5;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #0bb0d3;
  border-bottom: 2px solid #0bb0d3;
  transition: transform 0.3s ease;
}

.audience-item.active .chevron {
  transform: rotate(-135deg);
}

.audience-content {
  margin-top: 12px;
  font-size: 14px;
  color: #2b2b2b;
  display: none;
  line-height: 1.5;
}

/* RIGHT FORM */
.contact-form-right form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field label {
  font-size: 14px;
  color: #163a6b;
  margin-bottom: 6px;
  display: block;
}

.form-field input,
.form-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfd8dc;
  padding: 10px 0;
  font-size: 15px;
  outline: none;
}

.form-field input::placeholder {
  color: #9aa7b1;
}

.form-field select {
  background: none;
}

/* Submit */
.contact-submit {
  margin-top: 20px;
  height: 56px;
  border-radius: 12px;
  background: #efefef;
  color: #b5b5b5;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: not-allowed;
}

.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfd8dc;
  padding: 10px 0;
  font-size: 15px;
  outline: none;
  resize: vertical;        /* allow user to expand */
  min-height: 96px;        /* default comfortable height */
  line-height: 1.5;
  font-family: inherit;
}

.form-field textarea::placeholder {
  color: #9aa7b1;
}

.contact-submit {
  margin-top: 20px;
  height: 56px;
  padding: 0 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--accent-yellow);

  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-submit:not(:disabled):hover {
  background: var(--accent-yellow);
  color: var(--primary-blue);
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #d12f2f;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-bottom: 2px solid #d12f2f;
}

.form-field.error .field-error {
  display: block;
}

@media (max-width: 768px) {

  /* HERO */
  .contact-hero-image {
    height: 420px;
  }

  .contact-hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .contact-hero-points {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }

  /* FORM LAYOUT */
  .contact-form-section {
    overflow-x: hidden;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
.contact-form-right {
    max-width: 520px;
    margin: 0 0;
  }
  .contact-form-right form {
    padding: 24px 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    gap: 20px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 15px;
  }
  .contact-form-left h2 {
  font-size: 48px;
  line-height: 1.1;
  color: #163a6b;
  margin-bottom: 24px;
  font-weight: 400;
}

}
@media (max-width: 480px) {

  /* HERO */
  .contact-hero-image {
    height: 340px;
  }

  .contact-hero-content h1 {
    font-size: 28px;
  }

  .contact-hero-points {
    flex-direction: column;
    gap: 8px;
  }

  /* AUDIENCE ACCORDION */
  .audience-item {
    padding: 16px;
  }

.contact-hero-points .dot {
  display: none;
  width: 8px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 50%;
}

  .contact-form-left h2 {
  font-size: 32px;
  padding: 0 0 0 20px;
  line-height: 1.1;
  color: #163a6b;
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-form-left p {
  font-size: 14px;
  padding: 0 0 0 20px;
  color: #163a6b;
 
  .audience-header {
    font-size: 15px;
  }

  .audience-content {
    font-size: 14px;
    line-height: 1.6;
  }

  /* FORM CARD */
  .contact-form-right {
    max-width: 92%;
    margin: 0 0;
  }


  .form-field {
    margin-bottom: 14px;
  }

  .form-field label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    height: 42px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px;
  }

  .form-field textarea {
    min-height: 96px;
    resize: none;
  }

  /* SUBMIT BUTTON */
  .contact-submit {
    height: 52px;
    font-size: 15px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    cursor: pointer;
  }

  .contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
}
