
.call-me {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.call-me::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 135, 6, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.call-me::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 135, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.call-me__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.call-me__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.call-me__info {
    flex: 1;
    max-width: 500px;
}

.call-me__title {
    margin-bottom: 20px !important;
}

.call-me__subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.call-me__features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.call-me__feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.call-me__feature svg {
    flex-shrink: 0;
}

.call-me__form {
    flex: 1;
    max-width: 550px;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 135, 6, 0.1);
}

.form__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.form__field {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form__field:focus-within {
    border-color: #FD8706;
    background: white;
    box-shadow: 0 0 0 4px rgba(253, 135, 6, 0.1);
}

.form__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.form__input {
    flex: 1;
    border: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
    outline: none !important;
    padding: 0;
}

.form__input:focus {
    outline: none !important;
}

.form__input::placeholder {
    color: #999;
}

.form__submit-btn {
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 12px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.form__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 135, 6, 0.3);
}

.form__submit-btn svg {
    transition: transform 0.3s ease;
}

.form__submit-btn:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 1279px) {
    .call-me {
        padding: 80px 0;
    }

    .call-me__content {
        gap: 50px;
    }

    .call-me__subtitle {
        font-size: 16px;
    }

    .call-me__feature {
        font-size: 14px;
    }

    .call-me__form {
        padding: 40px;
    }

    .form__input {
        font-size: 15px;
    }

    .form__submit-btn {
        font-size: 16px;
        padding: 16px 35px;
    }
}

@media screen and (max-width: 967px) {
    .call-me {
        padding: 60px 0;
    }

    .call-me__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .call-me__info {
        max-width: 100%;
        text-align: center;
    }

    .call-me__features {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .call-me__form {
        width: 100%;
        max-width: 100%;
        padding: 35px;
    }

    .form__field {
        padding: 15px 18px;
    }

    .form__input {
        font-size: 14px;
    }

    .form__submit-btn {
        font-size: 15px;
        padding: 15px 30px;
    }
}

@media screen and (max-width: 655px) {
    .call-me {
        padding: 50px 0;
    }

    .call-me::before,
    .call-me::after {
        display: none;
    }

    .call-me__subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .call-me__feature {
        font-size: 13px;
    }

    .call-me__feature svg {
        width: 20px;
        height: 20px;
    }

    .call-me__form {
        padding: 25px;
    }

    .form__container {
        gap: 20px;
    }

    .form__field {
        padding: 12px 15px;
    }

    .form__label svg {
        width: 18px;
        height: 18px;
    }

    .form__input {
        font-size: 13px;
    }

    .form__submit-btn {
        font-size: 14px;
        padding: 14px 25px;
    }

    .form__submit-btn svg {
        width: 16px;
        height: 16px;
    }
}