.lets-talk {
    position: relative;
    padding: 100px 40px;
    min-height: 650px;
}

.lets-talk-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.lets-talk-container {
    max-width: 1200px;
    margin-left: 40%;
    display: flex;
    justify-content: flex-end;
}

.lets-talk-form {
    width: 35vw;
}

/* ROW */
.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    flex: 1;
}

.input-group.full {
    width: 100%;
    margin-bottom: 16px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 40px 14px 14px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    background: #f1f1f1;
}

/* RIGHT ICON */
.input-group img,
.dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    pointer-events: none;
}

/* BUTTON */
.form-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.form-action button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
}

.form-action img {
    width: 24px;
}