/* Contact PAGE */

/* contact-title-area */

.contact-title-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  gap: 0;
  background: #acdcd2;
}

.contact-title-area-breadcrumbs {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
}

.contact-title-area-breadcrumbs .breadcrumbs-list {
  padding-left: 0;
}

.contact-title-area-content {
  display: flex;
  height: 500px;
  align-items: flex-end;
}

.contact-title-text {
  padding: 160px 0px 64px;
  background: #16342d;
  position: relative;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 70%;
}

.contact-title-area-content .blog-item-meta {
  color: #fff;
}

.contact-title-area-content .blog-item-tag {
  border-color: #fff;
}

.contact-title-text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: inherit;
}

.contact-title-text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  right: -100%;
  background: inherit;
}

.contact-title {
  font-size: 164px;
  font-weight: 500;
  line-height: 1;
  transform: translateX(-10px);
  max-width: 90%;
}

.contact-text {
  padding-top: 6px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.4;
  width: 80%;
}

@media (max-width: 1024px) {
  .contact-title-area-content {
    height: 370px;
  }

  .contact-title-text {
    padding: 100px 0px 32px;
  }

  .contact-title {
    font-size: 104px;
  }

  .contact-text {
    font-size: 18px;
    width: 60%;
  }
}

@media (max-width: 767px) {
  .contact-title-area-content {
    height: 250px;
  }

  .contact-title-text {
    padding: 33px 16px 43px;
    width: 90%;
  }

  .contact-title {
    font-size: 64px;
    transform: translateX(-5px);
  }

  .contact-text {
    font-size: 16px;
    width: 100%;
  }
}

/* CONTACT FORM */

.contact-form {
  background: #fff;
  padding: 74px 0 124px;
}

.contact-form-content {
  display: flex;
}

.contact-form-title-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

.contact-form-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  opacity: 0.4;
}

.contact-form-form {
  width: 50%;
}

.contact-form-filters {
  width: fit-content;
  max-width: 100%;
  padding: 6px;
  border-radius: 40px;
  background: #f0f0f0;
  display: flex;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.contact-form-filters-item {
  border-radius: 44px;
  background-color: #fff;
  color: #223e38;
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.2s ease-in-out;
}

.contact-form-filters-item.is-active,
.contact-form-filters-item:hover {
  background-color: #223e38;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact-form {
    padding: 64px 0 100px;
  }

  .contact-form-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  .contact-form-content {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form-title-area,
  .contact-form-form {
    width: 100%;
  }

  .contact-form-filters {
    gap: 4px;
    font-size: 12px;
  }

  .contact-form-filters-item {
    padding: 12px 20px;
  }
}

/* --- CONTACT FORM --- */

/* VCF7 form styles */

.vcf7 { max-width: 600px; margin-top: 40px; }

.vcf7-switch,
.vcf7-request { margin-bottom: 28px; }

.vcf7-request-title{
  margin: 0 0 12px;
  font-weight: 600;
}

.vcf7-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 26px 28px;
  margin-bottom: 28px;
}

.vcf7-field--full{ width: 100%; }
.vcf7-field--half{ width: calc(50% - 14px); }

.vcf7-label{
  display:block;
  margin: 0 0 10px;
  font-size: 16px;
  opacity: .75;
}

.vcf7-input,
.vcf7-textarea{
  width: 100%;
  border: 0;
  border-bottom: 2px solid #111;
  padding: 10px 0 12px;
  background: transparent;
  outline: none;
  font-size: 18px;
}

.vcf7-textarea{
  min-height: 110px;
  resize: vertical;
}

/* Pills */
.vcf7-pill .wpcf7-list-item{ margin: 0; }
.vcf7-pill .wpcf7-list-item-label{ display: inline-flex; }

.vcf7-pill{
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f1f1f1;
}

.vcf7-pill input{ position: absolute; opacity: 0; pointer-events: none; }

.vcf7-pill label{
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #0b0b0b;
  font-weight: 500;
  line-height: 1;
  transition: transform .12s ease, background .18s ease, color .18s ease;
  position: relative;
}

