.section--contact--main {
  background: #fff;
}

.section--contact--main .section__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.section--contact--main .section__body {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #f7f8fc;
  box-shadow: 0 24px 70px rgba(65, 71, 86, 0.12);
}

.section--contact--main .section__body::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 216, 51, 0.16);
  pointer-events: none;
}

.section--contact--main .section__contact-form {
  position: relative;
  z-index: 1;
  padding: 40px 25px;
}

.section--contact--main .section__form-header {
  max-width: 620px;
  margin: 0 auto 32px;
  text-align: center;
}

.section--contact--main .section__form-title {
  margin: 0 0 8px;
  color: #414756;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.section--contact--main .section__form-subtitle {
  margin: 0;
  color: #76777a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.section--contact--main .form__row {
  margin-bottom: 18px;
}

.section--contact--main .form__row--submit {
  display: flex;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 0;
}

.section--contact--main .form__group {
  flex: 1;
  margin-bottom: 18px;
}

.section--contact--main .form__group:last-child {
  margin-bottom: 0;
}

.section--contact--main .form__group label {
  display: block;
  margin-bottom: 7px;
  color: #414756;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.section--contact--main input,
.section--contact--main textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  background: #fff;
  padding: 13px 15px;
  color: #414756;
  font-family: "IsidoraSans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section--contact--main input:focus,
.section--contact--main textarea:focus {
  outline: none;
  border-color: #ff2139;
  box-shadow: 0 0 0 3px rgba(255, 33, 57, 0.1);
}

.section--contact--main input::placeholder,
.section--contact--main textarea::placeholder {
  color: #a8abb5;
  font-weight: 400;
}

.section--contact--main textarea {
  min-height: 112px;
  resize: vertical;
}

.section--contact--main .btn--contact-main,
.btn--contact-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff2139, #ab082c);
  box-shadow: 0 10px 24px rgba(171, 8, 44, 0.2);
  padding: 14px 26px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.section--contact--main .btn--contact-main:hover,
.btn--contact-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(171, 8, 44, 0.28);
}

.section--contact--main .btn--contact-main:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.section--contact--main .btn--contact-main.is-loading .fa {
  animation: sixbell-contact-pulse 0.8s ease-in-out infinite alternate;
}

.sixbell-contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.sixbell-contact-status {
  display: none;
  margin: 0 0 18px;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.sixbell-contact-status.is-error {
  display: block;
  border: 1px solid rgba(171, 8, 44, 0.18);
  background: rgba(255, 33, 57, 0.07);
  color: #ab082c;
}

.sixbell-contact-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease, opacity 0.25s ease;
}

.sixbell-contact-popup.is-open {
  visibility: visible;
  opacity: 1;
}

.sixbell-contact-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 31, 0.65);
  backdrop-filter: blur(4px);
}

.sixbell-contact-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(20, 23, 31, 0.3);
  padding: 42px 35px 35px;
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.sixbell-contact-popup.is-open .sixbell-contact-popup__dialog {
  transform: translateY(0) scale(1);
}

.sixbell-contact-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #76777a;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.sixbell-contact-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2139, #ab082c);
  box-shadow: 0 12px 28px rgba(171, 8, 44, 0.22);
  color: #fff;
  font-size: 25px;
}

.sixbell-contact-popup__dialog h3 {
  margin: 0 0 10px;
  color: #414756;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.sixbell-contact-popup__dialog p {
  margin: 0 0 24px;
  color: #76777a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

body.sixbell-popup-open {
  overflow: hidden;
}

@keyframes sixbell-contact-pulse {
  from { transform: translateX(0); }
  to { transform: translateX(4px); }
}

@media (min-width: 720px) {
  .section--contact--main .section__wrap {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .section--contact--main .section__contact-form {
    padding: 55px 60px;
  }

  .section--contact--main .section__form-title {
    font-size: 30px;
  }

  .section--contact--main .form__row {
    display: flex;
    gap: 18px;
  }

  .section--contact--main .form__group {
    margin-bottom: 0;
  }

  .section--contact--main .btn--contact-main {
    width: auto;
  }
}

@media (min-width: 960px) {
  .section--contact--main .section__contact-form {
    padding: 65px 80px;
  }
}
