﻿/* contact page */
.contact-breadcrumb {
  background: #f4f4f4;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.contact-breadcrumb p {
  margin: 0;
  padding: 14px 0;
  font-size: 13px;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-breadcrumb span {
  color: #a4a4a4;
}

.contact-hero {
  background: #efefef;
}

.contact-hero-wrap {
  min-height: 380px;
  display: block;
  overflow: hidden;
  background: #efefef url('../images/contact-banner-bg.png') right center / cover no-repeat;
}

.contact-hero-copy {
  background: transparent;
  width: 64%;
  min-height: 354px;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  padding: 52px 72px 42px 42px;
}

.contact-hero-copy .kicker {
  margin: 0 0 8px;
  color: #6f8227;
  font-size: 16px;
  font-weight: 700;
}

.contact-hero-copy h1 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.contact-hero-copy h1 span {
  color: #6f8227;
}

.contact-hero-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #4e4e4e;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .contact-hero-copy {
    width: 66%;
    padding-right: 56px;
  }

  .contact-hero-copy h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .contact-hero-copy {
    width: 100%;
    min-height: auto;
    clip-path: none;
    padding: 22px 16px;
  }

  .contact-hero-copy .kicker {
    font-size: 15px;
  }

  .contact-hero-copy h1 {
    font-size: 30px;
    white-space: normal;
    line-height: 1.2;
  }

  .contact-hero-copy p {
    font-size: 14px;
    line-height: 1.75;
  }
}

.contact-info-strip {
  background: #f4f4f4;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 138px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 30px 20px;
  position: relative;
}

.contact-info-item > div {
  min-width: 0;
}

.contact-info-item + .contact-info-item {
  border-left: none;
}

.contact-info-item + .contact-info-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 78px;
  transform: translateY(-50%);
  background: #d9d9d9;
}

.contact-info-item i {
  font-size: 44px;
  color: #6f8227;
}

.contact-info-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #4f5e1f;
}

.contact-info-item p {
  margin: 0 0 3px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #2f2f2f;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-item p a {
  color: inherit;
  text-decoration: none;
}

.contact-info-item small {
  color: #7c7c7c;
  font-size: 16px;
  line-height: 1.45;
}

.contact-main {
  background: #f4f4f4;
  padding: 18px 0 20px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 16px;
}

.contact-form-card,
.contact-side-cards {
  background: #f6f6f6;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.contact-form-card {
  padding: 18px;
}

.contact-form-card h3 {
  margin: 0;
  font-size: 18px;
  color: #2d2d2d;
}

.contact-form-card h2 {
  margin: 8px 0 16px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form-alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.contact-form-alert.success {
  background: #eef6e6;
  border: 1px solid #cfe0b8;
  color: #4f5e1f;
}

.contact-form-alert.error {
  background: #fff0ef;
  border: 1px solid #f0c5bf;
  color: #b24f42;
}

.contact-form-alert[hidden] {
  display: none;
}

.contact-form-card label {
  display: block;
  color: #3c3c3c;
  font-size: 14px;
  font-weight: 700;
}

.contact-form-card label span {
  color: #e95f4d;
}

.form-row {
  margin-bottom: 10px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  margin-top: 5px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #2f2f2f;
  background: #f9f9f9;
  font-family: inherit;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card .agree {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #646464;
  font-weight: 500;
}

.contact-form-card .agree input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.contact-form-card .agree a {
  color: #4f5e1f;
  font-weight: 700;
}

.contact-form-card .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 13px 20px;
}

.contact-form-card .btn.is-loading {
  opacity: 0.8;
  cursor: progress;
}

.contact-side-cards {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.contact-side-cards .map {
  width: 100%;
  aspect-ratio: 486 / 360;
  min-height: 360px;
  border-radius: 8px;
  background: url('../images/contact-map-bg.png') center / cover no-repeat;
  overflow: hidden;
}

.contact-side-cards .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.side-card {
  background: #f3f3f3;
  border-radius: 8px;
  overflow: hidden;
  min-height: 214px;
  display: flex;
  align-items: stretch;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.side-card-copy {
  width: 66%;
  padding: 18px 18px 14px;
  background: rgba(243, 243, 243, 0.9);
}

.side-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.6;
}

.side-card p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #646464;
}

.side-card .btn {
  font-size: 15px;
  padding: 9px 14px;
  border: 1px solid #798a3a;
}

.side-card-visit {
  background-image: url('../images/contact-visit-bg.png');
}

.side-card-business {
  background-image: url('../images/contact-business-bg.png');
}

.clients-contact .clients-wrap {
  min-height: 104px;
  padding-top: 12px;
}

.contact-cta {
  background: #243723;
}

.contact-cta-wrap {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px 0 64px;
}

.contact-cta-wrap > div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta p {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-cta h3 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
}

.contact-cta span {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.5;
}


