@charset "UTF-8";

/* =========================================
   CONTACT
   ========================================= */

.contact {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at top left, rgba(31, 108, 139, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(242, 107, 94, 0.10), transparent 26%),
    var(--cream);
  overflow: hidden;
}

.contact:before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background-color: var(--alpine-lake-blue);
  border-radius: 50%;
  opacity: 0.08;
}

.contact:after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 300px;
  height: 300px;
  background-color: var(--sunrise-coral);
  border-radius: 50%;
  opacity: 0.08;
}

.contact .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   BANNER
   ========================================= */

.contact-banner {
  position: relative;
  margin-bottom: 54px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
}

.contact-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 37, 35, 0.28) 0%,
    rgba(16, 37, 35, 0.10) 35%,
    rgba(16, 37, 35, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.contact-banner img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

/* =========================================
   GRID
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

/* =========================================
   CONTENT
   ========================================= */

.contact-content {
  position: relative;
  max-width: 680px;
}

.contact-content:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -22px;
  width: 6px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f9a34f 0%, #ff6a6a 100%);
}

.contact .eyebrow {
  margin-bottom: 18px;
  color: var(--summit-teal);
}

.contact h2 {
  margin-bottom: 24px;
  color: var(--forest-shadow);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.contact-lead,
.contact-content > p {
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.8;
}

.contact-lead {
  margin-bottom: 18px;
}

.contact-content > p:last-of-type {
  margin-bottom: 30px;
}

/* =========================================
   CONTACT INFO
   ========================================= */

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 108, 139, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.11);
  border-color: rgba(31, 108, 139, 0.22);
}

.contact-info-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--summit-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-info-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--forest-shadow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--summit-teal);
}

/* =========================================
   FORM WRAP
   ========================================= */

.contact-form-wrap {
  position: relative;
}

.contact-form-wrap:before {
  content: "";
  position: absolute;
  top: 24px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(249, 163, 79, 0.16) 0%, rgba(255, 106, 106, 0.10) 100%);
  z-index: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 100%);
  border: 1px solid rgba(31, 108, 139, 0.12);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.12);
}

/* =========================================
   FORM ELEMENTS
   ========================================= */

.form-demo-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(58, 58, 58, 0.6);
  font-weight: 400;
}

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

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-shadow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31, 108, 139, 0.16);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(58, 58, 58, 0.62);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(31, 108, 139, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 108, 139, 0.10);
  background-color: #fffdfb;
}