.vcf7-pill input:checked + span,
.vcf7-pill input:checked + .wpcf7-list-item-label,
.vcf7-pill input:checked + .wpcf7-list-item-label span{
  /* CF7 can wrap label text differently; we style via parent below too */
}

.vcf7-pill .wpcf7-list-item-label{
  background: #fff;
  color: #0b0b0b;
  padding: 6px 12px; 
  border-radius: 999px;
  transition: transform .12s ease, background .18s ease, color .18s ease;
  font-size: 14px;
}

.vcf7-pill .wpcf7-list-item input:checked ~ .wpcf7-list-item-label{
  background: #16342d;
  color: #fff;
}

/* Submit */
.vcf7-actions{ margin-top: 28px; }

.vcf7-submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border: 1px solid #0b0b0b;
  background: #16342d;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}

/* Honeypot: hide visually, keep in DOM */
.vcf7-hp{
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
    .vcf7 {
        max-width: 100%;
    }
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 0;
}

/* contact-info */

.contact-info {
}

.contact-info-content {
  display: flex;
  gap: 10px;
}

.contact-info-wide {
  width: calc(60% - 5px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.contact-info-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  opacity: 0.4;
}

.contact-info-tall {
  width: calc(40% - 5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-wide {
  padding: 20px 18px;
  background: #acdcd2;
}

.contact-info-item {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 185px;
}

.contact-info-list {
  color: #000;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
  display: flex;
  gap: 6px;
  row-gap: 10px;
  flex-wrap: wrap;
  list-style: none;
}

.contact-info-list li {
  width: calc(50% - 3px);
}

.contact-info-list a {
  color: #000;
  text-decoration: none;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-info-item.purple {
  background: #c9b6f4;
}

.contact-info-item.yellow {
  background: #fff3a5;
  justify-content: space-between;
}

.contact-info-socials {
  display: flex;
  gap: 10px;
}

.contact-info-socials img {
  filter: invert(1);
  opacity: 0.5;
}

.contact-info-socials img:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .contact-info-content {
    flex-direction: column;
  }

  .contact-info-wide {
    width: 100%;
    height: 400px;
  }

  .contact-info-tall {
    width: 100%;
    flex-direction: row;
  }

  .contact-info-item {
    width: calc(50% - 5px);
    height: auto;
  }

  .contact-info-list {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .contact-info-wide {
    height: 250px;
  }

  .contact-info-tall {
    flex-direction: column;
  }

  .contact-info-item {
    width: 100%;
    min-height: 250px;
  }

  .contact-info-title {
    font-size: 28px;
  }
}

  /* CTA */

.cta {
  height: 100vh;
  background: #6c2f16;
  position: relative;
}

.inner-cta {
  padding: 92px 0;
}

.inner-cta .cta-content {
  width: 100%;
  background: red;
  position: relative;
  overflow: hidden;
  max-height: 640px;
}

.cta-bg {
  background: #6c2f16;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-content {
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}

.cta-slogan {
  color: #fff;
  font-size: 76px;
  line-height: 1;
  max-width: 1000px;
  text-align: center;
  font-weight: 600;
  z-index: 3;
}

.cta-btn {
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.1) inset;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  z-index: 3;
}

@media (max-width: 1024px) {
  .cta {
    height: 50vh;
  }

  .cta-slogan {
    font-size: 64px;
  }

  .inner-cta {
    padding: 64px 0;
  }
  
  .cta-content {
      max-height: 50vh;
  }
}

@media (max-width: 820px) {
  .cta-slogan {
    font-size: 54px;
  }

  .inner-cta .cta-content {
    max-height: 480px;
  }
}

@media (max-width: 767px) {
  .cta-slogan {
    font-size: 44px;
  }

  .cta-btn {
    font-size: 12px;
    padding: 20px;
  }

  .inner-cta {
    padding: 44px 0;
  }

  .inner-cta .cta-content {
    max-height: 300px;
  }
  
  .cta-content {
      max-height: 50vh;
  }

  .inner-cta .cta-slogan {
    font-size: 32px;
    max-width: 90%;
  }
}

/* --- CTA --- */
