.services-bottom-form {
    padding: 72px 0 88px;
    border-top: 2px solid #000000;
}

.services-bottom-form__inner {
    max-width: 640px;
    margin: 0 auto;
}

.services-bottom-form__heading {
    margin-bottom: 43px;
    color: #232323;
    font-family: Raleway, Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -0.04em;
    text-align: center;
}

.services-bottom-form__phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    margin-bottom: 60px;
}

.services-bottom-form__phone {
    color: #be264c;
    font-family: Raleway, Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -0.04em;
    text-decoration: none;
    text-align: center;
}

.services-bottom-form__phone:hover,
.services-bottom-form__phone:focus {
    color: #be264c;
    text-decoration: none;
    opacity: 0.9;
}

.services-bottom-form form {
    margin: 0;
}

.services-bottom-form__title {
    margin-bottom: 40px;
    color: #232323;
    font-family: Raleway, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
}

.services-bottom-form__errors,
.services-bottom-form__success {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid #e0d2d7;
    background: #fff;
    color: #232323;
    font-family: Raleway, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.services-bottom-form__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-bottom-form__field {
    width: 100%;
}

.services-bottom-form__field input[type="text"],
.services-bottom-form__field input[type="email"],
.services-bottom-form__field input[type="file"],
.services-bottom-form__field textarea,
.services-bottom-form__field select {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: none;
    color: #000;
    font-family: Gilroy, Raleway, Arial, sans-serif;
    font-size: 16px;
    font-weight: 250;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
}

.services-bottom-form__field input[type="text"],
.services-bottom-form__field input[type="email"],
.services-bottom-form__field input[type="file"],
.services-bottom-form__field select {
    min-height: 58px;
    padding: 20px 25px;
    height: auto;
}

.services-bottom-form__field input[type="text"] {
    margin-bottom: 0;
}

.services-bottom-form__field textarea {
    min-height: 96px;
    padding: 20px 25px;
    resize: vertical;
}

.services-bottom-form__field input::placeholder,
.services-bottom-form__field textarea::placeholder {
    color: #000;
}

.services-bottom-form__field-caption {
    margin-bottom: 8px;
    color: #979797;
    font-family: Gilroy, Raleway, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.services-bottom-form__field-control {
    border: 1px solid #ddd;
    background: #fff;
    padding: 20px 25px;
}

.services-bottom-form__field-control label {
    margin-right: 28px;
    margin-bottom: 4px;
    color: #666;
    font-family: Gilroy, Raleway, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.services-bottom-form__field-control input[type="radio"],
.services-bottom-form__field-control input[type="checkbox"] {
    margin-right: 6px;
}

.services-bottom-form__radio-title {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 20px 25px;
    border: 1px solid #ddd;
    background: #fff;
    color: #979797;
    font-family: Gilroy, Raleway, Arial, sans-serif;
    font-size: 16px;
    font-weight: 250;
    line-height: 100%;
}

.services-bottom-form__radio-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 56px;
    padding: 24px 0 0;
}

.services-bottom-form__radio-option {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
}

.services-bottom-form__radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.services-bottom-form__radio-mark {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1px solid #6f6f6f;
    border-radius: 50%;
    background: #fff;
}

.services-bottom-form__radio-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #be264c;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.services-bottom-form__radio-option input[type="radio"]:checked + .services-bottom-form__radio-mark::after {
    transform: translate(-50%, -50%) scale(1);
}

.services-bottom-form__radio-text {
    color: #232323;
    font-family: Gilroy, Raleway, Arial, sans-serif;
    font-size: 16px;
    font-weight: 250;
    line-height: 100%;
}

.services-bottom-form__file-label {
    display: block;
    margin-bottom: 8px;
    color: #979797;
    font-family: Raleway, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.services-bottom-form__field-error {
    margin-top: 6px;
    color: #be264c;
    font-family: Raleway, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.services-bottom-form__agreement {
    margin-top: 12px;
}

.services-bottom-form__agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.services-bottom-form__agreement-input {
    margin: 2px 0 0;
}

.services-bottom-form__agreement-text {
    color: #7b7b7b;
    font-family: Raleway, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
}

.services-bottom-form__agreement-text a {
    color: inherit;
    text-decoration: underline;
}

.services-bottom-form__submit {
    width: 100%;
    margin-top: 18px;
    padding: 17px 22px;
    border: 0;
    background: #be264c;
    color: #fff;
    font-family: Raleway, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.services-bottom-form__submit:hover,
.services-bottom-form__submit:focus {
    opacity: 0.92;
}

.services-bottom-form .iti {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .services-bottom-form {
        padding: 48px 0 60px;
    }

    .services-bottom-form__heading {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .services-bottom-form__phone {
        font-size: 32px;
    }

    .services-bottom-form__title {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .services-bottom-form__phones {
        gap: 18px;
        margin-bottom: 36px;
    }

    .services-bottom-form__radio-options {
        gap: 18px 24px;
    }
}