.contact-form button.btn {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

/* =========================================
   FORM HELPER / ERROR / STATUS
   ========================================= */

.form-helper,
.form-error,
.form-status {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.form-helper {
  margin-top: 8px;
  color: rgba(58, 58, 58, 0.72);
}

.form-error {
  min-height: 18px;
  margin-top: 8px;
  color: #c64d43;
}

.form-status {
  min-height: 22px;
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--forest-shadow);
  font-weight: 600;
}

.contact-form .is-error {
  border-color: rgba(198, 77, 67, 0.75);
  box-shadow: 0 0 0 4px rgba(198, 77, 67, 0.10);
  background-color: #fff8f7;
}

.contact-form .is-valid {
  border-color: rgba(28, 122, 116, 0.45);
  box-shadow: 0 0 0 4px rgba(28, 122, 116, 0.08);
}

.contact-form button.is-loading {
  pointer-events: none;
  opacity: 0.88;
}

.contact-form.is-submitted {
  animation: contactFormPop 0.6s ease;
}

@keyframes contactFormPop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

/* =========================================
   1920
   ========================================= */

@media screen and (max-width: 1920px) {
  .contact {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .contact-banner {
    margin-bottom: 50px;
  }

  .contact-banner img {
    height: 170px;
  }

  .contact-grid {
    gap: 58px;
  }

  .contact-content {
    max-width: 660px;
  }

  .contact-content:before {
    top: 8px;
    left: -18px;
    width: 6px;
    height: 106px;
  }

  .contact .eyebrow {
    margin-bottom: 16px;
  }

  .contact h2 {
    margin-bottom: 22px;
    font-size: 48px;
    line-height: 1.06;
    letter-spacing: -1.1px;
  }

  .contact-lead,
  .contact-content > p {
    font-size: 17px;
    line-height: 1.78;
  }

  .contact-content > p:last-of-type {
    margin-bottom: 28px;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-info-card {
    padding: 17px 18px;
  }

  .contact-info-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  .contact-form-wrap:before {
    top: 22px;
    left: -18px;
  }

  .contact-form {
    padding: 32px;
  }

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

  .form-helper,
  .form-error,
  .form-status {
    font-size: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 15px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact:before {
    top: -110px;
    left: -110px;
    width: 290px;
    height: 290px;
  }

  .contact:after {
    bottom: -120px;
    right: -100px;
    width: 270px;
    height: 270px;
  }
}

/* =========================================
   1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact-banner {
    margin-bottom: 42px;
  }

  .contact-banner img {
    height: 155px;
  }

  .contact-grid {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 46px;
    align-items: start;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-content:before {
    top: 6px;
    left: -14px;
    width: 5px;
    height: 90px;
  }

  .contact .eyebrow {
    margin-bottom: 16px;
  }

  .contact h2 {
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.07;
    letter-spacing: -1px;
  }

  .contact-lead,
  .contact-content > p {
    font-size: 17px;
    line-height: 1.74;
  }

  .contact-content > p:last-of-type {
    margin-bottom: 26px;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .contact-info-card p {
    font-size: 14px;
    line-height: 1.56;
  }

  .contact-form-wrap:before {
    top: 18px;
    left: -14px;
  }

  .contact-form {
    padding: 28px;
  }

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

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 15px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact:before {
    top: -95px;
    left: -95px;
    width: 250px;
    height: 250px;
  }

  .contact:after {
    bottom: -105px;
    right: -95px;
    width: 230px;
    height: 230px;
  }
}

/* =========================================
   768
   ========================================= */

@media screen and (max-width: 768px) {
  .contact {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .contact-banner {
    margin-bottom: 34px;
  }

  .contact-banner img {
    height: 125px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-content:before {
    top: -16px;
    left: 0;
    width: 92px;
    height: 4px;
    border-radius: 999px;
  }

  .contact .eyebrow {
    margin-bottom: 16px;
  }

  .contact h2 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .contact-lead,
  .contact-content > p {
    font-size: 17px;
    line-height: 1.72;
  }

  .contact-content > p:last-of-type {
    margin-bottom: 22px;
  }

  .contact-info {
    gap: 10px;
  }

  .contact-info-card {
    padding: 14px 16px;
  }

  .contact-info-card p {
    font-size: 14px;
    line-height: 1.54;
  }

  .contact-form-wrap {
    padding-right: 16px;
    padding-bottom: 10px;
  }

  .contact-form-wrap:before {
    top: 12px;
    left: -8px;
    width: calc(100% - 16px);
    height: calc(100% - 10px);
  }

  .contact-form {
    padding: 24px;
  }

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

  .contact-form label {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 140px;
  }

  .form-helper,
  .form-error,
  .form-status {
    font-size: 12px;
    line-height: 1.4;
  }

  .contact-form button.btn {
    width: 100%;
  }

  .contact:before {
    top: -82px;
    left: -82px;
    width: 205px;
    height: 205px;
  }

  .contact:after {
    bottom: -88px;
    right: -78px;
    width: 185px;
    height: 185px;
  }
}

/* =========================================
   480
   ========================================= */

@media screen and (max-width: 480px) {
  .contact {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .contact-banner {
    margin-bottom: 28px;
  }

  .contact-banner img {
    height: 92px;
  }

  .contact-grid {
    gap: 36px;
  }

  .contact h2 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .contact-lead,
  .contact-content > p {
    font-size: 16px;
    line-height: 1.68;
  }

  .contact-content > p:last-of-type {
    margin-bottom: 20px;
  }

  .contact-info {
    gap: 10px;
  }

  .contact-info-card {
    padding: 15px 14px;
  }

  .contact-info-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-form-wrap {
    padding-right: 12px;
    padding-bottom: 8px;
  }

  .contact-form-wrap:before {
    top: 10px;
    left: -6px;
    width: calc(100% - 12px);
    height: calc(100% - 8px);
  }

  .contact-form {
    padding: 18px;
  }

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

  .contact-form label {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 11px 12px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 130px;
  }

  .contact:before {
    top: -62px;
    left: -62px;
    width: 150px;
    height: 150px;
  }

  .contact:after {
    bottom: -70px;
    right: -62px;
    width: 140px;
    height: 140px;
  }
}

/* =========================================
   300
   ========================================= */

@media screen and (max-width: 300px) {
  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-banner img {
    height: 74px;
  }

  .contact-content:before {
    top: -14px;
    width: 54px;
    height: 3px;
  }

  .contact h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.3px;
  }

  .contact-lead,
  .contact-content > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-content > p:last-of-type {
    margin-bottom: 18px;
  }

  .contact-info {
    gap: 8px;
  }

  .contact-info-card {
    padding: 12px;
  }

  .contact-info-label {
    font-size: 11px;
  }

  .contact-info-card p {
    font-size: 13px;
    line-height: 1.46;
  }

  .contact-form-wrap {
    padding-right: 8px;
    padding-bottom: 8px;
  }

  .contact-form-wrap:before {
    top: 8px;
    left: -4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

  .contact-form {
    padding: 14px;
  }

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

  .contact-form label {
    font-size: 11px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 11px;
    font-size: 13px;
  }

  .contact-form textarea {
    min-height: 110px;
  }

  .form-helper,
  .form-error,
  .form-status {
    font-size: 11px;
    line-height: 1.35;
  }

  .contact:before {
    top: -40px;
    left: -40px;
    width: 95px;
    height: 95px;
    opacity: 0.06;
  }

  .contact:after {
    bottom: -42px;
    right: -40px;
    width: 90px;
    height: 90px;
    opacity: 0.06;
  }
}