.flexible-content-section.contact-form-section {
  margin: 0 48px 48px 48px;
}
@media (max-width: 768px) {
  .flexible-content-section.contact-form-section {
    margin: 0 24px 24px 24px;
  }
}
@media (max-width: 480px) {
  .flexible-content-section.contact-form-section {
    margin: 0 20px 20px 20px;
  }
}

.contact-form-container {
  padding: 100px 90px 80px;
  background-color: var(--color-white);
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.2509803922);
  min-height: 854px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-form-container {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .contact-form-container {
    padding: 48px 0;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .contact-form-container {
    padding: 40px 0;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 100%;
}

.contact-heading {
  color: #191626;
  font-family: var(--champagne-font-stack);
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  font-variant-numeric: lining-nums tabular-nums;
}
.contact-heading p, .contact-heading span {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-variant-numeric: inherit;
}
.contact-heading .highlight {
  color: #F92D16;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: auto 0;
}

.contact-phone {
  display: block;
  color: var(--color-primary-dark-blue);
  font-family: "Gotham Pro", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact-phone:hover {
  opacity: 0.8;
}

.contact-email {
  display: block;
  color: var(--color-black);
  font-family: var(--champagne-font-stack);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact-email:hover {
  opacity: 0.7;
}

.contact-social {
  display: flex;
  gap: 20px;
  margin-top: auto;
}
.contact-social .social-link {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-dark-blue);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.contact-social .social-link:hover {
  transform: scale(1.1);
}
.contact-social .social-link img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.contact-form-wrapper .wpcf7 .form-field {
  margin-bottom: 20px;
}
.contact-form-wrapper .wpcf7 .form-field label {
  display: block;
  color: #747474;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: 160%;
  letter-spacing: 0%;
  margin-bottom: 6px;
}
.contact-form-wrapper .wpcf7 input[type=text],
.contact-form-wrapper .wpcf7 input[type=email],
.contact-form-wrapper .wpcf7 input[type=tel],
.contact-form-wrapper .wpcf7 textarea {
  width: 100%;
  padding: 0 0 2px 0;
  border: none;
  border-bottom: 1px solid #D1D1D1;
  background-color: transparent;
  color: var(--color-black);
  font-family: var(--champagne-font-stack);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.contact-form-wrapper .wpcf7 input[type=text]:focus,
.contact-form-wrapper .wpcf7 input[type=email]:focus,
.contact-form-wrapper .wpcf7 input[type=tel]:focus,
.contact-form-wrapper .wpcf7 textarea:focus {
  border-bottom-color: #F92D16;
}
.contact-form-wrapper .wpcf7 textarea {
  height: 90px;
  min-height: 90px;
  resize: vertical;
  padding-top: 8px;
  box-sizing: border-box;
}
.contact-form-wrapper .wpcf7 .form-submit-wrapper {
  margin: 0px;
}
.contact-form-wrapper .wpcf7 input[type=submit] {
  width: 100%;
  padding: 24px 48px;
  background-color: #FF6B00;
  border: none;
  border-radius: 50px;
  color: var(--color-white);
  font-family: var(--champagne-font-stack);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-form-wrapper .wpcf7 input[type=submit]:hover {
  background-color: #F97316;
  transform: translateY(-2px);
}
.contact-form-wrapper .wpcf7 input[type=submit]:active {
  transform: translateY(0);
}
.contact-form-wrapper .wpcf7 .form-acceptance {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-form-wrapper .wpcf7 .form-acceptance .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-form-wrapper .wpcf7 .form-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.contact-form-wrapper .wpcf7 .form-acceptance input[type=checkbox] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0 !important;
  accent-color: #29C419;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form-wrapper .wpcf7 .form-acceptance .wpcf7-list-item-label {
  color: #666666;
  font-family: var(--champagne-font-stack);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  cursor: pointer;
  margin: 0;
}
.contact-form-wrapper .wpcf7 .wpcf7-not-valid-tip {
  color: #F92D16;
  font-size: 14px;
  margin-top: 8px;
}
.contact-form-wrapper .wpcf7 .wpcf7-response-output {
  margin: 24px 0 0 0;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
}
.contact-form-wrapper .wpcf7 .wpcf7-mail-sent-ok {
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}
.contact-form-wrapper .wpcf7 .wpcf7-validation-errors {
  background-color: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

@media (max-width: 1440px) {
  .contact-form-container {
    padding: 60px 40px;
    gap: 80px;
  }
}
@media (min-width: 1260px) and (max-width: 1366px) {
  .contact-phone {
    font-size: 46px;
  }
  .contact-heading {
    font-size: 38px;
  }
  .contact-social .social-link {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-heading {
    font-size: clamp(40px, 5vw, 54px);
  }
  .contact-phone {
    font-size: clamp(40px, 5vw, 60px);
  }
  .contact-email {
    font-size: clamp(22px, 2.5vw, 28px);
  }
}
@media (max-width: 768px) {
  .contact-heading {
    font-size: clamp(32px, 6vw, 44px);
  }
  .contact-phone {
    font-size: clamp(32px, 6vw, 40px);
  }
  .contact-email {
    font-size: clamp(18px, 3vw, 22px);
  }
  .contact-social .social-link {
    width: 64px;
    height: 64px;
  }
  .contact-social .social-link img {
    width: 36px;
    height: 36px;
  }
  .contact-form-wrapper .wpcf7 .form-field {
    margin-bottom: 28px;
  }
  .contact-form-wrapper .wpcf7 .form-field label {
    font-size: 15px;
  }
  .contact-form-wrapper .wpcf7 input[type=text],
  .contact-form-wrapper .wpcf7 input[type=email],
  .contact-form-wrapper .wpcf7 input[type=tel],
  .contact-form-wrapper .wpcf7 textarea {
    font-size: 18px;
    padding: 0 0 14px 0;
  }
  .contact-form-wrapper .wpcf7 textarea {
    padding-top: 8px;
  }
  .contact-form-wrapper .wpcf7 input[type=submit] {
    font-size: 18px;
    padding: 20px 40px;
  }
}
@media (max-width: 480px) {
  .contact-info {
    gap: 32px;
  }
  .contact-heading {
    font-size: clamp(24px, 7vw, 32px);
  }
  .contact-phone {
    font-size: clamp(24px, 7vw, 32px);
  }
  .contact-email {
    font-size: clamp(16px, 4vw, 18px);
  }
  .contact-social {
    gap: 16px;
  }
  .contact-social .social-link {
    width: 56px;
    height: 56px;
  }
  .contact-social .social-link img {
    width: 32px;
    height: 32px;
  }
  .contact-form-wrapper .wpcf7 .form-field {
    margin-bottom: 24px;
  }
  .contact-form-wrapper .wpcf7 .form-field label {
    font-size: 14px;
  }
  .contact-form-wrapper .wpcf7 input[type=text],
  .contact-form-wrapper .wpcf7 input[type=email],
  .contact-form-wrapper .wpcf7 input[type=tel],
  .contact-form-wrapper .wpcf7 textarea {
    font-size: 16px;
    padding: 0 0 12px 0;
  }
  .contact-form-wrapper .wpcf7 textarea {
    padding-top: 8px;
  }
  .contact-form-wrapper .wpcf7 .form-submit-wrapper {
    margin: 40px 0 20px 0;
  }
  .contact-form-wrapper .wpcf7 input[type=submit] {
    font-size: 16px;
    padding: 18px 36px;
  }
  .contact-form-wrapper .wpcf7 .form-acceptance input[type=checkbox] {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .contact-form-wrapper .wpcf7 .form-acceptance .wpcf7-list-item-label {
    font-size: 14px;
  }
}
